:root {
  --deep-ink: #243444;
  --deep-ink-strong: #142b3f;
  --soft-coral: #f0744f;
  --soft-coral-strong: #e95f38;
  --warm-ivory: #f6f3ef;
  --pure-white: #ffffff;
  --soft-grey: #e6e3df;
  --muted-ink: #5d6973;
  --page-width: 1180px;
  --radius: 18px;
  --shadow: 0 16px 50px rgba(36, 52, 68, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-ivory);
  color: var(--deep-ink);
  font-family: "Plus Jakarta Sans", "Avenir Next", Avenir, Inter, ui-sans-serif,
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--soft-coral-strong);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(240, 116, 79, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

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

h1,
h2,
h3 {
  color: var(--deep-ink-strong);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.55rem;
  font-size: clamp(3.15rem, 5.7vw, 5.5rem);
  font-weight: 700;
}

h2 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.2rem, 3.7vw, 3.45rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(calc(100% - 44px), var(--page-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section-border {
  border-top: 1px solid var(--soft-grey);
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--soft-coral-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 14px;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 9px;
  background: var(--deep-ink);
  color: var(--pure-white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(246, 243, 239, 0.94);
  border-bottom: 1px solid rgba(230, 227, 223, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 2rem;
}

.brand-link,
.footer-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.footer-logo-link {
  flex-direction: column;
  align-items: flex-start;
}

.header-logo {
  width: clamp(150px, 14vw, 190px);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  font-size: 0.93rem;
  font-weight: 700;
}

.header-nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(5rem, 8.5vw, 8rem);
  background:
    radial-gradient(circle at 91% 74%, rgba(240, 116, 79, 0.08), transparent 30%),
    linear-gradient(180deg, var(--warm-ivory), rgba(255, 255, 255, 0.48));
}

.hero::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -19vw;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(3.5rem, 7vw, 8rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted-ink);
  font-size: clamp(1.02rem, 1.35vw, 1.19rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: var(--soft-coral);
  color: var(--pure-white);
  box-shadow: 0 10px 26px rgba(240, 116, 79, 0.18);
}

.button-primary:hover {
  background: var(--soft-coral-strong);
  color: var(--pure-white);
}

.button-secondary {
  background: var(--deep-ink-strong);
  color: var(--pure-white);
  box-shadow: 0 10px 26px rgba(20, 43, 63, 0.12);
}

.button-secondary:hover {
  background: var(--deep-ink);
  color: var(--pure-white);
}

.text-link {
  color: var(--muted-ink);
  font-size: 0.92rem;
  text-decoration: none;
}

.text-link strong {
  color: var(--soft-coral-strong);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  isolation: isolate;
}

.hero-gridlines {
  position: absolute;
  width: min(520px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 31%, rgba(36, 52, 68, 0.045) 31.2% 31.5%, transparent 31.7% 44%, rgba(36, 52, 68, 0.04) 44.2% 44.5%, transparent 44.7% 58%, rgba(36, 52, 68, 0.04) 58.2% 58.5%, transparent 58.7%),
    linear-gradient(rgba(36, 52, 68, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 52, 68, 0.045) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  opacity: 0.8;
  z-index: -2;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(36, 52, 68, 0.08);
  border-radius: 50%;
}

.orbit-one {
  width: 82%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 64%;
  aspect-ratio: 1;
}

.hero-mark {
  width: min(410px, 32vw);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(36, 52, 68, 0.05));
}

.hero-visual > p {
  position: absolute;
  bottom: 2%;
  margin: 0;
  color: var(--soft-coral-strong);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3.2rem, 6vw, 5.4rem);
}

.split-intro > p {
  max-width: 560px;
  margin-bottom: 0.6rem;
  color: var(--muted-ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--soft-grey);
  border-bottom: 1px solid var(--soft-grey);
}

.feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 2.35rem clamp(1.3rem, 3vw, 2.5rem);
}

.feature + .feature {
  border-left: 1px solid var(--soft-grey);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(230, 227, 223, 0.65);
}

.feature-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--deep-ink-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-icon .accent {
  stroke: var(--soft-coral);
}

.feature p {
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.statement-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 2rem;
  padding: 1.25rem 1.6rem;
  border-radius: 12px;
  background: rgba(240, 116, 79, 0.075);
  color: var(--soft-coral-strong);
  text-align: center;
}

.statement-band img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.statement-band p {
  margin: 0;
  font-size: clamp(1.14rem, 2vw, 1.65rem);
  font-weight: 600;
}

.channel-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--soft-grey);
  background:
    radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(135deg, rgba(240, 116, 79, 0.04), rgba(255, 255, 255, 0.35));
}

.channel-section::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -62%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 116, 79, 0.12);
  border-radius: 50%;
}

.channel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.channel-copy > p:not(.eyebrow):not(.supporting-statement) {
  max-width: 680px;
  color: var(--muted-ink);
}

.channel-copy .button {
  margin-top: 0.8rem;
}

.supporting-statement {
  max-width: 650px;
  margin-top: 1.6rem;
  margin-bottom: 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--soft-coral);
  color: var(--deep-ink);
  font-size: 0.94rem;
}

.channel-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.channel-logo-card {
  width: min(100%, 520px);
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(230, 227, 223, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 65px rgba(36, 52, 68, 0.07);
}

.channel-logo-card img {
  width: 100%;
  height: auto;
}

.channel-logo-card p {
  margin: 1.45rem 0 0;
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.stat + .stat::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: var(--soft-grey);
}

.stat dt {
  color: var(--deep-ink-strong);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.stat dd {
  margin: 0.45rem 0 0;
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--soft-grey);
  background: rgba(255, 255, 255, 0.42);
  padding-block: 3.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 3rem;
}

.footer-logo {
  width: min(100%, 230px);
  height: auto;
}

.footer-tagline {
  margin-top: 0.45rem;
  color: var(--soft-coral-strong);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal {
  padding-left: clamp(1rem, 5vw, 5rem);
  border-left: 1px solid var(--soft-grey);
  color: var(--muted-ink);
  font-size: 0.88rem;
}

.legal p {
  margin-bottom: 0.25rem;
}

.legal strong {
  color: var(--deep-ink-strong);
}

.legal a {
  color: var(--soft-coral-strong);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .channel-grid,
  .split-intro {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-mark {
    width: min(370px, 68vw);
  }

  .split-intro {
    gap: 1.25rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature + .feature {
    border-top: 1px solid var(--soft-grey);
    border-left: 0;
  }

  .channel-visual {
    min-height: 250px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    min-height: 82px;
    align-items: center;
    padding-block: 1rem;
  }

  .header-logo {
    width: 132px;
  }

  .header-nav {
    align-items: flex-end;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-gridlines {
    width: 88vw;
  }

  .feature {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.7rem 0.65rem;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
  }

  .feature-icon svg {
    width: 31px;
    height: 31px;
  }

  .statement-band {
    align-items: flex-start;
    text-align: left;
  }

  .statement-band img {
    flex: 0 0 auto;
  }

  .channel-logo-card {
    padding: 1.6rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat + .stat::before {
    top: 0;
    right: 1.5rem;
    bottom: auto;
    left: 1.5rem;
    width: auto;
    height: 1px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal {
    padding-top: 1.7rem;
    padding-left: 0;
    border-top: 1px solid var(--soft-grey);
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 0.75rem;
  }

  .header-nav a:first-child {
    max-width: 145px;
    text-align: right;
  }

  .button {
    width: 100%;
  }

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

  .text-link {
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
