:root {
  --bg: #ffffff;
  --panel: #f6f8fb;
  --border: rgba(15, 22, 36, 0.08);
  --text: #0f1624;
  --muted: #5b6675;
  --accent: #1f70b8;
  --accent-2: #5ab3ff;
  --accent-3: #00c6ff;
  --glow: 0 20px 60px rgba(31, 112, 184, 0.18);
  --radius: 18px;
  --max-w: 1180px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 20%, rgba(31, 112, 184, 0.08), transparent 38%),
    radial-gradient(circle at 78% 12%, rgba(90, 179, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #cfe7fa 0%, #dcefff 45%, #c6e0f8 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(15, 22, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 22, 36, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.6), transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(
      calc(var(--parallax-x, 0px) * 0.2),
      calc(var(--parallax-y, 0px) * 0.2)
    );
  transition: transform 0.8s ease-out;
}

.orb {
  position: fixed;
  width: 460px;
  height: 460px;
  filter: blur(120px);
  mix-blend-mode: screen;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.orb-a {
  top: -80px;
  left: -40px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
  animation: drift 16s ease-in-out infinite;
}

.orb-b {
  bottom: 120px;
  right: -60px;
  background: radial-gradient(circle at 40% 40%, var(--accent-2), transparent 60%);
  animation: drift 20s ease-in-out infinite reverse;
}

.orb-c {
  top: 220px;
  right: 20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 60% 60%, var(--accent-3), transparent 60%);
  animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(30px, -20px, 0);
  }
}

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 12px 20px;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 22, 36, 0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(31, 112, 184, 0.5);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

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

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(31, 112, 184, 0.08);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.nav-actions .badge {
  border-color: rgba(31, 112, 184, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 22, 36, 0.04);
  color: var(--text);
  font-weight: 600;
  transition: all 0.2s ease;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 22, 36, 0.14);
}

.btn.primary {
  background: linear-gradient(120deg, #00b86b, #00d98b);
  color: #041022;
  box-shadow: 0 10px 40px rgba(0, 184, 107, 0.35);
  border: none;
}

.btn.ghost {
  background: #f0f4fb;
}

.btn.xl {
  padding: 14px 22px;
  font-size: 16px;
}

.hero {
  padding: 80px 20px 70px;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 90vh;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 12, 25, 0.55) 0%, rgba(5, 12, 25, 0.32) 35%, rgba(5, 12, 25, 0.12) 65%, transparent 100%),
    url("Hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero, .hero p, .hero strong {
  color: #e8ecf7;
}

.hero-copy {
  width: 100%;
  max-width: 960px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #d8e7ff;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  margin-bottom: 18px;
  color: #f6f8ff;
}

.hero h1 span {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(120deg, rgba(31, 112, 184, 0.2), rgba(90, 179, 255, 0.18));
  border-radius: 14px;
  border: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(0, 0, 0, 0.08), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(0, 0, 0, 0.06), transparent 40%),
    linear-gradient(to bottom, rgba(5, 12, 25, 0.25) 0%, rgba(5, 12, 25, 0.1) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

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

.lead {
  font-size: 18px;
  color: #f1f6ff;
}

.hero-meta {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #eef3fa;
  border-radius: 14px;
  border: 1px solid var(--border);
  color: #0f1624;
  font-size: 14px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.dot.live,
.pill .live {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(31, 112, 184, 0.8);
}


.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.note-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f7f9fc;
  color: #0f1624;
  box-shadow: 0 10px 30px rgba(15, 22, 36, 0.06);
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 22, 36, 0.16);
  transform: translateX(-50%);
  text-decoration: none;
  backdrop-filter: blur(8px);
  pointer-events: none;
  animation: breathe 2.8s ease-in-out infinite;
}

.scroll-down::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  display: block;
}

@keyframes breathe {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 12px 30px rgba(15, 22, 36, 0.16);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 16px 40px rgba(15, 22, 36, 0.18);
  }
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 12px 30px rgba(15, 22, 36, 0.16);
  }
}

.ticker {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.ticker span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f4f7fc;
  backdrop-filter: blur(6px);
}

.hero-visual {
  position: relative;
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--glow);
  backdrop-filter: blur(16px);
}

.floating-headline {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.floating-body {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-stats strong {
  display: block;
  font-size: 18px;
}

.mini-stats span {
  color: var(--muted);
  font-size: 13px;
}

.floating-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 16px rgba(31, 112, 184, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.65;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.scroll-hint {
  position: absolute;
  bottom: -4px;
  right: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 56px) 20px;
  position: relative;
  z-index: 1;
  color: var(--text);
}


.section h1,
.section h2,
.section h3,
.section h4,
.section p,
.section li {
  color: var(--text);
}

.section-header {
  max-width: 760px;
}

.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  text-align: center;
}

.feature-grid .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.card {
  background: radial-gradient(circle at 20% 20%, rgba(31, 112, 184, 0.08), rgba(0, 198, 255, 0.05)), #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  box-shadow: 0 16px 50px rgba(15, 22, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 112, 184, 0.18), rgba(90, 179, 255, 0.16));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 0.35;
}

.card h3 {
  margin-bottom: 8px;
}

.card p em {
  font-size: 16px;
}

.card-top {
  margin-bottom: 12px;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f0f4fb;
  font-weight: 600;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.card-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 112, 184, 0.25), rgba(0, 198, 255, 0.25));
  box-shadow: 0 4px 12px rgba(15, 22, 36, 0.12);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.timeline-grid.fancy {
  gap: 18px;
}

.time-block {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f7f9fc;
  position: relative;
  box-shadow: 0 10px 40px rgba(15, 22, 36, 0.06);
  overflow: hidden;
}

.time-block .time {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(31, 112, 184, 0.08);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.time-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: #eef3fa;
}

.chip.camera {
  background: linear-gradient(120deg, rgba(0, 184, 107, 0.1), rgba(0, 217, 139, 0.15));
  border-color: rgba(0, 184, 107, 0.2);
  color: #03633d;
}

.chip.break {
  background: linear-gradient(120deg, rgba(255, 189, 46, 0.12), rgba(255, 227, 160, 0.2));
  border-color: rgba(255, 189, 46, 0.25);
  color: #8a5a00;
}

.chip.end {
  background: linear-gradient(120deg, rgba(255, 95, 87, 0.12), rgba(255, 142, 136, 0.2));
  border-color: rgba(255, 95, 87, 0.25);
  color: #8c1f1f;
}

.chip.zoom {
  background: linear-gradient(120deg, rgba(45, 140, 255, 0.12), rgba(90, 179, 255, 0.2));
  border-color: rgba(45, 140, 255, 0.25);
  color: #0f3b82;
}

.time-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f0f4fb;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.time-note.warning {
  border-color: rgba(255, 189, 46, 0.25);
  background: linear-gradient(135deg, rgba(255, 189, 46, 0.12), rgba(255, 240, 196, 0.3));
  color: #8a5a00;
}

.time-note.subtle {
  background: #f7f9fc;
}

.time-note.strong {
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #f6f8fb;
  box-shadow: var(--glow);
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--accent);
}

.speaker {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.speaker-card {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.speaker-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.speaker-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.speaker-card li {
  margin-bottom: 8px;
}

.speaker-visual {
  text-align: center;
}

.speaker-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15, 22, 36, 0.12);
  object-fit: cover;
  display: inline-block;
  background: linear-gradient(135deg, rgba(31, 112, 184, 0.08), rgba(90, 179, 255, 0.1));
}

.speaker-section .section-header {
  text-align: left;
  margin-bottom: 18px;
}

.speaker-section .section-header h2 {
  font-size: 36px;
}

.video-testimonials {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(40px, 6vw, 64px) 0 40px;
  background: linear-gradient(180deg, #e5f0ff 0%, #d7eaff 50%, #e9f4ff 100%);
}

.video-testimonials .section-header {
  text-align: center;
  margin: 0 auto 18px;
  padding: 0 20px;
  max-width: 840px;
}

.testimonials-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card {
  background: #f3f7ff;
  border: 1px solid rgba(15, 22, 36, 0.08);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 14px 44px rgba(15, 22, 36, 0.12);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #0d121c;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-testimonials .section-cta {
  margin-top: 20px;
  width: 100%;
}

.video-testimonials .testimonials-btn {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(120deg, #ff9a3c, #ff7f32);
  color: #1b0b00;
  border: none;
  box-shadow: 0 16px 46px rgba(255, 132, 72, 0.4);
  border-radius: 999px;
  font-size: 17px;
  padding: 16px 22px;
  justify-content: center;
}

.radar {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
}

.radar-ring,
.radar-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(31, 112, 184, 0.4);
  animation: spin 6s linear infinite;
}

.radar-ring:nth-child(2) {
  inset: 20px;
  animation-duration: 9s;
  border-color: rgba(90, 179, 255, 0.4);
}

.radar-dot {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--accent), transparent);
  border: none;
  inset: auto;
  top: 10px;
  right: 20px;
  animation: ping 2.4s ease-in-out infinite;
}

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

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.note {
  color: var(--muted);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.format-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f7f9fc;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.faq-accordion {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f7f9fc;
  box-shadow: 0 8px 30px rgba(15, 22, 36, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 800;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 10px 0 0;
}

.signup-form {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f7f9fc;
  box-shadow: 0 16px 50px rgba(15, 22, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.signup-form input,
.signup-form select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: rgba(31, 112, 184, 0.4);
  box-shadow: 0 0 0 4px rgba(31, 112, 184, 0.12);
}

.signup-form .form-row {
  display: grid;
  gap: 12px;
}

.signup-form .form-row.two {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.signup-form .checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.signup-form .checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.signup-form .form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.signup-form .form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.signup-form button {
  pointer-events: auto;
}

.form-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  margin: 6px 0 4px;
}

.form-links a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.form-status {
  margin: 4px 0 0;
  font-weight: 700;
  color: #0a6c43;
  min-height: 18px;
}

.signup-form.is-submitting {
  opacity: 0.9;
}

.signup-form .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
  box-shadow: none;
}

.signup-form iframe {
  width: 100%;
  border: 0;
  min-height: 860px;
  border-radius: 12px;
  background: #fff;
}

.cta-section {
  padding-bottom: 96px;
}

.access {
  padding-top: 20px;
}

.section.signup {
  position: relative;
  z-index: 2;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.access-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #f7f9fc;
  box-shadow: 0 14px 40px rgba(15, 22, 36, 0.06);
}

.access-card h3 {
  margin: 0;
}

.access-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.access-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.access-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.access-card li {
  margin-bottom: 8px;
}

.access-card.deny {
  border-color: rgba(255, 95, 87, 0.25);
}

.access-card.allow {
  border-color: rgba(0, 184, 107, 0.25);
}

.access-card.deny .access-avatar {
  background: rgba(255, 95, 87, 0.12);
  color: #c62626;
}

.access-card.allow .access-avatar {
  background: rgba(0, 184, 107, 0.12);
  color: #0a6c43;
}

.live-mock {
  padding-top: 28px;
  margin-top: 0;
}

.mockup {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 80px rgba(15, 22, 36, 0.08);
  padding: 24px 20px;
}

.mockup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6dde8;
}

.dots span:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 8px rgba(255, 95, 87, 0.4);
}

.dots span:nth-child(2) {
  background: #ffbd2e;
  box-shadow: 0 0 8px rgba(255, 189, 46, 0.4);
}

.dots span:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 8px rgba(40, 200, 64, 0.4);
}

.tab {
  padding: 8px 14px;
  border-radius: 14px;
  background: #f0f4fb;
  color: var(--text);
  font-weight: 600;
}

.mockup-screen {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 12px;
  align-items: stretch;
}

.mockup-info {
  background: #f7f9fc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
}

.date-tag {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mockup-title {
  color: var(--muted);
  margin-bottom: 14px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px 22px;
  align-items: start;
}

.mockup-stats strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}

.mockup-stats span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.mockup-video {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, #f0f6ff, #e8f1ff);
  padding: 16px;
  min-height: 220px;
  overflow: hidden;
}

.camera-dot {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e54b4b;
  box-shadow: 0 0 12px rgba(229, 75, 75, 0.6);
}

.zoom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #2d8cff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(45, 140, 255, 0.35);
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.grid-avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.grid-avatars.extra {
  display: none;
}

.grid-avatars span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31, 112, 184, 0.2), rgba(0, 198, 255, 0.28));
  box-shadow: inset 0 0 0 1px rgba(15, 22, 36, 0.05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

.grid-avatars span:nth-child(odd) {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='38' r='20' fill='%232d8cff'/%3E%3Cpath d='M30 98c2-22 12-32 30-32s28 10 30 32H30z' fill='%231f70b8'/%3E%3C/svg%3E");
}

.grid-avatars span:nth-child(even) {
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 42c0-13 9-23 20-23s20 10 20 23-9 23-20 23S40 55 40 42z' fill='%23ff7fbf'/%3E%3Cpath d='M32 98c2-22 12-32 28-32s26 10 28 32H32z' fill='%23d45aa0'/%3E%3C/svg%3E");
}

.mockup-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 4px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(31, 112, 184, 0.08), rgba(90, 179, 255, 0.1));
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(15, 22, 36, 0.12);
}

.frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.frame:hover img {
  transform: scale(1.04);
  filter: saturate(1.15);
}

.marquee {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f6f8fb;
}

.marquee-track {
  display: flex;
  gap: 12px;
  padding: 10px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.chip {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--muted);
  font-size: 13px;
}

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

.cta-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(31, 112, 184, 0.16), rgba(90, 179, 255, 0.12));
  box-shadow: 0 20px 80px rgba(31, 112, 184, 0.18);
}

.cta-card .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.scroll-progress {
  position: fixed;
  inset: auto 0 0 0;
  height: 3px;
  background: rgba(15, 22, 36, 0.08);
  z-index: 15;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transition: width 0.1s ease-out;
}

@media (max-width: 640px) {
  .scroll-progress {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tilt:hover {
  box-shadow: 0 20px 50px rgba(15, 22, 36, 0.14);
}

@media (max-width: 980px) {
  .nav {
    position: sticky;
    top: 0;
  }
  .hero-grid,
  .speaker {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .mockup-screen {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    justify-content: center;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    height: 40px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 58px;
    background-image:
      linear-gradient(
        180deg,
        rgba(5, 12, 25, 0.65) 0%,
        rgba(5, 12, 25, 0.42) 40%,
        rgba(5, 12, 25, 0.16) 70%,
        transparent 100%
      ),
      url("hero-mobile.png");
    background-position: center top;
  }

  .hero-grid {
    min-height: 80vh;
    align-content: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .cta-card {
    padding: 24px;
  }

  .grid-avatars.extra {
    display: grid;
    margin-top: 10px;
  }

  .testimonials-inner {
    padding: 0 14px;
    gap: 16px;
  }

  .testimonial-card {
    border-radius: 22px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .video-testimonials .testimonials-btn {
    max-width: 520px;
  }
}

@media (min-width: 980px) {
  .video-testimonials {
    padding: clamp(52px, 6vw, 72px) 20px 56px;
  }

  .video-testimonials .section-header {
    text-align: left;
    max-width: var(--max-w);
    padding: 0;
    margin-bottom: 22px;
  }

  .testimonials-inner {
    max-width: var(--max-w);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .testimonial-card {
    background: #f7f9fc;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 14px 44px rgba(15, 22, 36, 0.08);
  }

  .video-frame {
    border-radius: 12px;
  }

  .video-testimonials .testimonials-btn {
    max-width: 380px;
  }

  .video-testimonials .section-cta {
    margin-top: 24px;
  }
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-hero-note {
  display: none;
  max-width: var(--max-w);
  margin: 18px auto 0;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
}

@media (max-width: 640px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-hero-note {
    display: block;
  }
}

.footer {
  background: linear-gradient(145deg, #dceeff, #c7e2f8);
  color: var(--text);
  text-align: center;
  padding: 56px 20px 64px;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  margin-bottom: 12px;
  background: transparent;
}

.footer p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer .btn.ghost {
  background: transparent;
  border-color: rgba(15, 22, 36, 0.18);
  color: var(--text);
  padding: 12px 20px;
}

.footer .btn.ghost:hover {
  border-color: rgba(15, 22, 36, 0.32);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .section.signup {
    padding: 0;
    max-width: none;
  }

  .section.signup .section-header {
    padding: 20px 18px 0;
  }

  .signup-form {
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
  }

  .signup-form iframe {
    min-height: 0;
    border-radius: 0;
  }
}
