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

:root {
  --bg: #050505;
  --card: #0f0f0f;
  --border: rgba(255, 255, 255, 0.06);
  --green: #39FF14;
  --green-glow: rgba(57, 255, 20, 0.28);
  --green-dim: rgba(57, 255, 20, 0.1);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  animation: pageReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── VIDEO BACKGROUND ── */
.vid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* gradient blur overlay at top of page */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.5) 60%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 10;
}

@media(max-width:768px) {
  body::before {
    height: 30px;
  }
}

/* ── PAGE LOAD REVEAL ── */
@keyframes pageReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* ── NO NAV — just a spacer ── */
.hero-spacer {
  height: 40px;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 60px 22px 0;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

@media(max-width:768px) {
  .hero {
    padding: 80px 20px 0;
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroReveal 0.6s 0.1s ease both;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.hero-badge .year {
  color: var(--green);
}

.hero-badge .lock {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

/* H1 — exact match: massive, bold, gradient white→faded */
.hero h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  background: linear-gradient(to bottom, #ffffff 30%, rgba(255, 255, 255, 0.52) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: heroReveal 0.8s 0.25s ease both;
}

@media(max-width:768px) {
  .hero h1 {
    font-size: clamp(26px, 7vw, 42px);
    letter-spacing: -1.5px;
  }
}

/* Torn patch on green text */
.green-patch {
  position: relative;
  display: inline-block;
  margin: 0 6px;
  z-index: 10;
  white-space: nowrap;
  -webkit-text-fill-color: var(--green);
}

.green-patch::before {
  content: '';
  position: absolute;
  inset: -5px -8px;
  background: #1a1a1a;
  transform: rotate(-1.5deg);
  clip-path: polygon(0% 0%, 5% 5%, 10% 0%, 15% 4%, 20% 0%, 25% 2%, 30% 0%, 35% 6%, 40% 1%, 45% 4%, 50% 0%, 55% 3%, 60% 0%, 65% 5%, 70% 1%, 75% 4%, 80% 0%, 85% 2%, 90% 0%, 95% 4%, 100% 0%, 100% 10%, 98% 20%, 100% 30%, 97% 40%, 100% 50%, 99% 60%, 100% 70%, 96% 80%, 100% 90%, 98% 100%, 95% 96%, 90% 100%, 85% 95%, 80% 100%, 75% 96%, 70% 100%, 65% 97%, 60% 100%, 55% 95%, 50% 100%, 45% 96%, 40% 100%, 35% 94%, 30% 100%, 25% 97%, 20% 100%, 15% 95%, 10% 100%, 5% 96%, 0% 100%, 2% 90%, 0% 80%, 3% 70%, 0% 60%, 2% 50%, 0% 40%, 3% 30%, 0% 20%, 2% 10%, 0% 0%);
  z-index: -1;
  box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.7);
}

/* Hero subtitle */
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 36px;
  line-height: 1.6;
  letter-spacing: -0.1px;
  opacity: 0;
  animation: heroReveal 0.6s 0.4s ease both;
}

@media(max-width:768px) {
  .hero-sub {
    font-size: 15px;
  }
}

.hero-video {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroReveal 0.7s 0.55s ease both;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  padding: 20px 32px;
  border-radius: 12px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 0 40px var(--green-glow), 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 60px;
  opacity: 0;
  animation: heroReveal 0.6s 0.7s ease both;
  transition: box-shadow 0.2s, opacity 0.15s;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 60px var(--green-glow);
}

.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.hero-cta:hover::after {
  transform: translateX(100%);
}

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  padding: 13px 0;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.ticker-item .ck {
  color: var(--green);
  font-size: 11px;
}

/* ── SECTION HEADINGS — gradient text ── */
.section-h {
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.1;
  background: linear-gradient(to bottom, #ffffff 30%, rgba(255, 255, 255, 0.52) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-h .green {
  -webkit-text-fill-color: var(--green);
}

/* ── APPLY ── */
.apply-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px 100px;
  position: relative;
  z-index: 1;
}

.apply-title {
  text-align: center;
  margin-bottom: 8px;
}

.apply-underline {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 0 auto 16px;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--green-glow);
}

.apply-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
}

/* ── FORM ── */
.clyro-form {
  background: rgba(8, 8, 8, 0.97);
  border: 1.5px solid rgba(57, 255, 20, 0.55);
  border-radius: 18px;
  overflow: hidden;
  animation: borderPulse 4s ease-in-out infinite;
}

.question {
  display: none;
}

.question.active {
  display: flex;
  flex-direction: column;
  animation: qIn 0.28s ease both;
}

.q-inner {
  padding: 32px 28px 20px;
  flex: 1;
}

@media(max-width:500px) {
  .q-inner {
    padding: 26px 20px 16px;
  }
}

.q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(57, 255, 20, 0.12);
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(57, 255, 20, 0.25);
}

.q-arrow {
  color: var(--green);
  margin-right: 8px;
  font-size: 15px;
}

.q-title {
  font-size: clamp(18px, 4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.95);
}

.choices {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  transition: all 0.14s;
  user-select: none;
}

.choice:hover {
  border-color: rgba(57, 255, 20, 0.38);
  color: #fff;
  background: var(--green-dim);
}

.choice.selected {
  border-color: var(--green);
  background: var(--green-dim);
  color: #fff;
  animation: selectBounce 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ck-key {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.14s;
}

.choice.selected .ck-key {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.input-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.q-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 0 12px;
  transition: border-color 0.2s;
  letter-spacing: -0.3px;
}

.q-input:focus {
  border-bottom-color: var(--green);
}

.q-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
  font-weight: 400;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media(max-width:500px) {
  .input-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.phone-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.country-select-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.country-flag {
  font-size: 20px;
  pointer-events: none;
}

.country-code {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  pointer-events: none;
  min-width: 36px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
}

.country-select {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.phone-wrap .q-input {
  flex: 1;
}

.q-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 18px;
  gap: 10px;
}

@media(max-width:500px) {
  .q-footer {
    padding: 12px 20px 16px;
  }
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.btn-back:hover {
  color: #fff;
}

.btn-back svg {
  width: 14px;
  height: 14px;
}

.btn-back:disabled {
  opacity: 0;
  pointer-events: none;
}

.enter-ok {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enter-hint {
  font-size: 13px;
  color: var(--muted);
}

.enter-hint kbd {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  padding: 3px 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.btn-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.btn-ok:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-ok.ready {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}

.q-error {
  font-size: 12px;
  color: #f87171;
  padding: 0 28px 8px;
  min-height: 20px;
}

.dot-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 28px 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
}

.dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--green-glow);
}

.dot.done {
  background: rgba(57, 255, 20, 0.45);
}

/* SUCCESS */
.success-wrap {
  text-align: center;
  padding: 40px 28px 28px;
}

.success-ico {
  width: 72px;
  height: 72px;
  background: var(--green-dim);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--green);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  box-shadow: 0 0 40px var(--green-glow);
}

.success-wrap h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.15s ease both;
}

.success-wrap>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  animation: fadeUp 0.5s 0.25s ease both;
}

.success-wrap>p strong {
  color: var(--green);
}

.guide-card {
  animation: fadeUp 0.5s 0.35s ease both;
}

.btn-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: 12px;
  text-decoration: none;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 0 32px var(--green-glow);
  letter-spacing: -0.2px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s 0.45s ease both;
}

.btn-guide:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--green-glow);
}

.btn-guide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-guide:hover::after {
  transform: translateX(100%);
}

.congrats-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.congrats-title .green {
  color: var(--green);
}

.congrats-sub {
  font-size: 16px;
  color: var(--muted);
}

/* ── SECTION WRAPPERS ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.section-wrap.narrow {
  max-width: 780px;
}

/* Resources */
.res-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.res-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.res-video {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16/9;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
}

.res-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 3-Step */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:768px) {
  .tag-grid {
    grid-template-columns: 1fr;
  }
}

.tag-outer {
  padding-top: 20px;
  position: relative;
  transition: transform 0.25s ease;
}

.tag-outer:hover {
  transform: translateY(-4px);
}

.tag-pin {
  width: 16px;
  height: 16px;
  background: #c8a96e;
  border-radius: 50%;
  border: 3px solid #8a6a30;
  margin: 0 auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.tag-card {
  background: #f0ece4;
  color: #111;
  border-radius: 12px;
  padding: 24px 22px 28px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(50% + 14px) 100%, 50% calc(100% - 9px), calc(50% - 14px) 100%, 0 calc(100% - 14px));
}

.tag-card h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.tag-card .tdesc {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.5;
}

.tag-card .tdesc strong {
  color: #111;
  font-weight: 700;
}

.tag-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 14px;
}

.tag-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tag-card ul li {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.tag-card ul li::before {
  content: '✓';
  color: #111;
  font-weight: 800;
  flex-shrink: 0;
}

.tag-card ul li strong {
  color: #111;
  font-weight: 700;
}

.sys-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.sys-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 40px var(--green-glow);
  letter-spacing: -0.3px;
  transition: box-shadow 0.2s, opacity 0.15s;
  position: relative;
  overflow: hidden;
}

.sys-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 60px var(--green-glow);
}

.sys-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.sys-cta:hover::after {
  transform: translateX(100%);
}

/* Results */
.res-badge-wrap {
  margin-bottom: 16px;
}

.res-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.25);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
}

.res-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.rsub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.photo-card {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color 0.2s, transform 0.25s;
}

.photo-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.photo-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.photo-info {
  padding: 14px 18px;
}

.photo-t {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.photo-s {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(57, 255, 20, 0.2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s;
  user-select: none;
  letter-spacing: -0.2px;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.15s;
  color: var(--muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(57, 255, 20, 0.14);
  color: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* Bottom CTA */
.bottom-cta {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 20px 24px;
  position: relative;
  z-index: 1;
}

.bottom-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 800;
  font-size: 17px;
  padding: 20px 28px;
  border-radius: 12px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 0 40px var(--green-glow);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s, opacity 0.15s;
  position: relative;
  overflow: hidden;
}

.bottom-cta-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 60px var(--green-glow);
}

.bottom-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.bottom-cta-btn:hover::after {
  transform: translateX(100%);
}

.bottom-sub {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

footer {
  text-align: center;
  padding: 32px 24px 28px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.foot-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
}

.built-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── RIPPLE ── */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

/* ── KEYFRAMES ── */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes qIn {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes selectBounce {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.02)
  }
}

@keyframes borderPulse {

  0%,
  100% {
    box-shadow: 0 0 80px rgba(57, 255, 20, 0.07)
  }

  50% {
    box-shadow: 0 0 100px rgba(57, 255, 20, 0.14)
  }
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-8px)
  }

  40% {
    transform: translateX(8px)
  }

  60% {
    transform: translateX(-5px)
  }

  80% {
    transform: translateX(5px)
  }
}

@keyframes confettiFall {
  from {
    transform: translateY(0) rotate(0deg);
    opacity: 1
  }

  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0
  }
}

@keyframes photoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.photo-ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 0;
}

.photo-ticker-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: photoScroll 40s linear infinite;
}

.photo-ticker-track img {
  height: 400px;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

@media(max-width:768px) {
  .photo-ticker-track img {
    height: 250px;
  }
}