:root {
  --white: #ffffff;
  --paper: #f7f9f4;
  --mist: #e7f0ed;
  --green: #245f35;
  --green-dark: #0f3323;
  --green-deep: #071d17;
  --blue: #0d7a91;
  --blue-soft: #d8eef2;
  --ink: #0d1d1a;
  --muted: #60716a;
  --line: rgba(15, 51, 35, 0.13);
  --shadow: 0 28px 90px rgba(7, 29, 23, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  cursor: none;
  overflow-x: hidden;
}

a,
button,
input,
textarea {
  font: inherit;
}

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

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

.cursor,
.cursor-ring {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #b9fff7, rgba(13, 122, 145, 0.95) 55%, rgba(36, 95, 53, 0.9));
  box-shadow: 0 0 0 6px rgba(13, 122, 145, 0.08);
  opacity: 0.95;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 46% 54% 56% 44% / 44% 46% 54% 56%;
  background:
    conic-gradient(
      from 220deg,
      rgba(13, 122, 145, 0.28),
      rgba(36, 95, 53, 0.24),
      rgba(142, 230, 237, 0.18),
      rgba(13, 122, 145, 0.28)
    );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 40px rgba(7, 29, 23, 0.18);
  filter: saturate(1.05);
  opacity: 0.68;
  animation: cursor-blob 6.2s ease-in-out infinite;
  transition: width 0.22s var(--ease), height 0.22s var(--ease), opacity 0.22s var(--ease), filter 0.22s var(--ease);
  transform: translate(-50%, -50%) rotate(var(--ring-rot, 0deg));
}

.cursor-ring.is-active {
  width: 50px;
  height: 50px;
  opacity: 0.82;
  filter: saturate(1.15) brightness(1.02);
}

.cursor-ring.is-press {
  width: 58px;
  height: 58px;
  opacity: 0.92;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(7, 29, 23, 0.12);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
  animation: slide-down 0.8s var(--ease) both;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 12px 15px;
  border-radius: 999px;
  color: rgba(13, 29, 26, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--green-dark);
  background: rgba(36, 95, 53, 0.08);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 12px 32px rgba(13, 122, 145, 0.22);
}

.menu-toggle {
  display: none;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - 1160px) / 2));
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(13, 122, 145, 0.32), transparent 34%),
    radial-gradient(circle at 20% 70%, rgba(36, 95, 53, 0.34), transparent 36%),
    linear-gradient(135deg, var(--green-deep), #082820 52%, #05212a);
}

.section-light {
  background:
    radial-gradient(circle at 12% 12%, rgba(13, 122, 145, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.section-white {
  background: var(--white);
}

.hero {
  min-height: 100svh;
  padding: 138px max(24px, calc((100vw - 1160px) / 2)) 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 190px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #8ee6ed;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 5.8vw, 6.6rem);
  font-weight: 600;
  line-height: 0.97;
  overflow-wrap: normal;
}

.hero-title {
  display: block;
  font-size: 1.2em;
  line-height: 0.9;
}

.hero-subtitle {
  display: block;
  margin-top: 18px;
  font-size: 0.62em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.92);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 600;
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lede {
  max-width: 630px;
  font-size: 1.14rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chips span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  transition: transform 0.22s var(--ease), background 0.22s var(--ease);
}

.hero-chips span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 18px 44px rgba(13, 122, 145, 0.26);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: visible;
}

.stage-glow {
  position: absolute;
  width: min(88vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(13, 122, 145, 0.18) 42%, transparent 68%);
  filter: blur(2px);
  animation: hero-glow 4.8s ease-in-out infinite;
}

.logo-shell {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(50vw, 390px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.24);
  animation: float-logo 6.5s ease-in-out infinite;
}

.logo-shell img {
  width: 84%;
  filter: drop-shadow(0 12px 32px rgba(7, 29, 23, 0.12));
}

.orbit {
  position: absolute;
  inset: 50%;
  z-index: 2;
  animation: orbit 22s linear infinite;
}

.orbit-two {
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit span {
  position: absolute;
  display: inline-flex;
  width: max-content;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  animation: counter-orbit 22s linear infinite;
}

.orbit-two span {
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit span:nth-child(1) {
  transform: rotate(0deg) translateX(220px);
}

.orbit span:nth-child(2) {
  transform: rotate(120deg) translateX(220px);
}

.orbit span:nth-child(3) {
  transform: rotate(240deg) translateX(220px);
}

.orbit-two span:nth-child(1) {
  transform: rotate(60deg) translateX(190px);
}

.orbit-two span:nth-child(2) {
  transform: rotate(180deg) translateX(190px);
}

.orbit-two span:nth-child(3) {
  transform: rotate(300deg) translateX(190px);
}

.root-lines {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 50%;
  width: 290px;
  height: 150px;
  transform: translateX(-50%);
}

.root-lines i {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(to top, transparent, rgba(142, 230, 237, 0.7));
  transform-origin: bottom;
  animation: root-sway 4s ease-in-out infinite;
}

.root-lines i:nth-child(1) { transform: rotate(-42deg); animation-delay: 0.2s; }
.root-lines i:nth-child(2) { transform: rotate(-21deg); animation-delay: 0.4s; }
.root-lines i:nth-child(3) { transform: rotate(0); animation-delay: 0.6s; }
.root-lines i:nth-child(4) { transform: rotate(21deg); animation-delay: 0.8s; }
.root-lines i:nth-child(5) { transform: rotate(42deg); animation-delay: 1s; }

.hero-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(142, 230, 237, 0.62);
  animation: float-particle var(--duration, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 24px;
  margin-inline: calc(max(24px, (100vw - 1160px) / 2) * -1);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 19px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: ticker-scroll 28s linear infinite;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 700px;
}

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

.statement-card {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.vision-section .statement-card {
  min-height: 300px;
  padding: clamp(22px, 4vw, 42px);
}

.statement-card span,
.feature-icon,
.process-step span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-card p {
  max-width: 570px;
  color: var(--green-dark);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 3.25vw, 3.2rem);
  line-height: 1;
}

.vision-section .statement-card p {
  font-size: clamp(1.3rem, 2.35vw, 2.4rem);
}

.statement-card.dark-card {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #083647);
}

.statement-card.dark-card p {
  color: rgba(255, 255, 255, 0.92);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.problem-copy {
  padding-top: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 64px;
}

.impact-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  min-height: 136px;
  padding: 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 122, 145, 0.06), rgba(36, 95, 53, 0.04));
  box-shadow: 0 18px 60px rgba(7, 29, 23, 0.08);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
}

.impact-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(13, 122, 145, 0.1), rgba(36, 95, 53, 0.06));
}

.impact-num {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--green-dark);
}

.impact-desc {
  color: rgba(13, 29, 26, 0.72);
  font-weight: 700;
  line-height: 1.35;
  align-self: center;
}

.fall-short {
  margin-top: 54px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.fall-short h3 {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fall-short-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.fall-short-list article {
  padding: 18px 18px;
  border: 1px solid rgba(13, 29, 26, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.fall-short-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.02rem;
}

.fall-short-list p {
  margin: 0;
  color: rgba(13, 29, 26, 0.72);
  line-height: 1.58;
}

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

.feature {
  min-height: 315px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 0.28s var(--ease), background 0.28s var(--ease);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.feature h3 {
  color: var(--white);
}

.solution-media {
  margin-top: 34px;
  display: grid;
  justify-content: center;
}

.solution-compare {
  margin-top: 34px;
}

.compare-board {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 18px;
  align-items: start;
}

.compare-figure {
  justify-self: start;
}

.compare-section .insert-figure {
  width: 100%;
  max-width: 560px;
  border: 1px solid rgba(13, 29, 26, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(7, 29, 23, 0.1);
}

.compare-section .insert-figure figcaption {
  color: rgba(13, 29, 26, 0.76);
}

.compare-section .compare-col {
  border: 1px solid rgba(13, 29, 26, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(7, 29, 23, 0.1);
}

.compare-section .compare-col h3 {
  color: rgba(13, 29, 26, 0.92);
}

.compare-section .compare-sub {
  color: rgba(13, 29, 26, 0.72);
}

.compare-section .compare-col li {
  color: rgba(13, 29, 26, 0.76);
}

.compare-section .compare-col li::before {
  background: rgba(15, 51, 35, 0.56);
}

.compare-section .eps-col li::before {
  background: rgba(13, 29, 26, 0.26);
}

@media (max-width: 980px) {
  .compare-board {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compare-figure {
    max-width: 720px;
  }
}

.compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare-col {
  padding: clamp(20px, 3.2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
}

.compare-col h3 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.06;
}

.compare-sub {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.compare-col li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.35;
}

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(142, 230, 237, 0.65);
}

.eps-col li::before {
  background: rgba(255, 255, 255, 0.38);
}

.insert-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  width: min(520px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.insert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.insert-shot {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.insert-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insert-shot span {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(13, 29, 26, 0.76);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.insert-figure figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-step {
  min-height: 310px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
}

.process-step span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  letter-spacing: 0;
}

.subline {
  max-width: 760px;
  margin-top: 12px;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 70px;
}

.story-long {
  align-items: start;
}

.story-visual {
  display: grid;
  min-height: 520px;
  place-items: start;
}

.story-photos {
  width: 100%;
  display: grid;
  gap: 12px;
}

.story-photos img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(13, 29, 26, 0.12);
  box-shadow: 0 22px 70px rgba(7, 29, 23, 0.12);
  object-fit: cover;
  max-height: 320px;
}

.story-headline {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  line-height: 1.04;
}

.story-headline span {
  display: block;
}

.story-line2 {
  margin-top: 12px;
  color: var(--green-dark);
}

.diagram-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  width: min(720px, 100%);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.diagram-figure img {
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.diagram-figure figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.apps-block {
  margin-top: 44px;
}

.apps-head h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.apps-head p {
  margin: 0 0 18px;
  max-width: 720px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin-inline: auto;
}

.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  transition: transform 0.28s var(--ease);
  text-align: center;
}

.app-card:hover {
  transform: translateY(-6px);
}

.app-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #fff;
}

.app-card span {
  display: block;
  padding: 16px 16px;
  color: var(--green-dark);
  font-weight: 900;
}

.story-endorse {
  margin-top: 18px;
  padding: 32px;
  max-width: 460px;
  margin-inline: auto;
  text-align: center;
  border: 1px solid rgba(13, 29, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(7, 29, 23, 0.08);
}

.story-endorse h3 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.endorse-sub {
  margin-top: 22px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.story-endorse .logo-row img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.05);
}

.story-endorse .logo-row {
  justify-content: center;
}

.contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-notes span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.contact-direct {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.contact-direct a {
  color: rgba(142, 230, 237, 0.9);
  font-weight: 900;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.story-signature {
  margin-top: 26px;
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 29, 26, 0.1);
}

.story-signature strong {
  font-size: 1.05rem;
  color: var(--green-dark);
}

.story-signature span {
  color: rgba(13, 29, 26, 0.62);
  font-weight: 700;
}

.petri {
  position: relative;
  width: min(80vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(36, 95, 53, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 28%, #e5f2ec 29% 58%, #cce9e8 59% 100%);
  box-shadow: var(--shadow);
  animation: float-up 5.5s ease-in-out infinite;
}

.petri span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 42%;
  background: linear-gradient(to top, transparent, var(--green));
  transform-origin: bottom;
}

.petri span:nth-child(1) { transform: translate(-50%, -100%) rotate(24deg); }
.petri span:nth-child(2) { transform: translate(-50%, -100%) rotate(96deg); }
.petri span:nth-child(3) { transform: translate(-50%, -100%) rotate(188deg); }
.petri span:nth-child(4) { transform: translate(-50%, -100%) rotate(284deg); }

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.story-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--paper);
  font-weight: 800;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--white);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(142, 230, 237, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Only apply "hidden until revealed" when JS is active, so the site never renders blank. */
html.has-reveal .reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.38s; }

@keyframes slide-down {
  from { opacity: 0; transform: translate(-50%, -16px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes float-particle {
  0%, 100% { opacity: var(--opacity, 0.18); transform: translate(0) rotate(0); }
  30% { transform: translate(16px, -24px) rotate(45deg); }
  55% { opacity: calc(var(--opacity, 0.18) * 1.8); transform: translate(-10px, -42px) rotate(90deg); }
  78% { transform: translate(18px, -18px) rotate(135deg); }
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  35% { transform: translateY(-18px) rotate(1deg); }
  68% { transform: translateY(-9px) rotate(-0.5deg); }
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.56; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counter-orbit {
  from { rotate: 0deg; }
  to { rotate: -360deg; }
}

@keyframes root-sway {
  0%, 100% { opacity: 0.42; height: 110px; }
  50% { opacity: 0.82; height: 136px; }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shimmer {
  0%, 100% { filter: saturate(1) brightness(1); }
  50% { filter: saturate(1.15) brightness(1.03); }
}

@keyframes cursor-blob {
  0%, 100% { border-radius: 46% 54% 56% 44% / 44% 46% 54% 56%; }
  33% { border-radius: 52% 48% 45% 55% / 54% 42% 58% 46%; }
  66% { border-radius: 45% 55% 52% 48% / 48% 58% 42% 52%; }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--green-dark);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 15px;
  }

  .hero-grid,
  .split,
  .story-layout,
  .contact-shell,
  .statement-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 48px;
    gap: 92px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
  }

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

  .fall-short-list {
    grid-template-columns: 1fr;
  }

  .solution-media {
    justify-content: center;
  }

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

  .compare-cols {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section,
  .hero {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 118px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.4vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-title {
    font-size: 1.05em;
    line-height: 0.95;
  }

  .hero-subtitle {
    margin-top: 12px;
    font-size: 0.78em;
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-stage {
    min-height: 370px;
  }

  .orbit span {
    display: none;
  }

  .process-line,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .slide-arrow {
    width: 2px;
    height: 52px;
    justify-self: center;
  }

  .slide-arrow::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%) rotate(135deg);
  }

  .statement-card,
  .feature,
  .process-step {
    min-height: auto;
  }

  .ticker-track {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.site-footer {
  padding: 56px max(24px, calc((100vw - 1160px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(9, 51, 37, 0.96), rgba(5, 29, 23, 0.98));
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}

.footer-mark {
  width: 100%;
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.28));
}

.footer-meta p {
  margin: 0;
}

.footer-meta p + p {
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: rgba(142, 230, 237, 0.9);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
