/* ============================================================
   Abot Kamay WiFi — Website Stylesheet
   Editorial premium: Fraunces serif + DM Sans, terracotta #C85A38
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #C85A38;
  --accent-dark:  #A84728;
  --accent-light: #F0EAE6;
  --bg:           #FAF9F6;
  --bg-dark:      #1A1A1A;
  --text:         #1A1A1A;
  --text-muted:   #6B6560;
  --text-secondary:#7A736D;
  --border:       #E5E0DB;
  --white:        #FFFFFF;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'Fira Code', 'Cascadia Code', Consolas, monospace;
  --reveal-delay: 0ms;
  --max-w:        1140px;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --transition:   0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--accent-light); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* --- Marquee Banner --- */
.marquee-banner {
  position: relative;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-banner.hidden { display: none; }

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  flex: 1;
}
.marquee-track--scroll .marquee-inner {
  display: inline-block;
  animation: marquee-scroll 24s linear infinite;
  padding-left: 100%;
}
.marquee-track--static .marquee-inner {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0 2.5rem;
}
.marquee-track--flash .marquee-inner {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0 2.5rem;
  animation: marquee-flash 1.6s ease-in-out infinite;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes marquee-flash {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.marquee-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.75;
  transition: opacity var(--transition);
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
}
.marquee-close:hover { opacity: 1; }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--accent-light);
}
.nav-link.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  background: var(--accent-light);
  border-radius: 6px;
  padding: 0.25rem;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--white); color: var(--accent); box-shadow: var(--shadow-sm); }

.nav-cta {
  background: var(--bg-dark);
  color: var(--white);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent); color: var(--white); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--text); color: var(--text); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* --- Hero --- */
.hero {
  padding: 2.4rem 0 1.55rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-layout {
  min-height: 0;
}
.hero-content {
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 0.82rem;
}
.hero-title {
  margin-bottom: 0.8rem;
  max-width: 10.5ch;
  font-size: clamp(2.35rem, 4.7vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 0;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.hero-mission {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  margin: -1.5rem 0 2rem;
  line-height: 1.6;
  font-weight: 600;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
}
.hero-device {
  position: relative;
  width: clamp(210px, 22vw, 246px);
  aspect-ratio: 9 / 19.5;
  padding: 7px;
  border-radius: 44px;
  background: linear-gradient(146deg, #4e535b 0%, #cbced3 42%, #4a4f57 100%);
  box-shadow:
    0 28px 56px rgba(15, 15, 15, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.34);
  animation: phone-float 5s ease-in-out infinite;
  transform-origin: center center;
}
.hero-device--iphone17pro::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 40px;
  background: #0c0d0f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  z-index: 1;
}
.hero-device--iphone17pro::after {
  content: "";
  position: absolute;
  inset: 2px 2px 48% 2px;
  border-radius: 42px 42px 120px 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 2;
}
.hero-device-screen {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #faf9f6;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-device-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 18px;
  border-radius: 999px;
  background: #040405;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 5;
}
.hero-device-side {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero-device-side span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #7a8088;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.hero-device-side--left {
  left: -3px;
  top: 118px;
}
.hero-device-side--left span:first-child {
  height: 28px;
  margin-bottom: 16px;
}
.hero-device-side--left span:last-child {
  height: 58px;
}
.hero-device-side--right {
  right: -3px;
  top: 176px;
}
.hero-device-side--right span {
  height: 84px;
}
.phone-live {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f8f5f1 0%, #f4f0ea 34%, #f1ece5 100%);
}
.phone-live-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.82rem 0.7rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.64);
}
.phone-live-brand {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg-dark);
}
.phone-live-brand svg {
  color: var(--accent);
}
.phone-live-chip {
  font-size: 0.46rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 90, 56, 0.1);
  border: 1px solid rgba(200, 90, 56, 0.26);
  border-radius: 999px;
  padding: 0.15rem 0.38rem;
}
.phone-live-main {
  flex: 1;
  min-height: 0;
  padding: 0.78rem 0.74rem 0.8rem;
  display: flex;
}
.phone-live-ad-panel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
  padding: 0.62rem 0.56rem 0.56rem;
  border-radius: 14px;
  background: linear-gradient(170deg, #ffffff 0%, #f8f3ec 100%);
  border: 1px solid rgba(200, 90, 56, 0.2);
  box-shadow: 0 8px 18px rgba(18, 18, 18, 0.1);
}
.phone-live-stage-tag {
  font-size: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}
.phone-live-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  line-height: 1.2;
  color: var(--bg-dark);
}
.phone-live-subtitle {
  margin: 0;
  font-size: 0.5rem;
  line-height: 1.4;
  color: var(--text-muted);
}
.phone-live-progress {
  margin-top: 0.05rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.phone-live-progress-fill {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c85a38 0%, #d97b5b 100%);
}
.phone-live-countdown {
  margin-top: 0.05rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.94rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.phone-live-ad-slot {
  position: relative;
  margin-top: 0.08rem;
  flex: 1;
  min-height: 128px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(165deg, #1c1c20 0%, #28292f 42%, #15161a 100%);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.26rem;
  overflow: hidden;
}
.phone-live-ad-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 16%, rgba(200, 90, 56, 0.48) 0%, rgba(200, 90, 56, 0) 42%),
    linear-gradient(124deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 46%);
}
.phone-live-ad-pill {
  position: absolute;
  top: 0.42rem;
  left: 0.42rem;
  z-index: 1;
  font-size: 0.38rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.12rem 0.3rem;
}
.phone-live-ad-headline {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.49rem;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
  max-width: 88%;
}
.phone-live-ad-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.4rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.phone-live-footer {
  margin-top: 0.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-live-unlock-label {
  font-size: 0.41rem;
  line-height: 1.2;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  font-weight: 700;
}
.phone-live-unlock-time {
  font-family: var(--font-serif);
  font-size: 0.57rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.phone-live-btn {
  margin-top: 0.12rem;
  border-radius: 10px;
  background: var(--bg-dark);
  color: var(--white);
  min-height: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Section Headers --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.legal-download-note {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }
.how-desc-primary {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--text);
  line-height: 1.6;
  max-width: 760px;
}
.how-desc-secondary {
  margin: 0.55rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 720px;
}
.how-usecases {
  margin-top: 1.35rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.how-usecases-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.how-usecases-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.how-usecase-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 90, 56, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.section--how {
  padding: 1.15rem 0 2.35rem;
  background: linear-gradient(180deg, #f2edeb 0%, #eee8e4 100%);
}
.how-shell {
  position: relative;
  border-radius: 26px;
  padding: 1.5rem 1.3rem 1.35rem;
  border: 1px solid #e4dcd6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow: 0 18px 42px rgba(24, 20, 17, 0.07);
}
.how-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 56, 0.42) 50%, transparent 100%);
}
.section--how .section-header {
  margin-bottom: 1.2rem;
}
.section--how .section-title {
  margin-bottom: 0.62rem;
  font-size: clamp(1.88rem, 3.4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.section--how .how-desc-primary {
  font-size: clamp(1.06rem, 1.9vw, 1.3rem);
  line-height: 1.5;
}
.section--how .how-desc-secondary {
  margin-top: 0.38rem;
  font-size: 0.94rem;
  line-height: 1.58;
}
.section--how .how-usecases {
  margin-top: 0.82rem;
  gap: 0.45rem;
}
.section--how .how-usecases-label {
  font-size: 0.74rem;
}
.section--how .how-usecases-list {
  gap: 0.36rem;
}
.section--how .how-usecase-chip {
  min-height: 1.75rem;
  padding: 0.22rem 0.68rem;
  font-size: 0.72rem;
  border-color: rgba(200, 90, 56, 0.24);
  background: rgba(255, 255, 255, 0.92);
}
.section--how .steps {
  position: relative;
  gap: 0.82rem;
}
.section--how .steps::before {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 56, 0.24) 50%, transparent 100%);
  pointer-events: none;
}
.section--how .step-card {
  border-radius: 14px;
  padding: 1.05rem 0.95rem 1rem;
  min-height: 188px;
  box-shadow: 0 10px 26px rgba(24, 20, 17, 0.06);
}
.section--how .step-number {
  font-size: 2.08rem;
  margin-bottom: 0.45rem;
}
.section--how .step-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.55rem;
  border-radius: 10px;
}
.section--how .step-title {
  margin-bottom: 0.28rem;
  font-size: 1rem;
}
.section--how .step-desc {
  font-size: 0.83rem;
  line-height: 1.5;
}

/* --- Reveal Motion --- */
.reveal > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.56s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.56s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.revealed > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* --- How It Works --- */
.steps { counter-reset: step-counter; }
.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Venues page variant: icon + bold title row, no body copy */
.steps--title-only .step-card {
  padding: 2rem 1.75rem;
}
.steps--title-only .step-number {
  margin-bottom: 0.85rem;
}
.steps--title-only .step-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.steps--title-only .step-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.steps--title-only .step-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon--dark {
  background: var(--bg-dark);
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.625rem;
}
.card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.card--highlight {
  border-color: var(--accent);
  background: var(--accent-light);
}
.card--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.card--dark .card-desc { color: rgba(255,255,255,0.65); }
.card--dark .card-icon { background: rgba(200,90,56,0.2); }

/* Large icon variant for content cards */
.card--icon-top { padding-top: 2.5rem; }
.card-icon-lg {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}
.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.home-focus-card {
  padding: 1.45rem 1.3rem;
  border-radius: 14px;
}
.home-focus-index {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  line-height: 1;
  color: #e7dfda;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.home-focus-card .card-title {
  font-size: 1.24rem;
  margin-bottom: 0.55rem;
}
.home-focus-card .card-desc {
  font-size: 0.94rem;
  line-height: 1.62;
}

/* --- Stats Band --- */
.stats-band {
  background: var(--bg-dark);
  padding: 4rem 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 1.5rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section {
  background: var(--accent);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 2rem; font-size: 1.0625rem; }
.cta-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero .hero-eyebrow { background: rgba(200,90,56,0.2); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }

/* --- Advertisers Conversion --- */
.adv-conversion-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}
.adv-conversion-copy {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
}
.adv-conversion-copy .section-title { margin-bottom: 1rem; }
.adv-conversion-main {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.adv-conversion-actions { margin-top: 1.5rem; }
.adv-kpi-card {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv-kpi-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.adv-kpi-value {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw, 4.2rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.adv-kpi-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}
.adv-feature-grid { margin-top: 1.5rem; }
.adv-feature-grid .card {
  border-top: 3px solid var(--accent-light);
}
.adv-feature-grid .card-title { margin-bottom: 0.6rem; }

/* --- Feature List --- */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-text { font-size: 0.9375rem; }
.feature-text strong { display: block; margin-bottom: 0.125rem; }
.feature-text span { color: var(--text-muted); font-size: 0.875rem; }

/* --- Pricing Card --- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-card--featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.pricing-header { padding: 2rem; border-bottom: 1px solid var(--border); }
.pricing-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.pricing-title { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-body { padding: 2rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.75rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9rem; }

/* --- Contact Form --- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,90,56,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6560' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); }
.form-success { display: none; background: #F0FFF4; border: 1px solid #68D391; color: #276749; border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.9rem; }
.form-success.show { display: block; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* --- Contact Info --- */
.contact-info-card {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,90,56,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 0.9375rem; color: var(--white); }

/* --- Privacy / About long-form text --- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.875rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.prose h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.prose ul { list-style: disc; padding-left: 1.75rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.375rem; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose strong { font-weight: 600; }
.prose .highlight-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

/* --- Team Card --- */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.team-name { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.625rem; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social-btn:hover { background: var(--accent); color: var(--white); }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.8125rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.8); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* --- Misc Helpers --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge--accent { background: var(--accent-light); color: var(--accent); }
.badge--dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 1.9rem 0 1.3rem; }
  .hero-layout { min-height: auto; }
  .hero-content { max-width: 100%; }
  .section-header { margin-bottom: 2.25rem; }
  .section-desc { font-size: 1rem; line-height: 1.65; }
  .how-desc-primary {
    font-size: 1.02rem;
    line-height: 1.65;
  }
  .how-desc-secondary {
    margin-top: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.68;
  }
  .how-usecases { margin-top: 1rem; width: 100%; }
  .how-usecases-label { font-size: 0.74rem; }
  .how-usecases-list { gap: 0.38rem; }
  .how-usecase-chip {
    min-height: 1.85rem;
    padding: 0.28rem 0.72rem;
    font-size: 0.75rem;
  }
  .hero-eyebrow { margin-bottom: 0.66rem; }
  .hero-title {
    margin-bottom: 0.72rem;
    font-size: clamp(1.9rem, 8.2vw, 2.7rem);
    max-width: 100%;
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.54;
  }
  .section--how { padding: 0.8rem 0 1.6rem; }
  .how-shell {
    border-radius: 16px;
    padding: 0.95rem 0.8rem 0.85rem;
  }
  .section--how .section-header { margin-bottom: 0.95rem; }
  .section--how .section-title {
    margin-bottom: 0.44rem;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .section--how .how-desc-primary {
    font-size: 0.96rem;
    line-height: 1.48;
  }
  .section--how .how-desc-secondary {
    margin-top: 0.3rem;
    font-size: 0.84rem;
    line-height: 1.5;
  }
  .section--how .how-usecases {
    margin-top: 0.62rem;
  }
  .section--how .how-usecases-label {
    font-size: 0.68rem;
  }
  .section--how .how-usecase-chip {
    min-height: 1.58rem;
    padding: 0.2rem 0.58rem;
    font-size: 0.68rem;
  }
  .section--how .steps {
    gap: 0.58rem;
  }
  .section--how .steps::before {
    display: none;
  }
  .section--how .step-card {
    min-height: 0;
    padding: 0.95rem 0.8rem;
  }
  .section--how .step-number {
    font-size: 1.8rem;
    margin-bottom: 0.32rem;
  }
  .section--how .step-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.42rem;
  }
  .section--how .step-title {
    font-size: 0.93rem;
    margin-bottom: 0.22rem;
  }
  .section--how .step-desc {
    font-size: 0.78rem;
    line-height: 1.44;
  }
  .hero-mission { margin: -0.5rem 0 1.35rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    padding-top: 1.5rem;
  }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .home-focus-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .home-focus-card { padding: 1.1rem 1rem; }
  .adv-conversion-shell { grid-template-columns: 1fr; gap: 1rem; }
  .adv-conversion-copy,
  .adv-kpi-card { padding: 1.45rem 1.15rem; }
  .adv-conversion-main { font-size: 1rem; line-height: 1.65; }
  .adv-kpi-value { font-size: clamp(2.25rem, 12vw, 3rem); }
  .adv-feature-grid { margin-top: 1rem; }
  .home-focus-index {
    font-size: 1.85rem;
    margin-bottom: 0.55rem;
  }
  .home-focus-card .card-title {
    font-size: 1.08rem;
    margin-bottom: 0.38rem;
  }
  .home-focus-card .card-desc {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .form-grid-2 { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-radius: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .nav-link:hover, .nav-link.active {
    background: none;
    color: var(--accent);
  }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  .nav-inner { position: static; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 3.5rem 0 3rem; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  .card, .step-card, .contact-info-card, .prose .highlight-box { padding: 1.35rem 1.1rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-cta-group .btn,
  .cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-group { width: 100%; flex-direction: column; align-items: stretch; }
  .footer { padding-top: 3rem; }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
