:root {
  /* Brand blue — accessible, deeper tone used for interactive elements on light backgrounds */
  --blue: #2f7ab8;
  --blue-strong: #235f8f;
  /* Original brand blue, preserved for decorative accents, glows, and use on dark sections */
  --blue-soft: #71b2e1;
  --blue-pale: #eaf3fb;

  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --panel: #ffffff;
  --panel-2: #f6f9fb;
  --panel-3: #eef2f6;
  --line: #e2e8ee;
  --line-soft: #edf1f5;
  --glass: #ffffff;
  --glass-strong: #ffffff;
  --glass-border: #e2e8ee;
  --text: #16202b;
  --muted: #57646f;
  --muted-2: #7c8794;
  --shadow: 0 1px 2px rgba(16, 24, 32, 0.04), 0 12px 28px rgba(16, 24, 32, 0.06);

  /* Dark sections — used sparingly for strong-contrast CTAs, header/footer chrome */
  --dark: #0f151b;
  --dark-panel: #182029;
  --dark-line: #2a333d;
  --dark-text: #f2f6f9;
  --dark-muted: #a7b3bd;
}

* {
  box-sizing: border-box;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 122, 184, 0.05), transparent 32%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
}

.brand-name {
  color: var(--blue);
  font-weight: 900;
}

.brand {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--blue);
}

.brand-logo-full {
  display: block;
  width: 132px;
  height: 34px;
  object-fit: cover;
  object-position: center;
}

.brand-mark,
.mini-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
}

.mini-brand {
  margin-bottom: 24px;
}

.nav-links {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
}

.mobile-menu {
  display: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.mobile-nav-links a:hover,
.mobile-nav-links a[aria-current="page"] {
  color: var(--blue);
}

.nav-soon {
  margin-left: 4px;
  padding: 3px 7px;
  border: 1px solid rgba(113, 178, 225, 0.32);
  border-radius: 999px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(47, 122, 184, 0.28);
}

.header-cta {
  grid-column: 3;
  justify-self: end;
}

.secondary-button {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
}

.header-cta:hover,
.primary-button:hover {
  background: var(--blue-strong);
  box-shadow: 0 12px 28px rgba(47, 122, 184, 0.36);
  transform: translateY(-1px);
}

.secondary-button:hover {
  color: var(--blue);
  background: var(--blue-pale);
  border-color: rgba(47, 122, 184, 0.35);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  text-align: left;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.92) 0%, rgba(15, 15, 15, 0.7) 42%, rgba(15, 15, 15, 0.5) 100%),
    rgba(15, 15, 15, 0.36);
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: var(--text);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.features-hero p,
.section-heading p,
.workflow-copy p,
.step p,
.tile-card p,
.detail-card p {
  color: var(--text);
  line-height: 1.65;
}

.hero-text {
  max-width: 760px;
  font-size: 20px;
}

.hero-brand {
  color: var(--blue);
  font-weight: 900;
}

.product-suite,
.recruit-section,
.product-intro {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.product-suite {
  border-top: 1px solid var(--glass-border);
  background: #0b0d0f;
}

.suite-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.suite-heading h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: clamp(26px, 4vw, 46px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(113, 178, 225, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(113, 178, 225, 0.035), 0 0 0 88px rgba(113, 178, 225, 0.02);
  pointer-events: none;
}

.product-card-recruit::after {
  border-radius: 32%;
  transform: rotate(28deg);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 178, 225, 0.58);
  background: rgba(113, 178, 225, 0.07);
}

.product-card-topline,
.recruit-label,
.recruit-window-bar,
.pipeline-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-number {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-status,
.preview-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-status.is-live {
  color: var(--blue);
  border-color: rgba(113, 178, 225, 0.42);
  background: rgba(113, 178, 225, 0.08);
}

.product-card-recruit .product-status {
  color: var(--blue);
  border-color: rgba(113, 178, 225, 0.42);
  background: rgba(113, 178, 225, 0.08);
}

.product-name {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.product-name span {
  color: var(--blue);
  font-weight: 950;
}

.product-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -0.04em;
}

.product-card p:not(.product-name) {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-cta {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  min-width: 150px;
}

.recruit-cta {
  margin-top: 30px;
}

.recruit-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  border-top: 1px solid var(--glass-border);
  background:
    radial-gradient(circle at 78% 40%, rgba(113, 178, 225, 0.08), transparent 32%),
    #0f0f0f;
}

.recruit-label {
  justify-content: flex-start;
  margin-bottom: 34px;
}

.recruit-label span:first-child {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.recruit-label span:last-child {
  padding: 5px 9px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruit-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.045em;
}

.recruit-lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.recruit-benefits {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.recruit-benefits li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--glass-border);
}

.recruit-benefits li > span {
  padding-top: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.recruit-benefits strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.recruit-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.recruit-preview {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: #101214;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.recruit-window-bar {
  padding: 18px 24px;
  color: var(--text);
  border-bottom: 1px solid var(--glass-border);
  background: #181a1c;
}

.recruit-wordmark {
  color: var(--blue);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.recruit-wordmark strong {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--glass-border);
  color: var(--text);
}

.preview-pill {
  min-height: 26px;
  color: var(--blue);
  border-color: rgba(113, 178, 225, 0.42);
  background: rgba(113, 178, 225, 0.08);
}

.preview-pill i,
.tracking-note i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #35d577;
  box-shadow: 0 0 12px rgba(53, 213, 119, 0.75);
}

.recruit-window-body {
  padding: 22px;
  color: var(--text);
  background: #0e1012;
}

.contact-flow {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  max-width: 440px;
  margin: 0 auto 20px;
}

.contact-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.intoola-mark {
  color: var(--blue);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.flow-line {
  position: relative;
  display: grid;
  align-items: center;
  height: 42px;
  margin: 0 12px;
}

.flow-line::before {
  content: "";
  height: 1px;
  background: var(--blue);
}

.flow-line i {
  position: absolute;
  right: -2px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}

.flow-line small {
  position: absolute;
  right: 0;
  left: 0;
  top: 25px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.recruit-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, 0.88fr);
  gap: 12px;
}

.connection-panel,
.tracking-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 13px;
  background: #17191b;
}

.recruit-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.recruit-panel-heading div {
  display: grid;
  gap: 3px;
}

.recruit-panel-heading span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruit-panel-heading strong {
  font-size: 15px;
}

.recruit-panel-heading em {
  padding: 4px 7px;
  border-radius: 999px;
  color: #35d577;
  background: rgba(53, 213, 119, 0.11);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.company-source,
.person-row,
.tracked-company {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.company-source {
  padding: 10px;
  border: 1px solid rgba(113, 178, 225, 0.34);
  border-radius: 10px;
  background: #1a2025;
}

.company-source > b,
.tracked-company > b,
.person-row > b {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #253746;
  font-size: 11px;
}

.company-source > b {
  width: 34px;
  height: 34px;
  color: #111;
  background: #fff;
  font-size: 15px;
}

.company-source span,
.person-row span,
.tracked-company span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.company-source strong,
.person-row strong,
.tracked-company strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-source small,
.person-row small,
.tracked-company small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-source > i {
  color: #35d577;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.people-list {
  margin-top: 8px;
  border-top: 1px solid var(--glass-border);
}

.person-row {
  padding: 9px 3px;
  border-bottom: 1px solid var(--glass-border);
}

.person-row > b {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 8px;
}

.person-row > em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.save-tracking {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #0d1820;
  background: var(--blue);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
}

.save-tracking span {
  margin-left: 4px;
}

.tracking-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 8px;
}

.tracking-stats div {
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: #121518;
  text-align: center;
}

.tracking-stats strong {
  color: var(--blue);
  font-size: 18px;
}

.tracking-stats small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tracked-company {
  margin-top: 7px;
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  background: #1b1d1f;
}

.tracked-company > b {
  width: 29px;
  height: 29px;
}

.tracked-company > em {
  color: #35d577;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.tracking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 9px;
  border: 1px dashed rgba(113, 178, 225, 0.28);
  border-radius: 8px;
  color: var(--muted);
  font-size: 8px;
}

.ai-feedback-card {
  margin-top: 9px;
  padding: 10px;
  border: 1px solid rgba(113, 178, 225, 0.3);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(113, 178, 225, 0.11), #15191d);
}

.ai-feedback-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.ai-feedback-heading span {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ai-feedback-heading em {
  padding: 3px 6px;
  border-radius: 999px;
  color: #35d577;
  background: rgba(53, 213, 119, 0.11);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.ai-feedback-card > strong {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
}

.ai-feedback-card p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.ai-feedback-card p i {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--blue);
}

.product-intro {
  display: grid;
  justify-items: center;
  border-top: 1px solid var(--glass-border);
  background:
    radial-gradient(circle at 50% 35%, rgba(113, 178, 225, 0.1), transparent 35%),
    var(--bg-alt);
  text-align: center;
}

.product-intro .eyebrow {
  margin-bottom: 22px;
}

.product-intro .product-name {
  margin-bottom: 14px;
}

.product-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 90px);
}

.product-intro > p:last-of-type {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

.recruit-intro {
  border-bottom: 1px solid var(--glass-border);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-canvas-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-canvas-shell::before {
  content: none;
}

#extensionCanvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-console,
.animation-card,
.tile-card,
.detail-card,
.step {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-console {
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.console-top strong {
  color: var(--text);
  margin-left: 10px;
}

.console-body {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 470px;
}

.console-sidebar {
  padding: 22px;
  background: rgba(0, 0, 0, 0.22);
  border-right: 1px solid var(--glass-border);
}

.side-item {
  margin-bottom: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
}

.side-item.active {
  color: var(--blue);
  background: rgba(113, 178, 225, 0.11);
  border-color: rgba(113, 178, 225, 0.42);
}

.console-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 48px);
}

.console-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.console-main h2 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(26px, 4vw, 40px);
}

.question-card {
  display: grid;
  gap: 10px;
}

.question-card p {
  margin-bottom: 8px;
  color: var(--text);
}

.answer-row {
  padding: 15px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  color: var(--muted);
  font-weight: 800;
}

.answer-row.selected {
  color: var(--blue);
  border-color: rgba(113, 178, 225, 0.48);
  background: rgba(113, 178, 225, 0.11);
}

.animation-section,
.workflow-section,
.tile-section,
.detail-section,
.pricing-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 980px;
}

.animation-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
}

.split-animations {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-animation {
  grid-template-columns: minmax(0, 1fr);
}

.animation-card {
  overflow: hidden;
  min-height: 420px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.animation-card.bare {
  min-height: 560px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.animation-card.bare iframe {
  height: 560px;
  background: transparent;
}

.animation-card.large {
  grid-row: span 2;
  min-height: 700px;
}

.animation-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}

.animation-meta span,
.tile-number,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(113, 178, 225, 0.11);
  border: 1px solid rgba(113, 178, 225, 0.32);
  font-size: 13px;
  font-weight: 900;
}

.animation-meta h3 {
  margin-bottom: 0;
}

iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: transparent;
}

.animation-card:not(.large):not(.bare) iframe {
  height: 360px;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.workflow-copy {
  max-width: 560px;
}

.workflow-content {
  display: grid;
  gap: 28px;
}

.workflow-animation {
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.workflow-animation iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--glass);
  box-shadow: none;
}

.step span {
  grid-row: span 2;
}

.step h3,
.step p {
  margin-bottom: 0;
}

.features-hero {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px) 20px;
  text-align: left;
}

.features-hero h1 {
  margin: 0;
}

.features-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.6;
}

.coming-soon-page {
  min-height: calc(100vh - 236px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 92px);
  overflow: hidden;
}

.about-hero-copy {
  max-width: 720px;
}

.about-hero-copy h1 {
  max-width: 760px;
}

.about-title-break {
  display: inline;
}

.about-hero-copy p {
  max-width: 640px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.58;
}

.founder-portrait-stack {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  width: min(100%, 320px);
  justify-self: center;
}

.founder-portrait-stack::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border: 1px solid rgba(113, 178, 225, 0.18);
  border-radius: 24px;
  background: rgba(113, 178, 225, 0.045);
}

.founder-portrait-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.founder-portrait-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.founder-portrait-card > div {
  padding: 20px;
  padding-right: 112px;
  min-height: 196px;
}

.founder-portrait-card h2 {
  margin-bottom: 8px;
}

.founder-portrait-card h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
}

.founder-title {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.founder-portrait-card a {
  color: var(--blue);
  font-weight: 800;
}

.founder-links {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.founder-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(113, 178, 225, 0.32);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(113, 178, 225, 0.08);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.founder-icon-link:hover {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.founder-icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.about-story-section {
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
}

.about-story {
  max-width: 980px;
}

.about-story p {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.about-story p:last-of-type {
  margin-bottom: 0;
}

.about-signature {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  color: var(--blue);
  font-size: 18px;
  font-weight: 850;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-showcase {
  display: grid;
  gap: 20px;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(64px, 8vw, 112px);
}

.feature-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: featureRise 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-row::before,
.feature-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.feature-row::before {
  background: none;
}

.feature-row::after {
  background: none;
  animation: none;
}

.feature-row:nth-child(2) { animation-delay: 0.06s; }
.feature-row:nth-child(3) { animation-delay: 0.12s; }
.feature-row:nth-child(4) { animation-delay: 0.18s; }
.feature-row:nth-child(5) { animation-delay: 0.24s; }
.feature-row:nth-child(6) { animation-delay: 0.3s; }

.feature-row:nth-child(even) .feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-row:nth-child(even) .feature-animation {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid var(--glass-border);
  border-left: 0;
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(520px, 1.28fr) minmax(280px, 0.72fr);
}

@keyframes featureRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-row:hover {
  border-color: rgba(113, 178, 225, 0.48);
  box-shadow: none;
}

.feature-copy,
.feature-animation {
  position: relative;
  z-index: 1;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.feature-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
}

.feature-copy p {
  max-width: 520px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.feature-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-left: 1px solid var(--glass-border);
  background: var(--bg-alt);
}

.feature-animation iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  overflow: hidden;
  scrollbar-width: none;
}

.feature-animation iframe::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.tile-card,
.detail-card {
  padding: 26px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: none;
}

.tile-number {
  margin-bottom: 22px;
}

.tile-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.subfeature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.subfeature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(113, 178, 225, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.detail-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-card {
  background: var(--glass);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
}

.platform-name {
  margin-bottom: 14px;
  font-size: 24px;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text);
  background: var(--glass);
  font-size: 13px;
  font-weight: 800;
}

.platform-status.is-live {
  color: var(--blue);
  border-color: rgba(113, 178, 225, 0.46);
  background: rgba(113, 178, 225, 0.08);
}

.platform-card p {
  margin-bottom: 0;
}

.platforms-disclaimer {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.pricing-section {
  border-top: 1px solid var(--glass-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.pricing-card h3,
.pricing-card .price {
  width: 100%;
}

.pricing-card.best-deal {
  border-color: rgba(113, 178, 225, 0.62);
  background: rgba(113, 178, 225, 0.1);
}

.deal-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(113, 178, 225, 0.46);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(113, 178, 225, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--blue);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  margin-left: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.pricing-card p {
  color: var(--text);
  line-height: 1.65;
}

.pricing-card .primary-button,
.pricing-card .secondary-button {
  width: 100%;
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.referral-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.referral-hero-copy {
  max-width: 780px;
}

.referral-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.58;
}

.referral-discount-panel {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(113, 178, 225, 0.42);
  border-radius: 16px;
  background: rgba(113, 178, 225, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.referral-panel-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.referral-discount-panel strong {
  color: var(--blue);
  font-size: clamp(88px, 13vw, 150px);
  font-weight: 950;
  line-height: 0.82;
}

.referral-discount-panel span:last-child {
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 850;
  line-height: 1.1;
}

.referral-steps-section,
.referral-details-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.referral-step {
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.referral-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(113, 178, 225, 0.46);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(113, 178, 225, 0.08);
  font-weight: 900;
}

.referral-step p {
  color: var(--text);
  line-height: 1.7;
}

.referral-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
}

.referral-rules-col {
  padding: 24px 26px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
}

.referral-rules-col h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
}

.referral-rules-yes h3 {
  color: var(--blue);
}

.referral-rules-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.referral-rules-col li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.6;
}

.referral-rules-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.referral-rules-yes li::before {
  content: '\2713';
  color: var(--blue);
}

.referral-rules-no li::before {
  content: '\2715';
  color: var(--muted);
}

@media (max-width: 720px) {
  .referral-rules-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--dark-line);
  background: var(--dark);
}

.resource-links-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line-soft);
}

.resource-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 28px auto 0;
}

.resource-link-grid a {
  padding: 15px 18px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
}

.resource-link-grid a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 680px) {
  .resource-link-grid { grid-template-columns: 1fr; }
}

.footer-identity,
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-navigation {
  align-items: flex-end;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-soft);
  font-size: 15px;
  font-weight: 850;
}

.footer-brand .brand-logo-full {
  width: 132px;
  height: 34px;
}

.footer-copyright {
  margin: 0;
  color: var(--dark-muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-email {
  color: var(--blue-soft);
  font-size: 14px;
  font-weight: 800;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--blue-soft);
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-grid,
  .recruit-section {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 440px;
  }

  .recruit-preview {
    width: min(100%, 820px);
    transform: none;
  }

  .hero-copy {
    margin: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-canvas-shell {
    width: min(100%, 760px);
  }

  .workflow-section {
    grid-template-columns: 1fr;
  }

  .animation-grid,
  .split-animations,
  .tile-grid,
  .detail-grid,
  .platform-grid,
  .pricing-grid,
  .referral-steps,
  .about-hero,
  .referral-hero,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .referral-hero {
    min-height: auto;
  }

  .founder-portrait-stack {
    max-width: 320px;
  }

  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy,
  .feature-row:nth-child(even) .feature-animation,
  .feature-copy,
  .feature-animation {
    grid-column: 1;
  }

  .feature-row:nth-child(even) .feature-copy,
  .feature-copy {
    grid-row: 1;
  }

  .feature-row:nth-child(even) .feature-animation,
  .feature-animation {
    grid-row: 2;
  }

  .animation-card.large {
    grid-row: auto;
    min-height: 520px;
  }

  .workflow-animation {
    min-height: 520px;
  }

  .workflow-animation iframe {
    height: 520px;
  }

  .feature-animation {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    aspect-ratio: 16 / 9;
  }
}

@media (orientation: portrait) and (max-width: 900px) {
  .feature-animation {
    aspect-ratio: 9 / 16;
    min-height: 680px;
    overflow: hidden;
  }

  .feature-animation iframe {
    height: 100%;
    min-height: 680px;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr 44px;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    grid-column: 2;
    justify-self: end;
    display: block;
    z-index: 1001;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    list-style: none;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
  }

  .mobile-nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    z-index: 1002;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(16, 24, 32, 0.12);
    pointer-events: auto;
  }

  .mobile-nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a[aria-current="page"] {
    background: rgba(113, 178, 225, 0.12);
  }

  .header-cta {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-logo-full {
    width: 124px;
    height: 32px;
  }

  .brand span {
    font-size: clamp(16px, 5vw, 22px);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr 44px;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    grid-column: 2;
    justify-self: end;
    display: block;
    z-index: 1001;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    list-style: none;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--blue);
  }

  .mobile-nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    z-index: 1002;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 0 0 14px 14px;
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(16, 24, 32, 0.12);
    pointer-events: auto;
  }

  .mobile-nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a[aria-current="page"] {
    background: rgba(113, 178, 225, 0.12);
  }

  .header-cta {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-logo-full {
    width: 116px;
    height: 30px;
  }

  .brand span {
    font-size: clamp(16px, 5vw, 22px);
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    display: none;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step span {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card {
    min-height: 400px;
  }

  .recruit-window-body {
    padding: 18px;
  }

  .recruit-dashboard {
    grid-template-columns: 1fr;
  }

  .contact-flow {
    max-width: 360px;
  }

  .connection-panel,
  .tracking-panel {
    padding: 14px;
  }

  .footer-navigation {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .founder-portrait-stack {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    width: min(100%, 320px);
    margin-inline: auto;
    gap: 12px;
  }

  .founder-portrait-stack::before {
    inset: -4%;
  }

  .founder-portrait-card img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .founder-portrait-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }
}

@media (max-width: 480px) {
  .header-cta,
  .primary-button,
  .secondary-button,
  .hero-actions {
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-canvas-shell {
    width: min(100%, 420px);
  }

  .recruit-window-bar {
    padding: 14px;
  }

  .preview-pill {
    font-size: 8px;
  }

  .recruit-window-body {
    padding: 12px;
  }

  .contact-flow {
    grid-template-columns: auto minmax(60px, 1fr) auto;
  }

  .person-row:nth-child(3) {
    display: none;
  }

  iframe,
  .animation-card:not(.large):not(.bare) iframe,
  .animation-card.bare iframe,
  .workflow-animation iframe,
  .feature-animation iframe {
    height: 700px;
    min-height: 700px;
  }

  .workflow-animation {
    min-height: 420px;
  }

  .feature-animation {
    aspect-ratio: auto;
    min-height: 700px;
    overflow: hidden;
  }

  .about-hero,
  .referral-hero {
    padding-top: 54px;
  }

  .about-title-break {
    display: block;
  }

  .about-hero-copy p,
  .about-story p {
    font-size: 17px;
  }

  .founder-portrait-card > div {
    padding: 12px;
    padding-right: 12px;
    padding-bottom: 54px;
    min-height: 116px;
  }

  .founder-portrait-card h2 {
    font-size: clamp(18px, 5vw, 22px);
  }

  .founder-title {
    font-size: 12px;
  }

  .founder-icon-link {
    width: 34px;
    height: 34px;
  }

  .founder-links {
    right: 12px;
    bottom: 12px;
  }

  .founder-icon-link svg {
    width: 18px;
    height: 18px;
  }
}

.faq-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.faq-grid details {
  padding: 22px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
}

.faq-grid summary {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
}

.faq-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
