﻿@font-face {
  font-family: "SoraCaramelo";
  src: url("assets/sora-variable.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "InterCaramelo";
  src: url("assets/inter-variable.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-elev: #0f0f10;
  --bg-soft: #171719;
  --text: #f5f5f5;
  --text-dim: #c7c7c7;
  --line: #2a2a2c;
  --brand: #d4af37;
  --brand-strong: #f1c84b;
  --ok: #8fd694;
  --radius: 18px;
  --container: min(1120px, calc(100% - 2rem));
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(212, 175, 55, 0.18), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(241, 200, 75, 0.1), transparent 35%),
    linear-gradient(180deg, #080808 0%, #040404 100%);
  font-family: "InterCaramelo", "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  color: #f8d86e;
}

h1,
h2,
h3 {
  font-family: "SoraCaramelo", "Trebuchet MS", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

code {
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.12rem 0.4rem;
  border-radius: 0.4rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4.25rem 0;
}

.section--tight {
  padding-top: 1.2rem;
  padding-bottom: 1.8rem;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.025));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff8d2, var(--brand));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
}

.bg-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.bg-orb--one {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  left: -5rem;
  background: rgba(212, 175, 55, 0.75);
  animation: drift 14s ease-in-out infinite alternate;
}

.bg-orb--two {
  width: 20rem;
  height: 20rem;
  bottom: -8rem;
  right: -6rem;
  background: rgba(123, 100, 34, 0.45);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -16px, 0) scale(1.08);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(140%) blur(8px);
}

.site-header.scrolled {
  background: rgba(5, 5, 6, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 7px 18px rgba(212, 175, 55, 0.24);
}

.brand-logo {
  width: 6.6rem;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.94rem;
}

.main-nav a {
  color: #f0f0f0;
}

.main-nav a:hover {
  color: var(--brand-strong);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 0.7rem;
  padding: 0.45rem 0.75rem;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.93rem;
  padding: 0.72rem 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  color: #1f1f1f;
  background: linear-gradient(135deg, #f8d86e, var(--brand));
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
}

.btn:hover {
  color: #0b0b0b;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.34);
}

.btn:focus-visible,
.faq-question:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid #fff7d0;
  outline-offset: 2px;
}

.btn--small {
  padding: 0.52rem 0.9rem;
  font-size: 0.84rem;
}

.btn--ghost {
  color: #efefef;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  padding-top: 3.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.1rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 17ch;
}

.lead {
  margin-top: 1rem;
  color: var(--text-dim);
  max-width: 52ch;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #ededed;
  font-size: 0.82rem;
  padding: 0.42rem 0.74rem;
}

.hero-visual {
  position: relative;
}

.phone-stage {
  position: relative;
  max-width: 24rem;
  margin-inline: auto;
}

.phone-frame {
  overflow: hidden;
  border-radius: 2rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    #090909;
  box-shadow: var(--shadow);
}

.screen-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.screen-track img {
  width: 100%;
  flex: 0 0 100%;
  border-radius: 1.55rem;
}

.float-card {
  position: absolute;
  width: min(12.5rem, 45vw);
  padding: 0.8rem 0.95rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 16, 17, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.float-card--top {
  top: 5%;
  right: -17%;
}

.float-card--bottom {
  bottom: 6%;
  left: -17%;
}

.kicker {
  color: var(--text-dim);
  font-size: 0.76rem;
}

.value {
  margin-top: 0.26rem;
  font-family: "SoraCaramelo", sans-serif;
  font-size: 1.45rem;
}

.label {
  font-size: 0.78rem;
  color: #d8d8d8;
}

.carousel-dots {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.carousel-dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
}

.metrics-grid,
.cards-grid,
.ux-grid,
.privacy-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.metric,
.card,
.ux-card,
.privacy-item,
.cta-block,
.policy-highlight,
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.metric,
.card,
.ux-card,
.privacy-item {
  padding: 1.05rem;
}

.metric h3,
.card h3,
.ux-card h3,
.privacy-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.metric p,
.card p,
.ux-card p,
.privacy-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  max-width: 28ch;
}

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

.policy-highlight {
  margin-top: 1rem;
  padding: 1.2rem;
}

.policy-highlight h3 {
  margin-bottom: 0.65rem;
}

.policy-highlight p {
  color: var(--text-dim);
}

.policy-highlight p + p {
  margin-top: 0.65rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 1rem 1.05rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 1.05rem 1.05rem;
  color: var(--text-dim);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.cta-block {
  padding: 1.45rem;
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 0.55rem;
}

.cta-block p {
  color: var(--text-dim);
  max-width: 58ch;
  margin: 0 auto;
}

.cta-block .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.1rem 0 1.4rem;
  background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
  grid-template-columns: 1.5fr 0.8fr 1fr;
}

.footer-title {
  font-family: "SoraCaramelo", sans-serif;
  margin-bottom: 0.52rem;
}

.muted {
  color: #aaaaaa;
  font-size: 0.86rem;
  margin-top: 0.45rem;
}

.copyright {
  text-align: center;
  margin: 1.4rem 0 0;
  color: #9a9a9a;
  font-size: 0.84rem;
}

.policy-doc {
  max-width: 860px;
}

.policy-doc h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.policy-meta {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.policy-section + .policy-section {
  margin-top: 1.25rem;
}

.policy-section h2 {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  margin-bottom: 0.45rem;
}

.policy-section p,
.policy-section li {
  color: var(--text-dim);
}

.policy-section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.policy-section li + li {
  margin-top: 0.32rem;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .metrics-grid,
  .cards-grid,
  .ux-grid,
  .privacy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .phone-stage {
    max-width: 20rem;
  }

  .float-card--top,
  .float-card--bottom {
    position: static;
    margin: 0.75rem auto 0;
    width: 100%;
    max-width: 20rem;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 4.4rem;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 8, 9, 0.96);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .section {
    padding: 3.35rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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