@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:       #1B2A4A;
  --navy-light: #243559;
  --blue:       #1A75FF;
  --blue-light: #4D95FF;
  --blue-dark:  #1460D4;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --slate:      #4A5568;
  --slate-light:#718096;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,117,255,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.nav-logo-text .accent { color: var(--blue); }
.nav.scrolled .nav-logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav.scrolled .nav-link { color: var(--slate); }
.nav.scrolled .nav-link:hover { color: var(--navy); }

.nav-link-demo {
  color: var(--blue-light) !important;
  font-weight: 600;
}
.nav.scrolled .nav-link-demo { color: var(--blue) !important; }

.btn-nav {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}
.nav.scrolled .btn-nav {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.nav.scrolled .btn-nav:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 24px;
  font-weight: 600;
}
.nav-drawer .nav-link:hover { color: var(--white); }
.nav-drawer .btn-nav {
  font-size: 18px;
  padding: 14px 32px;
  border-color: rgba(255,255,255,0.35);
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg.active { opacity: 1; }

/* Slide indicator dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,42,74,0.90) 0%,
    rgba(27,42,74,0.75) 55%,
    rgba(15,29,58,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,117,255,0.18);
  border: 1px solid rgba(26,117,255,0.40);
  color: #7CB8FF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--blue-light); }

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── How It Works ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 4px);
  right: calc(16.67% + 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--blue) 50%, var(--border) 100%);
  z-index: 0;
}

.step { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(26,117,255,0.32);
  border: 3px solid var(--white);
}

.step-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

/* ─── Features ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(26,117,255,0.4);
  box-shadow: 0 6px 28px rgba(26,117,255,0.10);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,117,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

/* ─── Venues ──────────────────────────────────────────────── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.venue-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.venue-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.venue-card:hover .venue-card-img { transform: scale(1.05); }

.venue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,25,50,0.94) 0%,
    rgba(15,25,50,0.50) 45%,
    transparent 75%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.venue-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}

.venue-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.venue-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ─── Auracast ────────────────────────────────────────────── */
.auracast-section {
  background: linear-gradient(135deg, #0F1D36 0%, var(--navy) 60%, #0F1D36 100%);
  padding: 96px 0;
}

.auracast-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.auracast-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,117,255,0.15);
  border: 1px solid rgba(26,117,255,0.35);
  color: #7CB8FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.auracast-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.auracast-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.auracast-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auracast-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.auracast-spec svg { color: var(--blue); flex-shrink: 0; }

/* Auracast animated graphic */
.auracast-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bt-rings {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bt-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(26,117,255,0.25);
  animation: ring-pulse 3s ease-in-out infinite;
}
.bt-ring:nth-child(1) { width: 80px;  height: 80px;  animation-delay: 0s; }
.bt-ring:nth-child(2) { width: 130px; height: 130px; animation-delay: 0.5s; }
.bt-ring:nth-child(3) { width: 180px; height: 180px; animation-delay: 1s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.03); }
}

.bt-core {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(26,117,255,0.15);
  border: 1.5px solid rgba(26,117,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

/* ─── Service Includes ────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,117,255,0.25);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26,117,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.service-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-item-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 44px;
  position: relative;
}

.cta-actions { position: relative; }

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.cta-note a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.cta-note a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-logo-text .accent { color: var(--blue); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  line-height: 1.6;
}

.footer-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: rgba(255,255,255,0.9); }

.footer-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 12px;
}
.footer-email:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.6); }

/* ─── Scroll animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ─── Demo section ────────────────────────────────────────── */
.demo-section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.demo-mobile-hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--slate-light);
  display: none;
}

.demo-qr-wrap {
  flex-shrink: 0;
}

.demo-qr-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.demo-qr-card img {
  border-radius: 4px;
}

.demo-qr-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  .demo-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .demo-qr-wrap { display: none; }
  .demo-mobile-hint { display: block; }
}

/* ─── About page ──────────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 160px 0 80px;
}

.about-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.about-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
}

.about-content {
  padding: 80px 0;
  max-width: 720px;
}

.about-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.about-placeholder p {
  color: var(--slate-light);
  font-size: 15px;
}

/* ─── Legal pages (Privacy, Terms) ───────────────────────── */
.legal-hero {
  background: var(--navy);
  padding: 160px 0 64px;
}

.legal-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-hero-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
}

.legal-prose {
  max-width: 720px;
  padding: 72px 0 96px;
}

.legal-prose h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 12px;
}

.legal-prose p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-prose li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 6px;
}

.legal-prose a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,117,255,0.3);
  transition: border-color 0.2s;
}
.legal-prose a:hover { border-color: var(--blue); }

/* ─── About bio layout ────────────────────────────────────── */
.about-bio {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
  padding: 16px 0 80px;
}

.about-photo {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-bio-name {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.about-bio-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
}

.about-bio-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--border);
}

.about-bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.about-bio-link:hover { color: var(--navy); }
.about-bio-link svg { flex-shrink: 0; }

.about-bio-sep {
  color: var(--border);
  font-size: 16px;
  line-height: 1;
}

.about-bio-p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1.5px solid var(--border);
}

.about-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(26,117,255,0.07);
  color: var(--blue);
  border: 1px solid rgba(26,117,255,0.18);
}

@media (max-width: 768px) {
  .about-bio {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }
  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }
  .about-bio-text { text-align: left; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .auracast-inner { grid-template-columns: 1fr; gap: 40px; }
  .auracast-visual { display: none; }
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 110px 0 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }

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

  .venues-grid { grid-template-columns: 1fr; }
  .venue-card { aspect-ratio: 16/9; }

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

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 13px 22px; }
}
