:root {
  --ink: #f7fbf9;
  --muted: #aebfba;
  --surface: rgba(11, 35, 29, 0.78);
  --surface-strong: #0d2a23;
  --line: rgba(255, 255, 255, 0.11);
  --green: #66f447;
  --green-dark: #0f9f54;
  --green-soft: #b9ffa7;
  --gold: #f5c55b;
  --gold-soft: #ffe6a8;
  --navy: #06110f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 6%, rgba(37, 218, 80, 0.17), transparent 30%),
    radial-gradient(circle at 15% 38%, rgba(245, 197, 91, 0.08), transparent 28%),
    linear-gradient(155deg, #071512 0%, #071a17 46%, #04100e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

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

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.page-glow {
  position: fixed;
  z-index: -2;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.2;
}

.page-glow--one {
  top: -180px;
  right: -120px;
  background: #24e85f;
}

.page-glow--two {
  bottom: 5%;
  left: -240px;
  background: #e5aa31;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 18, 15, 0.72);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
}

.brand__mark svg {
  width: 100%;
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-meta strong {
  color: var(--ink);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(102, 244, 71, 0.1), 0 0 18px rgba(102, 244, 71, 0.8);
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding-top: 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(46px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(102, 244, 71, 0.25);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green-soft);
  background: rgba(102, 244, 71, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow--soft {
  margin-bottom: 13px;
  padding: 0;
  border: 0;
  background: transparent;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-soft) 0%, var(--gold) 42%, var(--green) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
.copy-button:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(245, 197, 91, 0.7);
  outline-offset: 4px;
}

.button--primary {
  color: #06110d;
  background: linear-gradient(120deg, var(--green) 0%, #d8ff63 100%);
  box-shadow: 0 12px 36px rgba(67, 222, 77, 0.22);
}

.button--primary:hover {
  box-shadow: 0 16px 44px rgba(67, 222, 77, 0.32);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.code-card {
  display: flex;
  max-width: 520px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(245, 197, 91, 0.24);
  border-radius: 18px;
  padding: 16px 17px 16px 20px;
  background: linear-gradient(110deg, rgba(245, 197, 91, 0.11), rgba(13, 42, 35, 0.62));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.code-card__label {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.code-card strong {
  color: var(--gold-soft);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
}

.copy-button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.11);
}

.copy-button svg {
  width: 18px;
}

.micro-note {
  max-width: 580px;
  margin: 14px 0 0;
  color: #83948f;
  font-size: 0.75rem;
}

.hero__visual {
  position: relative;
  margin: 0;
}

.hero__image {
  position: relative;
  isolation: isolate;
}

.hero__image::before {
  position: absolute;
  inset: 10% -8% -8% 10%;
  z-index: -2;
  content: "";
  border-radius: 50%;
  background: rgba(51, 228, 76, 0.18);
  filter: blur(60px);
}

.hero__image > img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(245, 197, 91, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.025);
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(245, 197, 91, 0.28);
  border-radius: 50%;
}

.visual-orbit--one {
  inset: -7% -8% 4% 4%;
  transform: rotate(14deg);
}

.visual-orbit--two {
  inset: 3% -14% -6% -4%;
  border-color: rgba(102, 244, 71, 0.22);
  transform: rotate(-11deg);
}

.hero__visual figcaption {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 10px 13px;
  background: rgba(7, 25, 20, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  transform: translate(-50%, 50%);
}

.figcaption__icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #07130f;
  background: var(--green);
  font-weight: 900;
}

.hero__visual figcaption strong,
.hero__visual figcaption small {
  display: block;
}

.hero__visual figcaption strong {
  font-size: 0.8rem;
}

.hero__visual figcaption small {
  color: var(--muted);
  font-size: 0.66rem;
  white-space: nowrap;
}

.quick-facts {
  position: relative;
  padding: 0 0 28px;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(12, 35, 30, 0.7);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.quick-facts article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}

.quick-facts article + article {
  border-left: 1px solid var(--line);
}

.quick-facts strong,
.quick-facts small {
  display: block;
}

.quick-facts strong {
  margin-bottom: 2px;
  color: var(--gold-soft);
  font-size: 1rem;
}

.quick-facts small {
  color: var(--muted);
  font-size: 0.76rem;
}

.fact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--green-soft);
  background: rgba(102, 244, 71, 0.1);
  font-weight: 900;
}

.claim-section {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 56px;
}

.section-heading h2,
.support-callout h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-heading p {
  margin-bottom: 8px;
  color: var(--muted);
}

.claim-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(44px, 7vw, 90px);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(102, 244, 71, 0.22);
  border-radius: 14px;
  color: var(--green-soft);
  background: rgba(102, 244, 71, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step-list h3 {
  margin-bottom: 8px;
  font-size: 1.07rem;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.step-list p strong {
  color: var(--gold-soft);
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.phone-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(11, 35, 29, 0.75));
  box-shadow: var(--shadow);
}

.phone-card--offset {
  margin-top: 74px;
}

.phone-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 14px;
}

.phone-card__top span {
  border-radius: 999px;
  padding: 5px 9px;
  color: #07130f;
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card__top small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-card img {
  width: 100%;
  border-radius: 18px;
  background: #0d2e40;
}

.support-callout {
  padding-top: 58px;
}

.support-callout__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 91, 0.25);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 50px);
  background:
    radial-gradient(circle at 88% 18%, rgba(102, 244, 71, 0.13), transparent 30%),
    linear-gradient(120deg, rgba(245, 197, 91, 0.1), rgba(12, 42, 34, 0.9));
  box-shadow: var(--shadow);
}

.support-callout__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 2rem;
}

.support-callout h2 {
  max-width: 780px;
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.support-callout p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  color: #7f918b;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin-bottom: 0;
}

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  transform: translateY(20px);
  border: 1px solid rgba(102, 244, 71, 0.28);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--green-soft);
  background: rgba(6, 24, 19, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (max-width: 980px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

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

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(680px, 92%);
    margin-inline: auto;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr;
  }

  .quick-facts article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .claim-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .step-list {
    max-width: 720px;
  }

  .support-callout__inner {
    grid-template-columns: auto 1fr;
  }

  .support-callout .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  body {
    padding-bottom: 82px;
  }

  .section {
    padding: 66px 0;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav-meta {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero__grid {
    gap: 54px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .code-card {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
  }

  .visual-orbit {
    display: none;
  }

  .hero__image > img {
    border-radius: 22px;
  }

  .quick-facts article {
    padding: 20px;
  }

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

  .phone-gallery {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .phone-card,
  .phone-card--offset {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .support-callout__inner {
    grid-template-columns: 1fr;
  }

  .support-callout__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.55rem;
  }

  .support-callout .button {
    grid-column: auto;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 10px 10px 10px 17px;
    background: rgba(6, 23, 18, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
  }

  .mobile-cta small,
  .mobile-cta strong {
    display: block;
  }

  .mobile-cta small {
    color: var(--muted);
    font-size: 0.65rem;
  }

  .mobile-cta strong {
    color: var(--gold-soft);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .mobile-cta .button {
    min-height: 48px;
    padding: 0 17px;
    font-size: 0.86rem;
  }

  .toast {
    right: 16px;
    bottom: 94px;
    left: 16px;
    text-align: center;
  }
}

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

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

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