:root {
  --bg: #080a0d;
  --bg-soft: #0d1116;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-border: rgba(255, 255, 255, 0.11);
  --text: #f4f0e7;
  --muted: #a8adb5;
  --lime: #c6ff4a;
  --lime-soft: rgba(198, 255, 74, 0.16);
  --gold: #d8b56e;
  --line: rgba(255, 255, 255, 0.12);
  --font-heading: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius-lg: 32px;
  --radius-md: 22px;
  --transition: 300ms cubic-bezier(.2,.8,.2,1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(198, 255, 74, 0.06), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(216, 181, 110, 0.07), transparent 30%),
    var(--bg);
  font-family: var(--font-body);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: #0a0d10;
  background: var(--lime);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198,255,74,.08), transparent 68%);
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 4vw, 70px);
  background: linear-gradient(to bottom, rgba(8,10,13,.88), transparent);
  backdrop-filter: blur(4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  transform: rotate(24deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  display: block;
  border-radius: 999px;
}

.brand-mark::before,
.brand-mark::after {
  left: 3px;
  width: 22px;
  height: 6px;
  border: 1px solid rgba(198,255,74,.72);
}

.brand-mark::before {
  top: 4px;
  transform: rotate(-32deg);
}

.brand-mark::after {
  bottom: 4px;
  transform: rotate(32deg);
}

.brand-mark span:first-child {
  top: 4px;
  left: 10px;
  width: 8px;
  height: 20px;
  border-left: 1px solid rgba(198,255,74,.5);
}

.brand-mark span:last-child {
  top: 3px;
  left: 13px;
  width: 2px;
  height: 22px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(198,255,74,.7);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand-text span {
  color: var(--lime);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #dfe4e8;
  transition: color var(--transition);
}

.header-contact svg {
  width: 18px;
  transition: transform var(--transition);
}

.header-contact:hover {
  color: var(--lime);
}

.header-contact:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px clamp(22px, 7vw, 120px) 110px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(900px, 100%);
}

.status-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  padding: 10px 14px;
  color: #dfe7cd;
  border: 1px solid rgba(198,255,74,.18);
  border-radius: 999px;
  background: rgba(198,255,74,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(198,255,74,.08), 0 0 15px rgba(198,255,74,.7);
  animation: pulse 2s infinite;
}

.eyebrow,
.section-heading p,
.offer-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.hero h1 {
  max-width: 1100px;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: clamp(52px, 10vw, 148px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .86;
  text-transform: lowercase;
  text-wrap: balance;
}

.hero h1 span {
  display: inline-block;
}

.hero h1 .accent {
  color: var(--lime);
  text-shadow: 0 0 58px rgba(198,255,74,.12);
}

.hero h1 .domain {
  position: relative;
  top: -.04em;
  margin-left: .06em;
  color: rgba(244,240,231,.42);
  font-size: .34em;
  letter-spacing: -.04em;
}

.hero-copy {
  max-width: 680px;
  margin-top: 36px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.primary-btn,
.secondary-btn {
  min-height: 62px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 9px 8px 26px;
  color: #0a0d10;
  background: var(--lime);
  font-weight: 700;
  box-shadow: 0 16px 60px rgba(198,255,74,.14);
}

.btn-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: #0a0d10;
  transition: transform var(--transition);
}

.btn-icon svg {
  width: 19px;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.primary-btn:hover .btn-icon {
  transform: rotate(-35deg);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  color: #dce0e3;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.035);
}

.secondary-btn svg {
  width: 18px;
}

.secondary-btn:hover {
  color: var(--lime);
  border-color: rgba(198,255,74,.35);
  background: rgba(198,255,74,.06);
  transform: translateY(-3px);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 66px;
}

.trust-row div {
  display: grid;
  gap: 5px;
}

.trust-row strong {
  color: #eceeea;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .12em;
}

.trust-row span {
  color: #737a82;
  font-size: 13px;
}

.trust-row i {
  width: 1px;
  height: 32px;
  background: var(--line);
}

.dna-scene {
  position: absolute;
  top: 50%;
  right: clamp(-220px, 2vw, 0px);
  width: min(42vw, 620px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  z-index: 1;
  opacity: .72;
  perspective: 1000px;
}

.dna-scene::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(198,255,74,.025);
}

.dna-ring,
.dna-line,
.dna-core {
  position: absolute;
  inset: 50%;
  transform-style: preserve-3d;
}

.dna-ring {
  width: 70%;
  height: 70%;
  border: 1px solid rgba(198,255,74,.25);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(198,255,74,.05);
}

.ring-one {
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(10deg);
  animation: spinOne 14s linear infinite;
}

.ring-two {
  width: 53%;
  height: 82%;
  border-color: rgba(216,181,110,.2);
  transform: translate(-50%, -50%) rotateY(62deg) rotateZ(36deg);
  animation: spinTwo 18s linear infinite reverse;
}

.ring-three {
  width: 88%;
  height: 40%;
  border-color: rgba(255,255,255,.1);
  transform: translate(-50%, -50%) rotateX(30deg) rotateY(46deg);
  animation: spinThree 23s linear infinite;
}

.dna-line {
  width: 2px;
  height: 60%;
  transform-origin: center;
  background: linear-gradient(transparent, rgba(198,255,74,.58), transparent);
  box-shadow: 0 0 20px rgba(198,255,74,.18);
}

.line-one {
  transform: translate(-50%, -50%) rotate(22deg);
}

.line-two {
  transform: translate(-50%, -50%) rotate(82deg);
  background: linear-gradient(transparent, rgba(216,181,110,.42), transparent);
}

.line-three {
  transform: translate(-50%, -50%) rotate(142deg);
  background: linear-gradient(transparent, rgba(255,255,255,.2), transparent);
}

.dna-core {
  width: 17%;
  height: 17%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 38% 35%, #efffcf 0%, var(--lime) 25%, rgba(198,255,74,.2) 54%, transparent 70%);
  box-shadow: 0 0 80px rgba(198,255,74,.32);
  animation: breathe 4s ease-in-out infinite;
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-one {
  top: 15%;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(198,255,74,.07);
}

.orb-two {
  right: 8%;
  bottom: 5%;
  width: 250px;
  height: 250px;
  background: rgba(216,181,110,.05);
}

.scroll-indicator {
  position: absolute;
  right: clamp(24px, 4vw, 68px);
  bottom: 40px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #717881;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-indicator i {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255,255,255,.36), transparent);
  overflow: hidden;
}

.scroll-indicator i::after {
  display: block;
  width: 1px;
  height: 28px;
  content: "";
  background: var(--lime);
  animation: scrollDrop 2s ease-in-out infinite;
}

.value-section {
  padding: 140px clamp(22px, 7vw, 120px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 880px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
  text-align: right;
}

.section-heading h2 span {
  color: #676d74;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,.05), transparent 55%),
    rgba(255,255,255,.025);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.value-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,255,74,.07), transparent 68%);
  transition: transform .5s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198,255,74,.24);
  background:
    linear-gradient(145deg, rgba(198,255,74,.055), transparent 58%),
    rgba(255,255,255,.03);
}

.value-card:hover::after {
  transform: scale(1.2);
}

.card-number {
  display: block;
  color: #596169;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .14em;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: 72px;
  border: 1px solid rgba(198,255,74,.2);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(198,255,74,.055);
}

.card-icon svg {
  width: 26px;
}

.value-card h3 {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: -.02em;
}

.value-card p {
  max-width: 360px;
  margin-top: 14px;
  color: #8e959d;
  line-height: 1.7;
}

.offer-section {
  padding: 40px clamp(22px, 7vw, 120px) 120px;
}

.offer-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(34px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(198,255,74,.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(198,255,74,.075), transparent 42%),
    linear-gradient(145deg, #10151a, #090c10);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}

.offer-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 80% 50%, black, transparent 62%);
}

.offer-glow {
  position: absolute;
  top: -220px;
  right: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,255,74,.12), transparent 65%);
}

.offer-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.offer-content h2 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}

.offer-content h2 span {
  color: var(--lime);
}

.offer-content > p:not(.offer-kicker) {
  max-width: 620px;
  margin-top: 28px;
  color: #9ca3aa;
  font-size: 18px;
  line-height: 1.75;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: #eef4e6;
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  border-bottom: 1px solid rgba(198,255,74,.28);
  padding-bottom: 10px;
  transition: color var(--transition), border-color var(--transition);
}

.email-link svg {
  width: 22px;
  transition: transform var(--transition);
}

.email-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.email-link:hover svg {
  transform: translateX(6px);
}

.offer-seal {
  position: relative;
  z-index: 2;
  width: 220px;
  min-width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(198,255,74,.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 12px rgba(198,255,74,.025),
    inset 0 0 0 13px rgba(198,255,74,.1),
    0 0 70px rgba(198,255,74,.05);
  animation: float 5s ease-in-out infinite;
}

.offer-seal::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px dashed rgba(198,255,74,.25);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.offer-seal span {
  color: #858d94;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
}

.offer-seal strong {
  display: block;
  margin: 8px 0;
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: -.06em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 4vw, 70px);
  color: #70777e;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  padding: 13px 18px;
  color: #0a0d10;
  border-radius: 999px;
  background: var(--lime);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 15px 50px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity var(--transition), transform var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.78); opacity: .55; }
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.13); }
}

@keyframes spinOne {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(370deg); }
}

@keyframes spinTwo {
  to { transform: translate(-50%, -50%) rotateY(62deg) rotateZ(396deg); }
}

@keyframes spinThree {
  to { transform: translate(-50%, -50%) rotateX(390deg) rotateY(406deg); }
}

@keyframes scrollDrop {
  0% { transform: translateY(-32px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(72px); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@media (max-width: 1100px) {
  .dna-scene {
    right: -220px;
    width: 620px;
    opacity: .38;
  }

  .hero-content {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 18px;
    text-align: left;
  }

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

  .value-card {
    min-height: auto;
  }

  .card-icon {
    margin-top: 46px;
  }

  .offer-seal {
    width: 180px;
    min-width: 180px;
  }
}

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

  .brand-text {
    font-size: 12px;
  }

  .header-contact {
    font-size: 0;
  }

  .header-contact svg {
    width: 22px;
  }

  .hero {
    align-items: flex-end;
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 80px);
  }

  .hero h1 .domain {
    display: block;
    top: auto;
    margin-top: .55em;
    margin-left: 0;
    font-size: .27em;
    letter-spacing: .08em;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: space-between;
  }

  .trust-row {
    gap: 18px;
    margin-top: 48px;
  }

  .trust-row i {
    display: none;
  }

  .trust-row span {
    font-size: 11px;
  }

  .dna-scene {
    top: 37%;
    right: -250px;
    width: 540px;
    opacity: .22;
  }

  .scroll-indicator {
    display: none;
  }

  .value-section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .value-card {
    padding: 28px;
  }

  .offer-section {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .offer-card {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 26px;
  }

  .offer-seal {
    align-self: flex-end;
    width: 132px;
    min-width: 132px;
  }

  .offer-seal strong {
    font-size: 29px;
  }

  .offer-content > p:not(.offer-kicker) {
    font-size: 16px;
  }

  .email-link {
    word-break: break-all;
  }

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

@media (max-width: 460px) {
  .status-pill {
    font-size: 9px;
    letter-spacing: .12em;
  }

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

  .trust-row strong {
    font-size: 10px;
  }

  .trust-row span {
    line-height: 1.35;
  }
}

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

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

  .cursor-glow {
    display: none;
  }
}
