:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-alt: #eff4f3;
  --text: #10201d;
  --muted: #52625f;
  --soft: #84928f;
  --line: #d7e2e0;
  --primary: #0f766e;
  --primary-hover: #115e59;
  --primary-soft: #e6f4f1;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --success: #047857;
  --warning: #b45309;
  --increase: #dc2626;
  --decrease: #2563eb;
  --shadow: 0 18px 48px rgba(15, 48, 43, 0.14);
  --soft-shadow: 0 10px 28px rgba(15, 48, 43, 0.09);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(230, 244, 241, 0.82), rgba(246, 248, 247, 0) 460px),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header,
.hero-section,
.purpose-section,
.section,
.privacy-section,
.waitlist-section,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 14px;
  border: 1px solid rgba(215, 226, 224, 0.72);
  border-radius: 22px;
  background: rgba(246, 248, 247, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(246, 248, 247, 0.92);
  box-shadow: 0 14px 34px rgba(15, 48, 43, 0.12);
}

.brand,
.desktop-nav,
.nav-cta,
.button,
.stat-pill,
.feature-icon,
.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-form {
  margin: 0;
}

.language-form select {
  min-height: 44px;
  max-width: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-cta,
.button {
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  padding: 0 16px;
  color: #ffffff;
  background: var(--primary);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-section {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 58px;
  padding: 54px 0 50px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  color: var(--primary-hover);
  background: rgba(230, 244, 241, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 850;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.button.primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(15, 118, 110, 0.24);
}

.button.primary:hover {
  background: var(--primary-hover);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  max-width: 640px;
}

.stat-pill {
  min-height: 78px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(215, 226, 224, 0.75);
}

.stat-pill strong {
  font-size: 15px;
}

.stat-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.product-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(100%, 360px);
  border-radius: 40px;
  padding: 12px;
  background: #10201d;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 98px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #10201d;
}

.phone-screen {
  min-height: 672px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 42px 16px 18px;
}

.phone-title {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.phone-date {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 900;
}

.salary-card {
  margin-top: 18px;
  min-height: 158px;
  padding: 16px;
  color: #ffffff;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.24);
}

.company-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 850;
}

.company-row span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 11px;
}

.salary-label {
  margin-top: 18px;
  opacity: 0.86;
  font-size: 11px;
  font-weight: 850;
}

.salary-value {
  margin-top: 2px;
  font-size: 32px;
  font-weight: 950;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.salary-delta {
  display: inline-flex;
  margin-top: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 850;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.quick-grid div,
.history-row,
.glass-card,
.feature-card,
.step-card {
  background: var(--surface);
  border: 1px solid rgba(215, 226, 224, 0.75);
  box-shadow: var(--soft-shadow);
}

.quick-grid div {
  min-height: 92px;
  border-radius: var(--radius-lg);
  padding: 14px 12px;
}

.quick-grid b,
.quick-grid span,
.history-row small {
  display: block;
}

.quick-grid b {
  font-size: 13px;
}

.quick-grid span,
.history-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.phone-section-label {
  margin: 18px 0 8px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
}

.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.history-row strong {
  font-variant-numeric: tabular-nums;
}

.glass-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 14px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.76);
}

.glass-card b,
.glass-card span {
  display: block;
}

.glass-card b {
  font-size: 13px;
}

.glass-card span {
  color: var(--muted);
  font-size: 12px;
}

.scan-card {
  left: -8px;
  top: 80px;
  width: 194px;
}

.scan-card i {
  display: block;
  height: 7px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--surface-alt);
}

.scan-card em {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.diff-card {
  right: -6px;
  bottom: 78px;
  width: 208px;
}

.diff-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 850;
}

.up {
  color: var(--increase);
}

.down {
  color: var(--decrease);
}

.section {
  padding: 78px 0;
}

.section-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.privacy-section p,
.waitlist-card p {
  color: var(--muted);
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.purpose-section {
  padding: 34px 0 24px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.purpose-card {
  min-height: 214px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.purpose-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.purpose-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-card {
  min-height: 242px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.feature-icon {
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--primary);
  border-radius: 14px;
  background: var(--primary-soft);
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(5) .feature-icon {
  color: var(--accent);
  background: var(--accent-soft);
}

.feature-card:nth-child(3) .feature-icon {
  color: var(--warning);
  background: #fffbeb;
}

.feature-card h3,
.step-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.feature-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 38px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background: #0e1d19;
  color: #eaf7f4;
  box-shadow: var(--shadow);
}

.privacy-section h2 {
  color: #ffffff;
}

.privacy-section .section-kicker {
  color: #5eead4;
  background: rgba(94, 234, 212, 0.12);
  border-color: rgba(94, 234, 212, 0.24);
}

.privacy-section p,
.privacy-list {
  color: #a8bbb6;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 760;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-list span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #071411;
  background: #5eead4;
  font-size: 13px;
  font-weight: 950;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  min-height: 188px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.step-number {
  display: inline-flex;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 950;
}

.waitlist-section {
  padding: 78px 0 92px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow);
}

.waitlist-card .section-kicker {
  color: #dffdfa;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.waitlist-card p {
  color: rgba(255, 255, 255, 0.84);
}

.waitlist-form {
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 20, 17, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 850;
}

.store-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.store-icon-lg {
  width: 30px;
  height: 30px;
}

.store-buttons {
  display: grid;
  gap: 12px;
}

.store {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  color: #0f172a;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(7, 20, 17, 0.18);
}

.store-copy {
  display: grid;
  gap: 2px;
}

.store-copy small {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.store-copy strong {
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
}

.store-inline .store-icon {
  margin-right: 0;
}

.form-row {
  display: flex;
  gap: 8px;
}

.form-row input,
.form-row button {
  min-height: 50px;
  border-radius: 14px;
  border: 0;
  font: inherit;
}

.form-row input {
  min-width: 0;
  flex: 1;
  padding: 0 14px;
  color: var(--text);
  background: #ffffff;
}

.form-row button {
  padding: 0 18px;
  color: #ffffff;
  background: #071411;
  font-weight: 900;
  cursor: pointer;
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-message {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 760;
}

.form-message[data-state="success"] {
  color: #dffdfa;
}

.form-message[data-state="error"] {
  color: #ffe4e6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(215, 226, 224, 0.86);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a:hover,
.document-hero a:hover,
.contact-card a:hover {
  color: var(--primary);
}

.document-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.document-hero {
  max-width: 780px;
  margin-bottom: 28px;
}

.document-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.document-hero p {
  color: var(--muted);
  font-size: 17px;
}

.document-card,
.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 226, 224, 0.82);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.document-card {
  padding: 12px;
}

.document-section {
  padding: 24px;
  border-radius: 18px;
}

.document-section + .document-section {
  border-top: 1px solid rgba(215, 226, 224, 0.78);
}

.document-section h2,
.contact-card h2 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
}

.document-section p,
.contact-card li {
  color: var(--muted);
}

.document-section ul,
.contact-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.document-section li,
.contact-card li {
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 18px;
}

.contact-card,
.contact-form {
  padding: 24px;
}

.contact-form label {
  display: block;
  margin: 14px 0 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.contact-form button {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: var(--primary);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-section,
  .privacy-section,
  .waitlist-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    gap: 28px;
  }

  .product-stage {
    min-height: 650px;
  }

  .feature-grid,
  .purpose-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero-section,
  .purpose-section,
  .section,
  .privacy-section,
  .waitlist-section,
  .site-footer {
    width: min(100% - 24px, 1160px);
  }

  .site-footer {
    align-items: flex-start;
  }

  .document-page {
    width: min(100% - 24px, 980px);
    padding: 48px 0 64px;
  }

  .document-card {
    padding: 6px;
  }

  .document-section,
  .contact-card,
  .contact-form {
    padding: 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .language-form select {
    max-width: 132px;
  }

  .site-header {
    top: 8px;
    min-height: 62px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-actions,
  .form-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .purpose-grid,
  .feature-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
    display: block;
  }

  .phone {
    width: min(100%, 326px);
    margin: 0 auto;
  }

  .phone-screen {
    min-height: 610px;
  }

  .glass-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 10px auto 0;
  }

  .privacy-section,
  .waitlist-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .section {
    padding: 58px 0;
  }

  .waitlist-section {
    padding: 58px 0 72px;
  }
}
