:root {
  --gold: #f4ad22;
  --gold-2: #ffce54;
  --gold-3: #d98a06;
  --ink: #151515;
  --ink-2: #22242a;
  --white: #ffffff;
  --cream: #fff4d2;
  --muted: rgba(255, 255, 255, 0.72);
  --dark-muted: rgba(21, 21, 21, 0.68);
  --line: rgba(21, 21, 21, 0.13);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.24);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 226, 126, 0.9), transparent 28rem),
    linear-gradient(135deg, #f0a012 0%, #f7b730 42%, #e2950e 100%);
  font-family: Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.18) .8px, transparent .8px);
  background-size: 12px 12px, 18px 18px;
  background-position: 0 0, 7px 5px;
  mask-image: linear-gradient(90deg, #000 0 18%, transparent 36% 64%, #000 82% 100%);
}

.cursor-glow {
  position: fixed;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 420px;
  aspect-ratio: 1;
  z-index: -2;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 62%);
  filter: blur(12px);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 20;
  transition: transform .35s ease, top .35s ease;
}

.site-header.is-scrolled .header-inner {
  background: rgba(20, 20, 20, .82);
  color: var(--white);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(90, 46, 0, .12);
  backdrop-filter: blur(16px);
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #111, #303030);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 12px 24px rgba(0,0,0,.22);
  transform: skew(-8deg);
}

.brand-play {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--white);
  margin-left: 4px;
  transform: skew(8deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.brand-text {
  display: grid;
  line-height: .9;
  font-family: Inter, Montserrat, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.brand-text span,
.brand-text strong {
  color: currentColor;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.brand-text strong {
  color: var(--ink);
  font-weight: 900;
}

.site-header.is-scrolled .brand-text strong {
  color: var(--gold);
}
.site-header.is-scrolled .brand-text strong {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav a {
  position: relative;
  opacity: .78;
  transition: opacity .25s ease, transform .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled .header-cta {
  color: var(--ink);
  background: var(--gold);
}

.header-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 34px rgba(0, 0, 0, .24);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform .25s ease, top .25s ease;
}

.burger span:first-child { top: 18px; }
.burger span:last-child { top: 28px; }
.burger[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 144px;
  padding-bottom: 46px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(255,255,255,.16), transparent 38%),
    radial-gradient(circle at 77% 38%, rgba(0,0,0,.18), transparent 26rem),
    radial-gradient(circle at 18% 80%, rgba(255,255,255,.25), transparent 24rem);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.hero-bg span {
  position: absolute;
  user-select: none;
  pointer-events: none;
}

.hero-ball--one {
  top: 9%;
  left: 49%;
  font-size: 28px;
  animation: floatBall 5s ease-in-out infinite;
  width: 55px;
}

.hero-ball--two {
  right: 7%;
  top: 30%;
  color: rgba(255,255,255,.55);
  font-size: 64px;
  filter: blur(.5px);
  animation: pulseDot 3.8s ease-in-out infinite;
}

.hero-ball--three {
  left: 6%;
  bottom: 16%;
  color: rgba(0,0,0,.14);
  font-size: 82px;
  animation: spinSlow 12s linear infinite;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(21,21,21,.76);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.hero-title {
  max-width: 760px;
  margin: 22px 0 0;
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: .96;
  letter-spacing: -.032em;
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(255,255,255,.2), 10px 14px 36px rgba(65, 39, 0, .24);
}

.hero-title span {
  display: block;
  color: var(--white);
  -webkit-text-stroke: clamp(1px, .15vw, 2px) var(--ink);
  text-shadow: 5px 6px 0 var(--ink), 12px 16px 32px rgba(0,0,0,.18);
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--dark-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.72;
  font-weight: 650;
}

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

.btn {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid rgba(21, 21, 21, .14);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,.34) 48%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.btn span,
.btn i {
  position: relative;
  z-index: 1;
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px);
}

.btn-dark {
  color: var(--gold);
  background: var(--ink);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 36px;
}

.hero-metrics div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.hero-metrics div:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 16px 36px rgba(94, 55, 0, .14), inset 0 1px 0 rgba(255,255,255,.22);
}

.hero-metrics strong {
  display: block;
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 9px;
  color: rgba(21,21,21,.65);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.logo-stage {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(100%, 520px);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 217, 92, .92), rgba(239, 158, 18, .92));
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-2deg);
  isolation: isolate;
}

.logo-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(21,21,21,.12);
  pointer-events: none;
}

.logo-stage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: scale(1.012);
}

.logo-stage__shine {
  position: absolute;
  inset: -50% auto auto -40%;
  width: 42%;
  height: 220%;
  z-index: 3;
  opacity: .42;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: rotate(18deg);
  animation: shine 4.4s ease-in-out infinite;
}

.running-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  height: 11px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.running-line span {
  border-radius: 999px;
  background: rgba(21,21,21,.82);
  overflow: hidden;
}

.running-line span::after {
  content: "";
  display: block;
  width: 48%;
  height: 100%;
  background: var(--white);
  border-radius: inherit;
  animation: lineRunner 1.55s ease-in-out infinite;
}

.running-line span:nth-child(2)::after { animation-delay: .18s; }
.running-line span:nth-child(3)::after { animation-delay: .36s; }

.floating-ticket {
  position: absolute;
  z-index: 5;
  width: 220px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(21,21,21,.95), rgba(42,42,42,.88));
  box-shadow: 0 18px 44px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.floating-ticket span,
.floating-ticket small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.floating-ticket strong {
  display: block;
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.1;
}

.ticket-one {
  top: 18px;
  left: 0;
  animation: floatTicket 5.5s ease-in-out infinite;
}

.ticket-two {
  right: -12px;
  bottom: 78px;
  animation: floatTicket 6.2s ease-in-out infinite reverse;
}

.scroll-hint {
  position: relative;
  margin-top: 26px;
}

.scroll-hint a {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(21,21,21,.64);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.scroll-hint span {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(21,21,21,.18);
}

.scroll-hint span::before {
  content: "↓";
  color: var(--ink);
  animation: down 1.5s ease-in-out infinite;
}

.marquee-section {
  padding: 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  padding: 18px 0;
  color: var(--gold);
  background: var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: marquee 23s linear infinite;
}

.marquee span {
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.035em;
}

.marquee i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
}

.two-col,
.inside-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-head h2,
.inside-content h2,
.proof h2,
.cta-panel h2 {
  margin: 14px 0 0;
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.026em;
  text-transform: uppercase;
}

.section-head.centered {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.centered .section-kicker {
  justify-content: center;
}

.section-head.centered .section-kicker::before {
  display: none;
}

.section-subtitle {
  display: block;
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(21,21,21,.74);
  font-weight: 750;
  line-height: 1.65;
}

.about-card,
.proof-wrap,
.cta-panel,
.phone-mockup,
.accordion,
.benefit-card,
.step {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.18);
  box-shadow: 0 18px 52px rgba(94, 55, 0, .14), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.about-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, background .3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.26);
  box-shadow: 0 24px 60px rgba(94, 55, 0, .18);
}

.about-card p,
.proof-wrap p,
.cta-panel p {
  margin: 0;
  color: rgba(21,21,21,.76);
  font-size: 18px;
  line-height: 1.74;
  font-weight: 650;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-points span,
.proof-items span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.about-points span:hover,
.proof-items span:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  height: 100%;
  min-height: 300px;
  padding: 26px 26px 28px;
  border-radius: 30px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: -45% -30% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(21,21,21,.16);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.benefit-card:hover {
  border-color: rgba(21,21,21,.22);
  background: rgba(255,255,255,.32);
  box-shadow: 0 28px 70px rgba(94, 55, 0, .22);
}

.benefit-card:hover::before {
  transform: scale(1.5);
  opacity: .9;
}

.benefit-card:hover::after {
  opacity: .55;
  transform: scaleX(1);
}

.benefit-card:hover .card-index {
  color: rgba(21,21,21,.55);
  transform: translateX(4px);
}

.card-index {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(21,21,21,.35);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1;
  transition: color .3s ease, transform .3s ease;
}

.benefit-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(calc(1.15em * 2), auto) 1fr;
  gap: 14px;
  align-content: start;
  min-height: 0;
}

.benefit-card h3,
.feature-list h3,
.step h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.benefit-card h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.15em * 2);
  align-self: start;
}

.benefit-card p,
.feature-list p,
.step p,
.accordion-item p {
  margin: 0;
  color: rgba(21,21,21,.72);
  line-height: 1.66;
  font-weight: 680;
}

.feature-list p {
  margin-top: 12px;
}

.accordion-item p {
  margin-top: 12px;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.tilt-card.is-tilting,
.tilt-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, -2deg)) rotateY(var(--tilt-y, 2deg)) translateY(-8px);
}

.benefit-card.tilt-card:hover {
  box-shadow: 0 32px 72px rgba(94, 55, 0, .24);
}

.inside {
  overflow: hidden;
}

.inside::before {
  content: "";
  position: absolute;
  inset: 8% auto auto -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(12px);
}

.phone-mockup {
  width: min(100%, 390px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(145deg, #151515, #303030);
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
  transform: rotate(-3deg);
}

.phone-top {
  width: 108px;
  height: 8px;
  margin: 12px auto 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}

.phone-screen {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.22), transparent 13rem),
    linear-gradient(160deg, var(--gold), #ec9813);
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: "LINE\A RUNNER";
  white-space: pre;
  position: absolute;
  left: 20px;
  top: 30px;
  color: rgba(21,21,21,.1);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 82px;
  line-height: .82;
  letter-spacing: -.05em;
  transform: skew(-6deg);
}

.chat-row {
  position: relative;
  width: min(100%, 290px);
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 12px 28px rgba(80,45,0,.13);
  font-weight: 850;
  
}
.iconBox{
  display: flex !important;
  gap: 5px;
  align-items: center;
}
.chat-row--brand {
  color: var(--white);
  background: var(--ink);
}

.chat-row strong,
.chat-row span {
  display: block;
}

.chat-row strong {
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: .08em;
}

.phone-btn {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 18px;
  color: var(--gold);
  background: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.inside-content {
  align-self: center;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(21,21,21,.1);
  background: rgba(255,255,255,.17);
  transition: transform .25s ease, background .25s ease;
}

.feature-list > div:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.28);
}

.feature-list > div > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: var(--ink);
  font-weight: 950;
}

.proof-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(21,21,21,.96), rgba(34,34,34,.92)),
    rgba(255,255,255,.18);
  color: var(--white);
  overflow: hidden;
}

.proof-wrap::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .14;
}

.proof-wrap .section-kicker,
.proof-wrap p {
  color: rgba(255,255,255,.72);
}

.proof-wrap .section-kicker::before {
  background: var(--gold);
}

.proof-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-items span {
  justify-content: center;
  min-height: 74px;
  color: var(--ink);
  background: var(--gold);
  text-align: center;
}

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

.step {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(calc(1.15em * 2), auto) 1fr;
  gap: 0;
  height: 100%;
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(21,21,21,.18);
  background: rgba(255,255,255,.28);
  box-shadow: 0 24px 60px rgba(94, 55, 0, .18);
}

.step::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 14px 0 0 var(--gold);
}

.step span {
  display: block;
  margin-bottom: 20px;
  color: rgba(21,21,21,.38);
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 52px;
  line-height: 1;
}

.step h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(1.15em * 2);
}

.step p {
  margin-top: 14px;
}

.cta-section {
  padding-top: 20px;
}

.cta-panel {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(28px, 6vw, 70px);
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,.28), transparent 18rem),
    linear-gradient(145deg, #f5b027, #e7950f);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-panel::before {
  inset: 16px;
  border: 1px solid rgba(21,21,21,.13);
  border-radius: 34px;
}

.cta-panel::after {
  right: -80px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(21,21,21,.13);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-logo {
  width: min(100%, 430px);
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
}

.cta-panel p {
  max-width: 610px;
  margin: 18px auto 28px;
}

.accordion {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 30px;
}

.accordion-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: start;
  width: 100%;
  padding: 20px;
  border: 0;
  border-radius: 22px;
  text-align: left;
  color: var(--ink);
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.accordion-item:hover {
  background: rgba(255,255,255,.48);
  transform: translateX(4px);
}

.accordion-item span {
  font-size: 18px;
  font-weight: 950;
}

.accordion-item i {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
}

.accordion-item i::before,
.accordion-item i::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform .25s ease;
}

.accordion-item i::after {
  transform: rotate(90deg);
}

.accordion-item p {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .25s ease, margin-top .25s ease;
}

.accordion-item.is-open p {
  max-height: 160px;
  opacity: 1;
}

.accordion-item.is-open i::after {
  transform: rotate(0deg);
}

.footer {
  padding: 30px 0 38px;
  color: rgba(21,21,21,.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(21,21,21,.18);
}

.footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--delay, 0s), transform .7s ease var(--delay, 0s);
}

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

.reveal.is-visible.tilt-card:hover,
.reveal.is-visible.tilt-card.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x, -2deg)) rotateY(var(--tilt-y, 2deg)) translateY(-8px);
}

@keyframes shine {
  0%, 48% { transform: translateX(0) rotate(18deg); }
  75%, 100% { transform: translateX(420%) rotate(18deg); }
}

@keyframes lineRunner {
  0% { transform: translateX(-80%); }
  55%, 100% { transform: translateX(230%); }
}

@keyframes floatTicket {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(18px) rotate(-2deg); }
}

@keyframes floatBall {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(12px, 20px, 0) rotate(24deg); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(.9); opacity: .35; }
  50% { transform: scale(1.08); opacity: .72; }
}

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

@keyframes down {
  0%, 100% { transform: translateY(-4px); opacity: .55; }
  50% { transform: translateY(5px); opacity: 1; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .header-cta { display: none; }

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

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

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

  .logo-stage {
    left: 50%;
    right: auto;
    translate: -50% 0;
  }

  .ticket-one { left: max(0px, calc(50% - 330px)); }
  .ticket-two { right: max(0px, calc(50% - 340px)); }

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

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

  .burger { display: block; z-index: 25; }

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 104px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 28px;
    color: var(--white);
    background: rgba(21,21,21,.96);
    box-shadow: 0 30px 90px rgba(0,0,0,.36);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

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

  .nav a {
    padding: 18px;
    border-radius: 18px;
  }

  .nav a:hover {
    background: rgba(255,255,255,.08);
    transform: none;
  }

  .nav a::after { display: none; }

  .two-col,
  .inside-grid,
  .faq-grid,
  .proof-wrap {
    grid-template-columns: 1fr;
  }

  .section-head.centered {
    text-align: left;
    margin-inline: 0;
  }

  .section-head.centered .section-kicker {
    justify-content: flex-start;
  }

  .section-head.centered .section-kicker::before {
    display: block;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 66px;
    padding: 9px 10px 9px 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

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

  .hero {
    padding-top: 118px;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 68px);
  }

  .section-head h2,
  .inside-content h2,
  .proof h2,
  .cta-panel h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.06;
    letter-spacing: -.018em;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: auto;
  }

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

  .logo-stage {
    width: min(100%, 390px);
    border-radius: 30px;
  }

  .floating-ticket {
    width: 180px;
    padding: 14px;
    border-radius: 20px;
  }

  .floating-ticket strong {
    font-size: 16px;
  }

  .ticket-one {
    top: 0;
    left: 0;
  }

  .ticket-two {
    right: 0;
    bottom: 10px;
  }

  .scroll-hint {
    display: none;
  }

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

  .benefit-card {
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .benefit-card__body {
    grid-template-rows: minmax(calc(1.2em * 2), auto) 1fr;
    gap: 12px;
  }

  .benefit-card h3 {
    min-height: calc(1.2em * 2);
  }

  .phone-mockup {
    transform: none;
  }

  .phone-screen {
    min-height: 510px;
  }

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

  .proof-items {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    min-height: 360px;
    border-radius: 32px;
  }

  .accordion-item {
    padding: 18px;
  }

  .accordion-item span {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
.logoText {
    color: #fff;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow:
        5px 6px 0 var(--ink),
        12px 16px 32px rgba(0,0,0,.18);
        letter-spacing: 1px;
}

@media (max-width:768px){
    .logoText{
        -webkit-text-stroke:0;

        text-shadow:
            -1px -1px 0 var(--ink),
             1px -1px 0 var(--ink),
            -1px  1px 0 var(--ink),
             1px  1px 0 var(--ink),
             3px 4px 0 var(--ink);
    }
}
.iconImg{
  width: auto;
  height: 22px;
}

