:root {
  --bg: #f8fdfa;
  --mint: #eafbF4;
  --mint-strong: #d7f5e9;
  --green: #008f5e;
  --green-2: #10b974;
  --navy: #0e1a36;
  --muted: #52607c;
  --border: #c1e7d8;
  --line: #e2eee9;
  --white: #fff;
  --blue: #0a66c2;
  --shadow: 0 24px 70px rgba(14, 26, 54, 0.12);
  --soft-shadow: 0 14px 40px rgba(0, 91, 61, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(193, 231, 216, 0.72);
  background: rgba(248, 253, 250, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.hero-tags,
.hero-proof,
.check-list li {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  font-size: 14px;
}

.site-header nav {
  justify-content: center;
  gap: 8px;
}

.site-header nav a,
.header-cta,
.button {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
}

.site-header nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav a:hover {
  color: var(--green);
  background: rgba(16, 185, 116, 0.09);
}

.header-cta {
  padding: 11px 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 132px clamp(20px, 4vw, 68px) 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 4%, rgba(16, 185, 116, 0.16), transparent 31%),
    radial-gradient(circle at 4% 94%, rgba(0, 143, 94, 0.12), transparent 23%),
    linear-gradient(180deg, #fbfffd 0%, #f4fcf8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 143, 94, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 143, 94, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 95%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border: 1px solid rgba(193, 231, 216, 0.75);
}

.hero-web {
  right: clamp(20px, 5vw, 78px);
  top: 156px;
  width: min(710px, 49vw);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-phone {
  width: min(230px, 15.7vw);
  height: auto;
  border: 8px solid #1d2733;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero-phone-a {
  right: min(34vw, 490px);
  top: 206px;
}

.hero-phone-b {
  right: clamp(52px, 7vw, 130px);
  top: 250px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 840;
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 830;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 790;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-copy {
  max-width: 660px;
  margin-top: 26px;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 143, 94, 0.23);
}

.button.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
}

.hero-tags {
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 9px 14px;
  border: 1px solid rgba(193, 231, 216, 0.8);
  border-radius: 999px;
  background: rgba(234, 251, 244, 0.9);
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 46px;
  z-index: 3;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.hero-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(234, 251, 244, 0.88);
  color: var(--green);
  font-size: 14px;
  font-weight: 760;
}

.section {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 4vw, 68px);
}

.section-copy {
  max-width: 840px;
}

.section-copy.centered {
  max-width: 930px;
  margin-inline: auto;
  text-align: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
}

.section-copy.centered p:not(.eyebrow) {
  margin-inline: auto;
}

.problem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.problem-grid,
.module-grid,
.license-grid,
.package-grid,
.question-grid,
.ownership-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(2, 1fr);
}

.problem-grid article,
.module-grid article,
.license-grid article,
.package-grid article,
.question-grid p,
.ownership-grid article,
.cta-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--soft-shadow);
}

.problem-grid article {
  padding: 24px;
}

.icon,
.timeline-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--mint-strong);
  color: var(--green);
  font-size: 14px;
  font-weight: 840;
}

.problem-grid h3,
.module-grid h3,
.license-grid h3,
.package-grid h3,
.ownership-grid h3 {
  margin-top: 18px;
}

.problem-grid p,
.module-grid p,
.license-grid p,
.package-grid p,
.ownership-grid p {
  margin-top: 10px;
  font-size: 16px;
}

.proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.proof-strip img,
.pillar-map img,
.showcase-grid img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.proof-strip img {
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  object-position: top center;
}

.positioning,
.ownership,
.timeline,
.questions {
  background:
    radial-gradient(circle at 18% 12%, rgba(16, 185, 116, 0.09), transparent 25%),
    linear-gradient(180deg, #fbfffd, #f4fcf8);
}

.pillar-map {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 48px;
}

.pillar-map article {
  min-height: 440px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
}

.pillar-map .core {
  min-height: 500px;
  border-color: rgba(0, 143, 94, 0.45);
  box-shadow: var(--shadow);
}

.pillar-map span,
.package-grid span,
.role {
  color: var(--green);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.pillar-map h3 {
  margin-top: 16px;
  font-size: 28px;
}

.pillar-map p {
  min-height: 84px;
  margin-top: 12px;
  font-size: 16px;
}

.pillar-map img {
  width: 100%;
  height: 170px;
  margin-top: 22px;
  object-fit: cover;
  object-position: top center;
}

.pillar-map .core img {
  height: 215px;
}

.modules {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
}

.module-grid {
  grid-template-columns: repeat(2, 1fr);
}

.module-grid article,
.license-grid article,
.package-grid article,
.ownership-grid article {
  padding: 24px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 44px;
  align-items: center;
}

.showcase-copy {
  position: sticky;
  top: 100px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  gap: 11px;
  color: var(--navy);
  font-weight: 690;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr;
  gap: 16px;
}

.showcase-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
}

.showcase-grid .phone-shot {
  grid-row: span 2;
  height: 436px;
  object-fit: contain;
  padding: 18px;
}

.ownership-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
}

.license {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: start;
}

.license-grid {
  grid-template-columns: repeat(2, 1fr);
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
}

.timeline-list h3 {
  margin-top: 20px;
  font-size: 20px;
}

.timeline-list p {
  margin-top: 9px;
  font-size: 15px;
}

.scope {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-grid article {
  min-height: 250px;
}

.package-grid .featured {
  border-color: rgba(0, 143, 94, 0.45);
  background: linear-gradient(180deg, #fff, #f0fbf6);
}

.question-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.question-grid p {
  padding: 22px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 690;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.team-grid article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.team-grid img {
  width: 170px;
  height: 170px;
  border-radius: 24px;
  object-fit: cover;
}

.team-grid article:first-child img {
  object-position: top center;
}

.team-grid h3 {
  font-size: 32px;
}

.team-grid .role {
  margin-top: 6px;
}

.team-grid p:not(.role) {
  margin-top: 14px;
  font-size: 16px;
}

.team-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 16%, rgba(16, 185, 116, 0.16), transparent 28%),
    linear-gradient(135deg, #f5fcf8, #eafbf4);
}

.cta p {
  max-width: 760px;
  margin-top: 20px;
  font-size: 20px;
}

.cta-card {
  padding: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 112px;
  }

  .hero-web {
    top: auto;
    right: 20px;
    bottom: 120px;
    width: 72vw;
  }

  .hero-phone-a {
    top: auto;
    right: 55vw;
    bottom: 72px;
    width: 170px;
  }

  .hero-phone-b {
    top: auto;
    right: 52px;
    bottom: 70px;
    width: 170px;
  }

  .hero-proof {
    left: 20px;
    right: 20px;
    bottom: 20px;
    justify-content: center;
  }

  .problem,
  .modules,
  .showcase,
  .license,
  .scope,
  .cta {
    grid-template-columns: 1fr;
  }

  .ownership-grid,
  .timeline-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar-map {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 980px;
    padding: 96px 18px 40px;
  }

  h1 {
    max-width: 100%;
    font-size: 39px;
    line-height: 1.06;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-actions .button {
    flex: 1 1 100%;
    max-width: 280px;
  }

  .hero-web {
    left: 18px;
    right: 18px;
    bottom: 170px;
    width: auto;
  }

  .hero-phone,
  .hero-phone-a,
  .hero-phone-b {
    width: 132px;
    border-width: 5px;
    border-radius: 28px;
  }

  .hero-phone-a {
    left: 30px;
    right: auto;
    bottom: 70px;
  }

  .hero-phone-b {
    right: 30px;
    bottom: 70px;
  }

  .hero-proof {
    display: none;
  }

  .section {
    padding: 64px 18px;
  }

  .problem-grid,
  .proof-strip,
  .module-grid,
  .license-grid,
  .package-grid,
  .question-grid,
  .team-grid,
  .ownership-grid,
  .timeline-list,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    position: static;
  }

  .showcase-grid .phone-shot,
  .showcase-grid img {
    height: auto;
  }

  .team-grid article {
    grid-template-columns: 1fr;
  }

  .team-grid img {
    width: 128px;
    height: 128px;
  }

  .site-footer {
    flex-direction: column;
  }
}
