:root {
  --brand: #323232;
  --brand-pressed: #1a1a1a;
  --accent: #e94560;
  --accent-soft: rgba(233, 69, 96, 0.12);
  --bg: #ffffff;
  --bg-muted: #f3f4f6;
  --bg-deep: #0f0f10;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --on-brand: #ffffff;
  --success: #16a34a;
  --radius: 18px;
  --max: 1120px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

.wrap {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 2rem, var(--max));
  }
}

@media (min-width: 1200px) {
  .wrap {
    width: min(100% - 3rem, var(--max));
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

@media (min-width: 640px) {
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
  }
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-brand);
}

.btn-primary:hover {
  background: #d63a54;
}

.btn-dark {
  background: var(--brand);
  color: var(--on-brand);
}

.btn-dark:hover {
  background: var(--brand-pressed);
}

.btn-ghost {
  background: transparent;
  color: var(--on-brand);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--brand);
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 64px;
}

@media (min-width: 640px) {
  .nav-inner {
    min-height: 72px;
    gap: 1rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .brand {
    font-size: 1.2rem;
    gap: 0.7rem;
  }
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-cta-desktop {
  display: none;
}

@media (min-width: 480px) {
  .nav-cta-desktop {
    display: inline-flex;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.6rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active,
.nav-drawer a.is-active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
}

.nav-drawer {
  display: none;
  padding: 0 1rem 1rem;
}

.nav-drawer.open {
  display: block;
}

.nav-drawer a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    margin-left: auto;
  }
  .nav-actions {
    margin-left: 0;
  }
  .nav-toggle {
    display: none;
  }
  .nav-drawer {
    display: none !important;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--on-brand);
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 20%,
      rgba(233, 69, 96, 0.28),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(255, 255, 255, 0.06),
      transparent 50%
    ),
    linear-gradient(155deg, #1a1a1a 0%, #323232 48%, #0f0f10 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  padding: 2.25rem 0 3rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-grid {
    gap: 2.5rem;
    padding: 3.5rem 0 4.5rem;
  }
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 4.5rem 0 5.5rem;
    gap: 3rem;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: rise 0.7s ease both;
}

.hero h1 {
  margin-top: 1rem;
  max-width: 12ch;
}

.hero .lead {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 320px;
  animation: rise 0.9s 0.12s ease both;
}

@media (min-width: 640px) {
  .hero-visual {
    min-height: 420px;
  }
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.35), transparent 70%);
  filter: blur(10px);
  animation: pulse 5s ease-in-out infinite;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Phone mockups */
.phone {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 9 / 19.2;
  border-radius: 36px;
  background: #111;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .phone {
    width: min(100%, 280px);
  }
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.phone-replace {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

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

.mock-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}

.mock-loc {
  color: var(--muted);
  font-size: 10px;
  padding: 0 14px 8px;
}

.mock-search {
  margin: 0 14px 10px;
  background: var(--bg-muted);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--muted);
}

.mock-section {
  padding: 0 14px 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}

.mock-card {
  margin: 0 14px 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.mock-card strong {
  font-size: 12px;
}

.mock-meta {
  color: var(--muted);
  font-size: 10px;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 10px;
  width: fit-content;
}

.mock-bar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding: 10px 6px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.mock-bar .active {
  color: var(--brand);
}

.mock-queue-head {
  background: var(--brand);
  color: #fff;
  padding: 18px 14px 14px;
}

.mock-queue-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.mock-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 10px;
  overflow: hidden;
}

.mock-progress > span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--accent);
}

.phones-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.phones-pair .phone:nth-child(1) {
  transform: translateY(18px) rotate(-6deg);
}

.phones-pair .phone:nth-child(2) {
  transform: translateY(-8px) rotate(5deg);
}

@media (max-width: 640px) {
  .phones-pair .phone:nth-child(2) {
    display: none;
  }
  .phones-pair .phone:nth-child(1) {
    transform: none;
  }
}

/* —— Sections —— */
section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  max-width: 38rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}

.muted-band {
  background: var(--bg-muted);
}

.control-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .control-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
  }
}

.benefit-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
}

.benefit strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
}

.benefit span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-dots {
  display: flex;
}

.trust-dots span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, #4b5563, #111827);
}

.trust-dots span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, var(--accent), #9f1239);
}

/* Feature blocks */
.feature {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.feature:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .feature.reverse .feature-copy {
    order: 2;
  }
}

.feature-copy .lead {
  margin-top: 0.85rem;
}

.feature-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.feature-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 500;
}

.feature-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 5px var(--accent);
}

.shot {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(160deg, #b13d3d, #121212 55%), var(--bg-muted);
  padding: 1.75rem;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shot::before {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

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

/* Other features */
.tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tile {
  padding: 1.35rem 1.25rem;
  border-top: 3px solid var(--accent);
  background: var(--bg);
  border-radius: 0 0 16px 16px;
}

.muted-band .tile {
  background: #fff;
}

.tile h3 {
  margin: 0.85rem 0 0.45rem;
}

.tile p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-muted);
  display: grid;
  place-items: center;
  color: var(--brand);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) and (max-width: 899px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid .plan:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 28rem;
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan.featured {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: none;
}

@media (min-width: 900px) {
  .plan.featured {
    transform: scale(1.03);
  }
}

.hero-cta .btn,
.cta-inner .btn {
  flex: 1 1 auto;
}

@media (min-width: 480px) {
  .hero-cta .btn,
  .cta-inner .btn {
    flex: 0 1 auto;
  }
}

@media (max-width: 479px) {
  .nav-actions .btn-dark {
    display: none;
  }
}

.plan.featured .muted-line,
.plan.featured .plan-list {
  color: rgba(255, 255, 255, 0.78);
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.7;
}

.muted-line {
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.plan-list li {
  padding-left: 1.2rem;
  position: relative;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan.featured .plan-list li::before {
  color: #fff;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
}

.quote p {
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.quote-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.quote-role {
  color: var(--muted);
  font-size: 0.88rem;
}

/* CTA band */
.cta {
  background:
    radial-gradient(
      ellipse 60% 80% at 90% 50%,
      rgba(233, 69, 96, 0.25),
      transparent 55%
    ),
    linear-gradient(120deg, #1a1a1a, #323232);
  color: #fff;
}

.cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: 1.4fr auto;
  }
}

.cta .lead {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
}

/* Footer */
footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.footer-grid > div:first-child .brand {
  justify-content: center;
}

.footer-grid > div:first-child p {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    text-align: left;
  }

  .footer-grid > div:first-child .brand {
    justify-content: flex-start;
  }

  .footer-grid > div:first-child p {
    margin-left: 0;
    margin-right: 0;
  }
}

footer .brand {
  color: #fff;
}

footer a:hover {
  color: #fff;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
}

@media (min-width: 800px) {
  .footer-bottom {
    justify-content: space-between;
    text-align: left;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal-links a:hover {
  color: #fff;
}

/* Legal pages (Terms / Privacy) */
.legal-page .nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.legal-main {
  padding: 7rem 0 4rem;
  background:
    radial-gradient(
      ellipse 50% 40% at 10% 0%,
      rgba(233, 69, 96, 0.08),
      transparent 55%
    ),
    linear-gradient(180deg, #fafafa 0%, #fff 40%);
  min-height: 70vh;
}

.legal-wrap {
  max-width: 760px;
}

.legal-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-main h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-meta {
  margin: 0.85rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-meta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-body h3 {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.legal-body p,
.legal-body li {
  color: #374151;
  font-size: 0.98rem;
}

.legal-body p {
  margin: 0 0 0.9rem;
}

.legal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: 0.45rem;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-also {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-also a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page footer .footer-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .legal-page footer .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
