﻿:root {
  --ink: #101722;
  --navy: #06172f;
  --navy-2: #0a2445;
  --navy-3: #0f355e;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --mist-2: #edf3f8;
  --line: #dce6ee;
  --muted: #647386;
  --gold: #d7ad55;
  --gold-2: #f0d893;
  --turquoise: #25c6b8;
  --success: #11806a;
  --shadow: 0 24px 70px rgba(6, 23, 47, 0.16);
  --soft-shadow: 0 14px 40px rgba(6, 23, 47, 0.08);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.72), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 23, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 47, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0, transparent 58%);
}

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 238, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 173, 85, 0.44);
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(215, 173, 85, 0.34), transparent 42%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 12px 30px rgba(6, 23, 47, 0.22);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2c3c52;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--success);
  background: rgba(37, 198, 184, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 18%, rgba(37, 198, 184, 0.22), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(215, 173, 85, 0.16), transparent 30%),
    linear-gradient(115deg, rgba(6, 23, 47, 0.98) 0%, rgba(6, 23, 47, 0.94) 45%, rgba(10, 36, 69, 0.9) 100%),
    url("data:image/svg+xml,%3Csvg width='1440' height='920' viewBox='0 0 1440 920' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1440' height='920' fill='%2306172f'/%3E%3Cg opacity='.20' fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M0 184h1440M0 368h1440M0 552h1440M0 736h1440M180 0v920M360 0v920M540 0v920M720 0v920M900 0v920M1080 0v920M1260 0v920'/%3E%3C/g%3E%3Cg opacity='.18'%3E%3Cpath d='M936 138h296a18 18 0 0 1 18 18v198a18 18 0 0 1-18 18H936a18 18 0 0 1-18-18V156a18 18 0 0 1 18-18Z' fill='%23ffffff'/%3E%3Cpath d='M980 196h184v16H980zM980 240h220v12H980zM980 286h160v12H980z' fill='%23d7ad55'/%3E%3Cpath d='M930 476h330a18 18 0 0 1 18 18v164a18 18 0 0 1-18 18H930a18 18 0 0 1-18-18V494a18 18 0 0 1 18-18Z' fill='%23ffffff'/%3E%3Cpath d='M978 530h126v15H978zM978 574h220v12H978zM978 616h176v12H978z' fill='%2325c6b8'/%3E%3C/g%3E%3C/svg%3E") center / cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 85, 0.65), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 58px;
  padding: 58px 0 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #c7fff8;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--turquoise));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  font-weight: 900;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #dbe8f4;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.store-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.store-btn {
  min-width: 174px;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.store-btn:first-child {
  color: #07172f;
  border-color: rgba(215, 173, 85, 0.8);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.store-btn:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: #d0deeb;
  font-size: 0.92rem;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-note span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(37, 198, 184, 0.12);
}

.phone-stage {
  display: grid;
  justify-items: center;
  min-height: 632px;
  position: relative;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 70px 14px 44px;
  border: 1px solid rgba(215, 173, 85, 0.24);
  border-radius: 28px;
  transform: rotate(-5deg);
  background: rgba(255, 255, 255, 0.045);
}

.phone {
  position: relative;
  width: min(100%, 318px);
  min-height: 624px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 28%),
    #050d19;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 590px;
  overflow: hidden;
  border-radius: 24px;
  background: #f7fafc;
}

.app-top {
  padding: 22px 18px 17px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(37, 198, 184, 0.18), transparent 44%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.app-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.83rem;
  font-weight: 850;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.metric {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  font-size: 1.42rem;
}

.metric small {
  color: #c8d9e8;
}

.app-body {
  padding: 16px;
}

.pipeline {
  display: grid;
  gap: 10px;
}

.screen-card {
  padding: 14px;
  border: 1px solid #e5edf4;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(6, 23, 47, 0.06);
}

.screen-card b {
  display: block;
  color: var(--navy);
}

.screen-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8eef4;
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--turquoise), var(--gold));
}

.section {
  padding: 92px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, #f8fafc, #eef4f8);
}

.section.dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 198, 184, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #071426 68%);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
}

.section-head p,
.lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-head p,
.dark .lead {
  color: #c7d7e6;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 26px;
  border: 1px solid rgba(220, 230, 238, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 253, 0.98));
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 198, 184, 0.34);
  box-shadow: 0 22px 58px rgba(6, 23, 47, 0.12);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 850;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 198, 184, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(37, 198, 184, 0.16), rgba(215, 173, 85, 0.14));
  font-weight: 900;
}

.reason-band {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: center;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.reason-item strong {
  color: var(--paper);
}

.check {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
}

.visual-panel {
  min-height: 390px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(37, 198, 184, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-dashboard {
  display: grid;
  gap: 14px;
}

.mini-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.mini-row small {
  color: #c7d7e6;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(215, 173, 85, 0.72);
  box-shadow: 0 24px 70px rgba(215, 173, 85, 0.18);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--turquoise));
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 11px;
  border-radius: 99px;
  color: var(--navy);
  background: #fff4d9;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: 2.35rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #344258;
}

.list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
}

.list li::before {
  content: "\2713";
  color: var(--success);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(6, 23, 47, 0.05);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  font-size: 1.35rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-content {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-content {
  display: block;
}

.page-hero {
  padding: 86px 0 76px;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 10%, rgba(37, 198, 184, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-bottom: 1px solid rgba(215, 173, 85, 0.28);
}

.page-hero h1 {
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  font-weight: 900;
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #d5e3ef;
  font-size: 1.16rem;
}

.content {
  max-width: 900px;
  padding: 2px 0;
}

.content h2 {
  margin-top: 36px;
  color: var(--navy);
  font-size: 1.72rem;
  font-weight: 900;
}

.content p,
.content li {
  color: #435168;
}

.content a {
  color: var(--success);
  font-weight: 850;
}

.support-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.footer {
  padding: 58px 0 28px;
  color: #c7d7e6;
  background:
    linear-gradient(180deg, #07172f, #050f1d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: var(--paper);
}

.footer p,
.footer a {
  color: #c7d7e6;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-grid,
  .reason-band,
  .grid-2,
  .support-box {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone {
    min-height: auto;
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 48px 0 38px;
  }

  .store-btn,
  .btn {
    width: 100%;
  }

  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .phone {
    width: min(100%, 286px);
  }

  .phone-stage::before {
    inset: 52px 0 38px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Product image and trust sections */
.hero-media {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-media img {
  width: min(100%, 430px);
  max-height: 690px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.story-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.story-images img,
.screenshot-grid img,
.image-panel img {
  width: 100%;
  border: 1px solid rgba(220, 230, 238, 0.38);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(6, 23, 47, 0.18);
  object-fit: cover;
  object-position: top center;
}

.story-images img:nth-child(2) {
  margin-top: 48px;
}

.trust-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 198, 184, 0.2), transparent 30%),
    linear-gradient(135deg, #06172f, #07101f 72%);
}

.trust-section h2 {
  color: var(--paper);
}

.trust-section p {
  color: #d5e3ef;
}

.trust-lead {
  font-size: 1.18rem;
  font-weight: 750;
}

.trust-card {
  padding: 30px;
  border: 1px solid rgba(215, 173, 85, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.trust-card h3 {
  color: var(--paper);
  font-size: 1.45rem;
}

.trust-card .list {
  color: #d5e3ef;
}

.trust-card .list li::before {
  color: var(--gold-2);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  font-size: 1.3rem;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.feature-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(220, 230, 238, 0.96);
  border-radius: 999px;
  color: #22334a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(6, 23, 47, 0.06);
  font-weight: 750;
  font-size: 0.94rem;
}

.image-panel {
  padding: 16px;
  overflow: hidden;
}

.image-panel img {
  max-height: 640px;
}

.screenshots-section {
  background: #06172f;
  color: var(--paper);
}

.screenshots-section .section-head p {
  color: #c7d7e6;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.12);
}

.screenshot-grid img {
  min-width: 180px;
  max-height: 560px;
}

.pricing-grid .annual {
  border-color: rgba(37, 198, 184, 0.46);
}

.center-row {
  justify-content: center;
}

@media (max-width: 920px) {
  .story-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    width: min(100%, 360px);
    max-height: 560px;
  }

  .screenshot-grid {
    grid-template-columns: repeat(6, 210px);
  }
}

@media (max-width: 640px) {
  .story-images {
    grid-template-columns: 1fr;
  }

  .story-images img:nth-child(2) {
    margin-top: 0;
  }

  .trust-card {
    padding: 22px;
  }

  .feature-cloud {
    justify-content: flex-start;
  }

  .feature-cloud span {
    width: 100%;
    border-radius: var(--radius);
  }

  .screenshot-grid {
    grid-template-columns: repeat(6, 78vw);
  }
}


/* Compact premium homepage refinements */
.compact-hero {
  min-height: auto;
}

.compact-hero .hero-grid {
  padding: 46px 0 34px;
}

.compact-hero .hero-media img {
  width: min(100%, 360px);
  max-height: 540px;
}

.compact-section {
  padding: 66px 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.11);
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.social-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-btn {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.88), rgba(131, 58, 180, 0.88));
}

.app-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.88fr);
  gap: 38px;
  align-items: center;
}

.app-slider {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.slider-track {
  position: relative;
  width: min(100%, 360px);
  min-height: 580px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slide img {
  width: 100%;
  max-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.slide-caption {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 23, 47, 0.82);
  backdrop-filter: blur(14px);
}

.slide-caption strong {
  color: var(--paper);
}

.slide-caption a {
  color: var(--gold-2);
  font-weight: 850;
  white-space: nowrap;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 24px;
  background: var(--gold);
}

.light-buttons .store-btn {
  color: var(--navy);
  border-color: rgba(6, 23, 47, 0.16);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(6, 23, 47, 0.08);
}

.light-buttons .store-btn:first-child {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

@media (max-width: 920px) {
  .app-showcase {
    grid-template-columns: 1fr;
  }

  .app-slider {
    min-height: 590px;
  }

  .slider-btn.prev {
    left: calc(50% - 230px);
  }

  .slider-btn.next {
    right: calc(50% - 230px);
  }
}

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

  .social-btn {
    width: 100%;
  }

  .app-slider {
    min-height: 560px;
  }

  .slider-track {
    width: min(100%, 310px);
    min-height: 535px;
  }

  .slide img {
    max-height: 520px;
  }

  .slider-btn {
    top: auto;
    bottom: -4px;
    transform: none;
  }

  .slider-btn.prev {
    left: calc(50% - 76px);
  }

  .slider-btn.next {
    right: calc(50% - 76px);
  }

  .slider-dots {
    margin-top: 56px;
  }

  .slide-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final homepage shortening pass */
.compact-hero .hero-grid {
  min-height: calc(100vh - 76px);
  padding: 34px 0 28px;
}

.hero-slider.app-slider {
  min-height: 548px;
}

.hero-slider .slider-track {
  width: min(100%, 330px);
  min-height: 520px;
}

.hero-slider .slide img {
  max-height: 510px;
}

.hero-slider .slider-btn.prev {
  left: -18px;
}

.hero-slider .slider-btn.next {
  right: -18px;
}

.hero-slider .slider-dots {
  margin-top: 12px;
}

.compact-section {
  padding: 46px 0;
}

.compact-section .section-head {
  margin-bottom: 24px;
}

.compact-trust-card {
  padding: 24px;
}

.compact-pricing .card {
  padding: 22px;
}

.compact-footer {
  padding-top: 42px;
}

@media (max-width: 920px) {
  .compact-hero .hero-grid {
    min-height: auto;
  }

  .hero-slider .slider-btn.prev {
    left: calc(50% - 214px);
  }

  .hero-slider .slider-btn.next {
    right: calc(50% - 214px);
  }
}

@media (max-width: 640px) {
  .compact-hero .hero-grid {
    padding: 34px 0 24px;
  }

  .hero-slider.app-slider {
    min-height: 532px;
  }

  .hero-slider .slider-track {
    width: min(100%, 300px);
    min-height: 508px;
  }

  .hero-slider .slide img {
    max-height: 500px;
  }
}

/* v4 hero stability and deploy-safe overrides */
.compact-hero {
  min-height: auto !important;
}

.compact-hero .hero-grid {
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.72fr) !important;
  min-height: auto !important;
  padding: 46px 0 42px !important;
  gap: 48px !important;
}

.compact-hero h1 {
  max-width: 680px !important;
  font-size: clamp(2.8rem, 4.6vw, 4.9rem) !important;
  line-height: 1.05 !important;
}

.compact-hero .hero p {
  max-width: 620px !important;
}

.compact-hero .hero-media {
  min-width: 0 !important;
  align-self: center !important;
}

.hero-slider.app-slider {
  width: 100% !important;
  min-height: 590px !important;
}

.hero-slider .slider-track {
  width: min(100%, 390px) !important;
  min-height: 560px !important;
  margin: 0 auto !important;
}

.hero-slider .slide {
  display: grid !important;
  place-items: center !important;
}

.hero-slider .slide img {
  width: auto !important;
  height: min(560px, 62vh) !important;
  max-width: 100% !important;
  max-height: 560px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #06172f !important;
}

.hero-slider .slide-caption {
  right: 22px !important;
  bottom: 22px !important;
  left: 22px !important;
  padding: 12px 14px !important;
}

.hero-slider .slider-btn.prev {
  left: -10px !important;
}

.hero-slider .slider-btn.next {
  right: -10px !important;
}

.store-row .store-btn,
.store-row .social-btn {
  min-width: 156px !important;
}

@media (max-width: 1100px) {
  .compact-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr) !important;
  }

  .compact-hero h1 {
    font-size: clamp(2.45rem, 5vw, 4rem) !important;
  }
}

@media (max-width: 920px) {
  .compact-hero .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-slider.app-slider {
    min-height: 560px !important;
  }

  .hero-slider .slider-track {
    width: min(100%, 350px) !important;
    min-height: 540px !important;
  }

  .hero-slider .slide img {
    height: min(540px, 70vh) !important;
  }

  .hero-slider .slider-btn.prev {
    left: calc(50% - 220px) !important;
  }

  .hero-slider .slider-btn.next {
    right: calc(50% - 220px) !important;
  }
}

@media (max-width: 640px) {
  .compact-hero .hero-grid {
    padding: 34px 0 30px !important;
    gap: 28px !important;
  }

  .compact-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem) !important;
  }

  .hero-slider.app-slider {
    min-height: 520px !important;
  }

  .hero-slider .slider-track {
    width: min(100%, 300px) !important;
    min-height: 500px !important;
  }

  .hero-slider .slide img {
    height: min(500px, 68vh) !important;
  }
}

/* Brand logo and footer social */
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(6, 23, 47, 0.18);
}

.footer-social {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* v5 footer Instagram icon fix */
.footer .footer-instagram {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  margin: 8px 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  color: #c7d7e6 !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.footer .footer-instagram:hover {
  color: var(--gold-2) !important;
  border-color: rgba(240, 216, 147, 0.38) !important;
  background: rgba(240, 216, 147, 0.08) !important;
}

.footer .footer-instagram svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
}

/* v6 pricing trial card */
.pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card.trial {
  border-color: rgba(37, 198, 184, 0.46);
}

.price-card.trial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise), var(--gold));
}

@media (max-width: 920px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* v8 conversion-focused hero */
.compact-hero h1 {
  max-width: 720px !important;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem) !important;
}

.compact-hero .eyebrow {
  color: #d7fff9 !important;
}

.hero-cta-row {
  gap: 14px !important;
  margin-top: 34px !important;
}

.hero-cta-row .store-btn {
  min-width: 218px !important;
  min-height: 58px !important;
  gap: 12px !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  transform-origin: center !important;
}

.hero-cta-row .store-btn svg {
  flex: 0 0 auto !important;
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
}

.hero-cta-row .store-btn span {
  white-space: nowrap !important;
}

.hero-cta-row .store-btn-apple {
  color: #07172f !important;
  border-color: rgba(240, 216, 147, 0.9) !important;
  background: linear-gradient(135deg, #ffe7a4, #d7ad55 58%, #f0d893) !important;
}

.hero-cta-row .store-btn-google {
  color: #ffffff !important;
  border-color: rgba(37, 198, 184, 0.62) !important;
  background: linear-gradient(135deg, #1f8bff, #25c6b8 58%, #0f6fb8) !important;
}

.hero-cta-row .store-btn:hover {
  transform: translateY(-3px) scale(1.035) !important;
  filter: brightness(1.06) saturate(1.08) !important;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(37, 198, 184, 0.1) !important;
}

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

.benefit-pill {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--paper);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.benefit-emoji {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(37, 198, 184, 0.14);
  font-size: 1.2rem;
  line-height: 1;
}

.benefit-pill strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.benefit-pill small {
  display: block;
  margin-top: 4px;
  color: #c7d7e6;
  font-size: 0.82rem;
  line-height: 1.28;
}

@media (max-width: 1100px) {
  .hero-benefits {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 920px) {
  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 760px) {
  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-cta-row .store-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 640px) {
  .compact-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.05rem) !important;
  }

  .hero-cta-row {
    margin-top: 28px !important;
  }

  .benefit-pill {
    min-height: 70px;
    padding: 12px;
  }
}

/* EIDS FAQ readability */
.faq-content p {
  margin: 0 0 12px;
}
.faq-content p:last-child {
  margin-bottom: 0;
}


/* Homepage video showcase */
.video-showcase {
  background:
    radial-gradient(circle at 82% 20%, rgba(53, 211, 202, 0.18), transparent 30%),
    linear-gradient(135deg, #06162c 0%, #071d38 52%, #041022 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 42px 0;
}

.video-showcase-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
}

.video-showcase-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 10px 0 16px;
  max-width: 680px;
}

.video-showcase-copy p:not(.eyebrow) {
  color: rgba(233, 241, 252, 0.82);
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.video-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(53, 211, 202, 0.08) inset;
  overflow: hidden;
  padding: 10px;
}

.video-frame video {
  aspect-ratio: 16 / 9;
  background: #020916;
  border-radius: 16px;
  display: block;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 900px) {
  .video-showcase {
    padding: 32px 0;
  }

  .video-showcase-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .video-showcase-copy h2,
  .video-showcase-copy p:not(.eyebrow) {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .video-showcase {
    padding: 24px 0;
  }

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

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

/* Homepage video wide focus */
.video-showcase {
  padding: 34px 0;
}

.video-showcase-grid {
  display: block;
  max-width: 1180px;
}

.video-frame {
  margin: 0 auto;
  max-width: 1120px;
  padding: 12px;
}

.video-frame video {
  max-height: none;
}

@media (max-width: 760px) {
  .video-showcase {
    padding: 18px 0;
  }

  .video-frame {
    padding: 6px;
  }
}

/* Fullscreen background video hero */
.video-showcase {
  background: #020916;
  border: 0;
  height: clamp(430px, 58vw, 760px);
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-showcase::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.video-showcase .container,
.video-showcase-grid {
  height: 100%;
  max-width: none;
  padding: 0;
  width: 100%;
}

.video-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  margin: 0;
  max-width: none;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.video-frame video {
  aspect-ratio: auto;
  border-radius: 0;
  display: block;
  height: 100%;
  max-height: none;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 760px) {
  .video-showcase {
    height: clamp(300px, 72vw, 520px);
    padding: 0;
  }
}

/* Full frame video refinement */
.video-showcase {
  background: #000916;
  height: clamp(430px, 56vw, 780px);
}

.video-showcase::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.28) 55%, rgba(0, 0, 0, 0.48) 100%);
}

.video-frame {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.video-frame video {
  background: #000916;
  object-fit: contain;
}

.video-sound-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  color: #06162c;
  cursor: pointer;
  display: inline-flex;
  font: 800 0.95rem/1 var(--font);
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  position: absolute;
  right: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.video-sound-toggle:hover {
  background: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .video-showcase {
    height: clamp(260px, 64vw, 500px);
  }

  .video-sound-toggle {
    bottom: 14px;
    min-height: 40px;
    padding: 0 14px;
    right: 14px;
  }
}
