:root {
  --ink: #162126;
  --muted: #5f6f76;
  --paper: #fbfcf8;
  --mist: #edf5f1;
  --line: #d9e4df;
  --teal: #1f8a83;
  --teal-dark: #14615d;
  --leaf: #6aa66a;
  --coral: #cf6f53;
  --gold: #d59f3f;
  --blue: #326da8;
  --night: #172a32;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(22, 33, 38, 0.13);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.site-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav .nav-action {
  color: var(--white);
}

.nav-action {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  padding: 10px 14px;
}

.landing-hero {
  min-height: 78vh;
  padding: 132px 20px 92px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(13, 31, 36, 0.9), rgba(23, 62, 68, 0.76), rgba(18, 47, 50, 0.4)), url("imgs/splash-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.hub-hero .hero-inner {
  max-width: 760px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-hero h1,
.section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.landing-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.96;
}

.product-hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(207, 111, 83, 0.26);
}

.btn-primary:hover {
  background: #bd6047;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.section-light {
  width: 100%;
  padding: 82px max(20px, calc((100vw - var(--container)) / 2));
  background: var(--mist);
}

.section-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.destination-card,
.feature-card,
.workflow-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(22, 33, 38, 0.06);
}

.destination-card.featured {
  border-color: rgba(31, 138, 131, 0.38);
  box-shadow: var(--shadow);
}

.card-icon,
.feature-card i {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e5f2ee;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.destination-card:nth-child(2) .card-icon,
.feature-card:nth-child(2) i {
  background: #edf0dd;
  color: #647d27;
}

.destination-card:nth-child(3) .card-icon,
.feature-card:nth-child(3) i {
  background: #f7eadf;
  color: var(--coral);
}

.destination-card h3,
.feature-card h3,
.workflow-grid h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.destination-card p,
.feature-card p,
.workflow-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.destination-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--teal-dark);
  font-weight: 700;
}

.split-section,
.audience-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.focus-list {
  display: grid;
  gap: 14px;
}

.focus-item {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.focus-item strong {
  color: var(--teal-dark);
}

.focus-item span {
  color: var(--muted);
  line-height: 1.6;
}

.product-screenshot-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.product-screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-grid {
  counter-reset: workflow;
}

.workflow-grid article span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

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

.feature-card i {
  display: grid;
  margin-bottom: 18px;
}

.feature-card:nth-child(4) i {
  background: #e8eef6;
  color: var(--blue);
}

.trust-section {
  padding-top: 12px;
}

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

.trust-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(22, 33, 38, 0.06);
}

.trust-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e5f2ee;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.trust-grid article:nth-child(2) i {
  background: #e8eef6;
  color: var(--blue);
}

.trust-grid article:nth-child(3) i {
  background: #f7eadf;
  color: var(--coral);
}

.trust-grid h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 700;
}

.audience-band {
  background: var(--night);
  color: var(--white);
  border-radius: 8px;
  padding: 46px;
  margin-bottom: 72px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
}

.landing-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.landing-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

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

.legal-hero {
  min-height: 46vh;
  padding-bottom: 72px;
}

.legal-hero h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-updated {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 900px;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.legal-copy p,
.legal-list {
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(213, 159, 63, 0.42);
  border-radius: 8px;
  background: #fff8e9;
  color: #805b10;
}

.legal-note i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.legal-note p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    min-height: 74px;
  }

  .site-nav a:not(.nav-action) {
    display: none;
  }

  .landing-hero {
    min-height: 72vh;
  }

  .product-hero-inner,
  .split-section,
  .audience-band {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .feature-grid,
  .workflow-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-screenshot-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .site-brand span {
    font-size: 1rem;
  }

  .site-brand img {
    width: 32px;
    height: 32px;
  }

  .nav-action {
    padding: 9px 11px;
  }

  .landing-hero {
    padding: 118px 16px 64px;
    min-height: 70vh;
  }

  .hub-hero .hero-inner {
    margin-left: auto;
  }

  .landing-hero h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section,
  .section-light {
    width: 100%;
    padding: 58px 20px;
  }

  .focus-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-screenshot-card {
    margin-top: 8px;
  }

  .audience-band {
    width: calc(100% - 40px);
    padding: 28px;
  }

  .landing-footer {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

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