:root {
  --bg: #0b0e11;
  --bg-2: #1e2329;
  --bg-3: #2b3139;
  --gold: #f0b90b;
  --gold-2: #fcd535;
  --green: #02c076;
  --red: #f6465d;
  --text: #eaecef;
  --muted: #848e9c;
  --border: #2b3139;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --gold-shadow: 0 16px 44px rgba(240, 185, 11, 0.22);
  --radius: 12px;
  --radius-sm: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.03), transparent 480px),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

::selection {
  background: rgba(240, 185, 11, 0.35);
  color: var(--text);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-pad {
  padding: 150px 0 110px;
}

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

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent),
    #0d1116;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(43, 49, 57, 0.76);
  background: rgba(11, 14, 17, 0.72);
  backdrop-filter: blur(20px);
}

.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(240, 185, 11, 0.38);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(240, 185, 11, 0.16), rgba(240, 185, 11, 0.04));
  box-shadow: 0 0 26px rgba(240, 185, 11, 0.16);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--text);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  --btn-bg: transparent;
  --btn-color: var(--text);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:focus-visible,
.faq-item button:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(240, 185, 11, 0.42);
  outline-offset: 3px;
}

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--gold), var(--gold-2));
  --btn-color: #0b0e11;
  --btn-border: rgba(252, 213, 53, 0.85);
  box-shadow: var(--gold-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 54px rgba(240, 185, 11, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  --btn-color: var(--gold);
  --btn-border: rgba(240, 185, 11, 0.55);
  background: rgba(240, 185, 11, 0.04);
  box-shadow: 0 0 26px rgba(240, 185, 11, 0.08);
}

.btn-secondary:hover {
  background: rgba(240, 185, 11, 0.09);
  border-color: rgba(252, 213, 53, 0.88);
  box-shadow: 0 16px 42px rgba(240, 185, 11, 0.16);
}

.btn-dark {
  --btn-bg: #0b0e11;
  --btn-color: var(--gold-2);
  --btn-border: rgba(11, 14, 17, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.btn-sm {
  min-height: 42px;
  padding: 12px 18px;
  font-size: 12px;
}

.btn-lg {
  min-height: 58px;
  padding: 17px 28px;
}

.btn-xl {
  width: 100%;
  min-height: 66px;
  padding: 20px 32px;
  font-size: 15px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(43, 49, 57, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 49, 57, 0.22) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(240, 185, 11, 0.08), transparent 38%),
    linear-gradient(245deg, rgba(2, 192, 118, 0.08), transparent 44%);
  opacity: 0.92;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 76px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(240, 185, 11, 0.35);
  border-radius: 999px;
  background: rgba(240, 185, 11, 0.08);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(240, 185, 11, 0.11);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(2, 192, 118, 0.8);
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.mini-stats,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mini-stats span,
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mini-stats span::before,
.trust-row span::before,
.included-list li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b0e11;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 18px rgba(240, 185, 11, 0.2);
}

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

.gold-orbit {
  position: absolute;
  width: min(420px, 84vw);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 185, 11, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(240, 185, 11, 0.025),
    0 0 120px rgba(240, 185, 11, 0.18);
  animation: pulse-ring 4.6s ease-in-out infinite;
}

.phone-mockup {
  width: min(312px, 74vw);
  height: 628px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(234, 236, 239, 0.14);
  border-radius: 42px;
  background: linear-gradient(145deg, #090b0e, #1e2329 58%, #090b0e);
  padding: 14px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(240, 185, 11, 0.22);
  transform: rotate(2.5deg);
  animation: float-phone 5.2s ease-in-out infinite;
}

.phone-speaker {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 84px;
  height: 7px;
  border-radius: 999px;
  background: #07090c;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(43, 49, 57, 0.9);
  background:
    linear-gradient(rgba(43, 49, 57, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 49, 57, 0.2) 1px, transparent 1px),
    #0b0e11;
  background-size: 38px 38px;
  padding: 44px 20px 22px;
}

.app-topbar,
.app-hero-card,
.number-grid,
.app-list {
  position: relative;
  z-index: 1;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(2, 192, 118, 0.12);
  color: var(--green);
  font-size: 10px;
  text-transform: uppercase;
}

.app-hero-card {
  min-height: 120px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(240, 185, 11, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(240, 185, 11, 0.18), rgba(43, 49, 57, 0.5));
}

.app-hero-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.app-hero-card strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.number-grid span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b0e11;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.app-button {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b0e11;
  font-weight: 800;
  text-transform: uppercase;
}

.app-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.app-list span {
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(30, 35, 41, 0.82);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 158px;
  padding: 14px;
  border: 1px solid rgba(240, 185, 11, 0.28);
  border-radius: var(--radius);
  background: rgba(30, 35, 41, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-card strong {
  color: var(--gold-2);
  font-size: 18px;
}

.card-top {
  top: 118px;
  left: 0;
}

.card-bottom {
  right: 4px;
  bottom: 115px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cards,
.feature-grid,
.steps,
.audience-list {
  display: grid;
  gap: 18px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.resource-card,
.step-card,
.audience-list article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 35, 41, 0.94), rgba(18, 22, 28, 0.94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.resource-card:hover,
.step-card:hover,
.audience-list article:hover {
  border-color: rgba(240, 185, 11, 0.35);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.feature-card {
  min-height: 250px;
  padding: 30px;
}

.feature-card p,
.resource-card p,
.step-card p,
.showcase-copy p,
.guarantee-copy p,
.footer-desc,
.final-cta p {
  color: var(--muted);
}

.icon-box,
.small-icon {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--gold);
  border: 1px solid rgba(240, 185, 11, 0.25);
  background: rgba(240, 185, 11, 0.08);
}

.icon-box {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
}

.icon-box svg,
.small-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.55), transparent);
}

.step-card {
  min-height: 238px;
  padding: 28px;
  position: relative;
}

.step-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  min-height: 182px;
  padding: 24px;
}

.small-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.small-icon svg {
  width: 21px;
  height: 21px;
}

.showcase {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 62px;
  align-items: center;
}

.showcase-copy p {
  margin: 24px 0 28px;
  font-size: 1.05rem;
}

.print-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.print-list span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.device-stage {
  position: relative;
  min-height: 470px;
}

.laptop {
  position: relative;
  z-index: 2;
}

.laptop-screen {
  overflow: hidden;
  border: 10px solid #05070a;
  border-radius: 18px;
  background: #05070a;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(240, 185, 11, 0.12);
}

.laptop-screen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.laptop-base {
  width: 76%;
  height: 22px;
  margin: 0 auto;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #2b3139, #12161c);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.screen-stack {
  position: absolute;
  right: -14px;
  bottom: 8px;
  z-index: 3;
  display: grid;
  gap: 12px;
}

.mini-screen {
  width: 160px;
  height: 92px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 35, 41, 0.9);
  box-shadow: var(--shadow);
}

.mini-screen span,
.mini-screen strong {
  display: block;
  border-radius: 999px;
  background: var(--bg-3);
}

.mini-screen span {
  width: 64px;
  height: 9px;
  margin-bottom: 18px;
}

.mini-screen strong {
  width: 105px;
  height: 14px;
}

.mini-screen.active {
  border-color: rgba(240, 185, 11, 0.42);
}

.mini-screen.active strong {
  background: var(--gold);
}

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

.audience-list article {
  padding: 24px;
}

.audience-list p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
}

.offer-section {
  background:
    linear-gradient(180deg, rgba(240, 185, 11, 0.04), transparent 70%),
    var(--bg);
}

.offer-card {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(240, 185, 11, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(30, 35, 41, 0.98), rgba(11, 14, 17, 0.98)),
    var(--bg-2);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    0 0 84px rgba(240, 185, 11, 0.18);
  text-align: center;
}

.offer-tag {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border: 1px solid rgba(246, 70, 93, 0.35);
  border-radius: 999px;
  background: rgba(246, 70, 93, 0.1);
  color: #ff7c8d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-wrap {
  margin: 28px 0 10px;
}

.old-price {
  display: block;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.price-wrap strong {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
}

.offer-subtext {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.included-list {
  max-width: 500px;
  display: grid;
  gap: 13px;
  margin: 0 auto 32px;
  padding: 0;
  text-align: left;
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.offer-card .trust-row {
  justify-content: center;
  margin-top: 18px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.guarantee-seal {
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(2, 192, 118, 0.55);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(2, 192, 118, 0.24), rgba(2, 192, 118, 0.05));
  color: var(--green);
  text-align: center;
  box-shadow: 0 0 72px rgba(2, 192, 118, 0.18);
}

.guarantee-seal strong {
  display: block;
  font-size: 88px;
  line-height: 0.9;
}

.guarantee-seal span {
  display: block;
  max-width: 120px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.guarantee-copy {
  max-width: 720px;
}

.guarantee-copy p:last-child {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.faq-shell {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 35, 41, 0.9);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-item button span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(240, 185, 11, 0.95), rgba(252, 213, 53, 0.98));
  color: #0b0e11;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  color: #0b0e11;
}

.final-cta p {
  max-width: 620px;
  margin: 18px 0 28px;
  color: rgba(11, 14, 17, 0.78);
  font-size: 1.08rem;
  font-weight: 600;
}

.final-cta .btn {
  max-width: 430px;
}

.site-footer {
  padding: 72px 0 34px;
  border-top: 1px solid var(--border);
  background: #0b0e11;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-desc {
  max-width: 330px;
  margin-bottom: 0;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-grid a:not(.brand):hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p:last-child {
  max-width: 520px;
  text-align: right;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-phone {
  0%,
  100% {
    transform: translateY(0) rotate(2.5deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.62;
  }
}

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

  .section-pad {
    padding: 132px 0 88px;
  }

  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(11, 14, 17, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu a {
    padding: 15px 14px;
    border-radius: var(--radius-sm);
  }

  .nav-menu a:hover {
    background: var(--bg-2);
  }

  .nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .showcase-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .badge,
  .hero-actions,
  .mini-stats {
    justify-content: center;
    margin-inline: auto;
  }

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

  .three-col,
  .steps,
  .feature-grid,
  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps::before {
    display: none;
  }

  .showcase-grid,
  .guarantee-grid {
    gap: 42px;
  }

  .showcase-copy,
  .guarantee-copy {
    text-align: center;
    margin-inline: auto;
  }

  .print-list {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    inset: 68px 14px auto;
  }

  .section {
    padding: 72px 0;
  }

  .section-pad {
    padding: 116px 0 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4rem);
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mini-stats {
    display: grid;
    justify-items: center;
  }

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

  .phone-mockup {
    width: min(288px, 82vw);
    height: 570px;
    transform: none;
  }

  .gold-orbit {
    width: min(340px, 88vw);
  }

  .floating-card {
    width: 138px;
    padding: 12px;
  }

  .card-top {
    top: 44px;
    left: -2px;
  }

  .card-bottom {
    right: -4px;
    bottom: 52px;
  }

  .three-col,
  .steps,
  .feature-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .resource-card,
  .step-card,
  .audience-list article {
    min-height: auto;
  }

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

  .device-stage {
    min-height: 330px;
  }

  .laptop-screen {
    border-width: 7px;
    border-radius: 14px;
  }

  .screen-stack {
    display: none;
  }

  .guarantee-seal {
    width: 190px;
  }

  .offer-card {
    text-align: left;
  }

  .offer-tag,
  .included-list {
    margin-inline: 0;
  }

  .offer-card .trust-row {
    justify-content: flex-start;
  }

  .trust-row {
    display: grid;
  }

  .btn-xl {
    font-size: 13px;
  }

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

@media (max-width: 420px) {
  .badge {
    font-size: 11px;
  }

  .phone-mockup {
    width: min(264px, 84vw);
    height: 530px;
    padding: 12px;
  }

  .phone-screen {
    padding: 42px 16px 18px;
  }

  .number-grid {
    gap: 9px;
  }

  .app-list span {
    height: 38px;
  }
}

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

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