:root {
  --bg: #f4efe7;
  --bg-alt: #eaf1f5;
  --ink: #0b1320;
  --ink-soft: #3a495c;
  --line: #e2d4c5;
  --card: #ffffff;
  --accent: #d97746;
  --accent-2: #1f6f8b;
  --accent-3: #1f9d7a;
  --shadow: 0 22px 60px rgba(11, 19, 32, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1200px;
  --grad-hero: radial-gradient(circle at 12% 8%, rgba(217, 119, 70, 0.2), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(31, 111, 139, 0.18), transparent 40%),
    linear-gradient(120deg, #f7f2ea 0%, #edf5f7 45%, #f4efe7 100%);
  --grad-cta: linear-gradient(135deg, #d97746 0%, #e2905f 45%, #f2b38a 100%);
  --grad-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 100%);
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--grad-hero);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 231, 0.78);
  border-bottom: 1px solid rgba(226, 212, 197, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn svg,
.store-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 16px 30px rgba(217, 119, 70, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(217, 119, 70, 0.32);
}

.btn-secondary {
  border: 1px solid rgba(11, 19, 32, 0.15);
  background: rgba(255, 255, 255, 0.7);
}

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

.btn-text {
  color: var(--ink-soft);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(16, 20, 31, 0.15);
  align-items: center;
  justify-content: center;
}

.hero {
  padding: 90px 0 50px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3.8vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero p {
  margin-top: 18px;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.kpi {
  background: var(--grad-card);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  min-width: 140px;
}

.kpi strong {
  font-size: 1.4rem;
  display: block;
}

.kpi span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.device {
  position: relative;
  padding: 30px;
}

.device-shell {
  background: linear-gradient(145deg, #ffffff, #f1f1f4);
  border-radius: 42px;
  box-shadow: 0 30px 80px rgba(16, 20, 31, 0.25);
  padding: 20px;
}

.device-screen {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1320, #1a2738);
  padding: 18px;
  color: #f8f4f0;
}

.device-screen .chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.float-card {
  position: absolute;
  right: -20px;
  bottom: 12px;
  background: var(--card);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  width: 180px;
  animation: float 6s ease-in-out infinite;
}

.float-card span {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section {
  padding: 70px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section p.lead {
  max-width: 560px;
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--grad-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 216, 207, 0.5);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.15);
  color: #1c5c73;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(226, 216, 207, 0.7);
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: #fff;
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(11, 19, 32, 0.72);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.demo {
  background: linear-gradient(135deg, rgba(47, 121, 255, 0.12), rgba(255, 106, 61, 0.14));
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  box-shadow: var(--shadow);
}

.video-shell {
  border-radius: 20px;
  overflow: hidden;
  background: #0e1220;
  color: #fff;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-shell button {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 600;
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 106, 61, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(47, 121, 255, 0.3), transparent 50%);
}

.video-shell > * {
  position: relative;
  z-index: 1;
}

.metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(226, 216, 207, 0.7);
}

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

.cta-band {
  margin-top: 40px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.cta-band h3 {
  font-family: var(--font-display);
  font-size: 2rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  background: #fff;
  color: #10141f;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(226, 216, 207, 0.7);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 20, 31, 0.15);
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  color: var(--ink-soft);
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal {
  margin-top: 24px;
  font-size: 0.85rem;
}

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

.update-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(226, 216, 207, 0.7);
}

.update-card time {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.terms-list {
  display: grid;
  gap: 18px;
  padding-left: 22px;
  margin-top: 18px;
}

.terms-list h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.terms-list p {
  color: var(--ink-soft);
  margin-top: 8px;
}

.terms-list ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.16);
  color: #1c5c73;
  font-size: 0.75rem;
  font-weight: 600;
}

.pill-success {
  background: rgba(31, 157, 122, 0.18);
  color: #0d7b5b;
  margin-left: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 216, 207, 0.7);
  display: none;
  z-index: 100;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

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

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

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3rem);
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(226, 216, 207, 0.7);
}

.table th {
  background: #f3ede7;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    width: min(240px, 90vw);
  }

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

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

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .float-card {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 24px;
  }

  .section {
    padding: 55px 0;
  }
}

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

  .float-card,
  .btn-primary,
  .btn-secondary,
  .reveal {
    animation: none;
    transition: none;
  }
}
