:root {
  color-scheme: light;
  --ink: #07191f;
  --muted: #52656c;
  --line: rgba(7, 25, 31, 0.12);
  --teal: #0b7e82;
  --teal-dark: #064f56;
  --mint: #c9f5ee;
  --mint-strong: #8fe8df;
  --gold: #ffe3a3;
  --coral: #ffd1cb;
  --lavender: #dfe5ff;
  --navy: #09202a;
  --shadow: 0 22px 54px rgba(7, 25, 31, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 7rem, rgba(143, 232, 223, 0.45), transparent 24rem),
    radial-gradient(circle at 92% 8rem, rgba(255, 227, 163, 0.48), transparent 24rem),
    linear-gradient(180deg, #fbfefd 0%, #f4faf8 54%, #eef8f5 100%);
}

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

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: calc(100% - 2rem);
  max-width: 1160px;
  margin: 0.8rem auto 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(7, 25, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

nav {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}

nav a,
.nav-cta {
  border-radius: 999px;
  padding: 0.72rem 0.92rem;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 820;
}

nav a:hover,
nav a:focus-visible {
  background: #e8f8f5;
  color: var(--teal-dark);
  outline: none;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
}

main {
  width: calc(100% - 2rem);
  max-width: 1160px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: center;
  padding: clamp(4.2rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  border: 1px solid rgba(10, 127, 130, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #c9fff8;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1.18rem;
  font-size: clamp(3rem, 6.2vw, 4.95rem);
  line-height: 1;
  letter-spacing: -0.042em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
}

.hero-text,
.intro-section > p,
.kithpilot-copy p,
.contact-section p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.58;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  border-radius: 999px;
  padding: 0.84rem 1.15rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10, 127, 130, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal-dark);
}

.button-light {
  background: #fff;
  color: var(--teal-dark);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
}

.trust-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.trust-notes span {
  border: 1px solid rgba(7, 25, 31, 0.1);
  border-radius: 999px;
  padding: 0.46rem 0.64rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 780;
}

.product-preview {
  position: relative;
  border: 1px solid rgba(7, 25, 31, 0.1);
  border-radius: 30px;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 249, 0.94)),
    #fff;
  box-shadow: var(--shadow);
}

.product-preview::before {
  position: absolute;
  inset: 1rem auto auto -1.2rem;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 28px;
  background: var(--mint-strong);
  content: "";
  opacity: 0.46;
  transform: rotate(-8deg);
}

.preview-header {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.preview-header img {
  width: 48px;
  height: 48px;
}

.preview-header strong,
.preview-header span {
  display: block;
}

.preview-header strong {
  font-size: 1.08rem;
}

.preview-header span,
.preview-list small,
.panel-kicker {
  color: var(--muted);
  font-size: 0.92rem;
}

.today-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
  border-radius: 24px;
  padding: 1rem;
  background:
    radial-gradient(circle at right top, rgba(255, 227, 163, 0.7), transparent 10rem),
    linear-gradient(135deg, #e5fbf8, #ffffff);
}

.panel-kicker,
.today-panel strong {
  display: block;
}

.today-panel strong {
  margin-top: 0.16rem;
  font-size: 1.3rem;
  line-height: 1.15;
}

.status-pill {
  flex: none;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-list {
  display: grid;
  gap: 0.72rem;
}

.preview-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.78rem;
  align-items: center;
  border: 1px solid rgba(7, 25, 31, 0.08);
  border-radius: 20px;
  padding: 0.85rem;
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.preview-list a:hover,
.preview-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 127, 130, 0.28);
  box-shadow: 0 12px 26px rgba(7, 25, 31, 0.08);
  outline: none;
}

.preview-list strong,
.preview-list small {
  display: block;
}

.preview-list strong {
  margin-bottom: 0.18rem;
}

.tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--ink);
  font-weight: 950;
}

.tile-teal {
  background: var(--mint);
}

.tile-blue {
  background: var(--lavender);
}

.tile-sun {
  background: var(--gold);
}

.preview-action {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  border-radius: 999px;
  padding: 0.95rem 1rem;
  background: var(--teal);
  color: #fff;
  font-weight: 930;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: clamp(3.2rem, 7vw, 5.2rem);
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 830;
  text-align: center;
}

.section,
.audience-section {
  padding: clamp(3.2rem, 8vw, 5.5rem) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.92fr 0.86fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  border-top: 1px solid var(--line);
}

.section-lead {
  max-width: 780px;
}

.section-lead.centered {
  margin: 0 auto 1.2rem;
  text-align: center;
}

.value-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.value-grid article,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 32px rgba(7, 25, 31, 0.06);
}

.value-grid article:nth-child(1) {
  background: linear-gradient(180deg, #fff, #e9fbf8);
}

.value-grid article:nth-child(2) {
  background: linear-gradient(180deg, #fff, #fff7df);
}

.value-grid article:nth-child(3) {
  background: linear-gradient(180deg, #fff, #eef2ff);
}

.card-index {
  display: inline-flex;
  margin-bottom: 1.75rem;
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 930;
}

.value-grid p,
.audience-grid p,
.approach-list span {
  color: var(--muted);
  line-height: 1.58;
}

.kithpilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.82fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  margin: clamp(3.5rem, 8vw, 6rem) 0;
  border-radius: 38px;
  padding: clamp(1.4rem, 4.5vw, 3rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 227, 163, 0.62), transparent 17rem),
    radial-gradient(circle at 3% 100%, rgba(143, 232, 223, 0.26), transparent 17rem),
    linear-gradient(135deg, var(--navy), #074f55 58%, #27346b);
  color: #fff;
  box-shadow: var(--shadow);
}

.kithpilot-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.module-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.module-card {
  min-height: 158px;
  border-radius: 24px;
  padding: 1rem;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.module-card span,
.module-card strong {
  display: block;
}

.module-card span {
  margin-bottom: 2.3rem;
  color: rgba(7, 25, 31, 0.62);
  font-size: 0.82rem;
  font-weight: 930;
  text-transform: uppercase;
}

.module-card strong {
  font-size: 1.08rem;
  line-height: 1.18;
}

.mint {
  background: var(--mint);
}

.lavender {
  background: var(--lavender);
}

.gold {
  background: var(--gold);
}

.coral {
  background: var(--coral);
}

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

.approach-section {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3.4rem, 8vw, 5.2rem) 0;
}

.approach-list {
  display: grid;
  gap: 0.82rem;
}

.approach-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
  background: #fff;
}

.approach-list strong {
  font-size: 1rem;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin: clamp(3.5rem, 8vw, 5.5rem) 0 3rem;
  border: 1px solid rgba(10, 127, 130, 0.18);
  border-radius: 30px;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  background:
    radial-gradient(circle at right top, rgba(255, 227, 163, 0.46), transparent 15rem),
    linear-gradient(135deg, #e4faf7, #fff7e5);
  box-shadow: 0 18px 42px rgba(7, 25, 31, 0.09);
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  width: calc(100% - 2rem);
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--teal-dark);
  font-weight: 850;
}

@media (max-width: 940px) {
  .site-header,
  .hero,
  .intro-section,
  .kithpilot-section,
  .approach-section,
  .contact-section,
  footer {
    display: block;
  }

  .site-header {
    position: static;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0.8rem 0;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .product-preview,
  .module-board,
  .contact-section .button {
    margin-top: 1.35rem;
  }

  .proof-strip,
  .value-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  footer p,
  footer > a:last-child {
    margin-top: 1rem;
  }
}

@media (max-width: 620px) {
  main,
  .site-header,
  footer {
    width: calc(100vw - 56px);
    max-width: none;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(2.15rem, 9.6vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  nav {
    display: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .site-header {
    padding: 0.55rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero-actions,
  .product-actions,
  .trust-notes,
  .proof-strip,
  .value-grid,
  .module-board,
  .audience-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero,
  .hero-copy,
  .hero-actions,
  .product-actions,
  .product-preview,
  .proof-strip,
  .value-grid,
  .module-board,
  .audience-grid,
  .kithpilot-section,
  .contact-section {
    width: 100%;
    min-width: 0;
  }

  .hero-copy,
  .product-preview,
  .proof-strip,
  .value-grid,
  .module-board,
  .audience-grid {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .product-preview,
  .kithpilot-section,
  .contact-section {
    border-radius: 26px;
  }

  .product-preview::before {
    display: none;
  }
}
