:root {
  --bg: #fcfaf5;
  --surface: #ffffff;
  --surface-soft: #f4f1e9;
  --text: #111111;
  --muted: #5f5f5f;
  --muted-strong: #3c3c3c;
  --line: rgba(17, 17, 17, 0.08);
  --accent: #d88c2d;
  --accent-deep: #b96b10;
  --accent-soft: rgba(216, 140, 45, 0.14);
  --shadow-sm: 0 16px 40px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 28px 80px rgba(17, 17, 17, 0.12);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 140, 45, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.03), transparent 30%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  border-color: rgba(216, 140, 45, 0.7);
  box-shadow: 0 0 0 4px rgba(216, 140, 45, 0.14);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  background: var(--text);
  color: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(244, 241, 233, 0.65));
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h1,
.section-heading h2,
.page-hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.lede,
.hero-subtitle,
.page-hero p {
  margin: 1rem 0 0;
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(22px);
  background: rgba(252, 250, 245, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.topbar-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.1);
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.97rem;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(17, 17, 17, 0.05);
}

.nav-cta {
  padding-inline: 1.1rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  margin: 2px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.15);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(17, 17, 17, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: rgba(17, 17, 17, 0.09);
}

.button-secondary:hover {
  background: #ffffff;
}

.hero {
  padding-top: 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

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

.key-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 2rem 0 0;
}

.key-points li,
.pill {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  box-shadow: var(--shadow-sm);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
}

.glow-orb {
  position: absolute;
  inset: auto;
  width: min(76vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 38%, transparent 68%),
    radial-gradient(circle at center, rgba(216, 140, 45, 0.25), rgba(216, 140, 45, 0.05) 60%, transparent 72%);
  filter: blur(8px);
}

.device-frame {
  position: relative;
  width: min(100%, 390px);
  padding: 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, #fefefe, #f2efe8);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.device-screen {
  overflow: hidden;
  border-radius: 30px;
  background: #0d0d0d;
}

.device-screen img {
  width: 100%;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 220px;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.float-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.15;
}

.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.float-top {
  top: 10%;
  left: -4%;
}

.float-bottom {
  right: -5%;
  bottom: 10%;
}

.icon-badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  flex: 0 0 auto;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 800;
}

.statement-card,
.cta-band,
.page-card,
.contact-card,
.support-form,
.legal-aside,
.marketing-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.statement-card {
  padding: 1.5rem;
}

.stat-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 0;
  padding: 0;
}

.stat-strip li {
  padding: 1rem;
  border-radius: 22px;
  background: var(--surface-soft);
}

.stat-strip strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

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

.features-list {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  display: grid;
  gap: 2rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-card.reverse .feature-copy {
  order: 2;
}

.feature-card.reverse .feature-media {
  order: 1;
}

.feature-copy {
  align-self: center;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.feature-index::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-media {
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(216, 140, 45, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8, #f2eee5);
}

.feature-media .device-frame {
  width: min(100%, 330px);
}

.safety-grid,
.marketing-grid,
.support-grid,
.brand-assets-grid {
  display: grid;
  gap: 1rem;
}

.safety-card,
.faq-card,
.keyword-card {
  padding: 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
}

.safety-card h3,
.faq-card h3,
.keyword-card h3,
.marketing-card h2,
.legal-article h2 {
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.safety-card p,
.faq-card p,
.keyword-card p,
.marketing-card p,
.legal-article p,
.legal-article li,
.contact-card p,
.support-form p {
  margin: 0;
  color: var(--muted);
}

.safety-card p + p,
.legal-article p + p {
  margin-top: 0.85rem;
}

.screenshot-grid {
  display: grid;
  gap: 1rem;
}

.screenshot-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.screenshot-card img {
  width: 100%;
}

.cta-band {
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(216, 140, 45, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-brand p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--muted-strong);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.page-card,
.marketing-card,
.contact-card,
.support-form,
.legal-aside {
  padding: 1.5rem;
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
}

.legal-aside h2,
.contact-card h2,
.support-form h2,
.marketing-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.legal-aside ul,
.legal-article ul,
.legal-article ol {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-article {
  display: grid;
  gap: 1.5rem;
}

.legal-article section {
  padding: 1.65rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
}

.legal-article h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.keyword-cloud span {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted-strong);
}

.brand-assets-grid .asset-tile {
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
}

.asset-tile-logo {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.asset-tile-logo img {
  width: min(100%, 210px);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.support-grid {
  align-items: start;
}

.contact-card a {
  color: var(--accent-deep);
  font-weight: 700;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-list li {
  padding: 1rem;
  border-radius: 20px;
  background: var(--surface-soft);
}

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

details {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-sm);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--accent-deep);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1rem;
}

.form-note,
.helper-text,
.feedback {
  color: var(--muted);
  font-size: 0.95rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 56px;
  width: auto;
}

.badge-row {
  margin-top: 1.5rem;
}

.muted {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0s);
}

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

@media (min-width: 720px) {
  .hero-grid,
  .feature-card,
  .marketing-grid,
  .support-grid,
  .brand-assets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 960px) {
  .section {
    padding: 6.5rem 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr auto;
    align-items: end;
    justify-content: space-between;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    align-items: start;
  }

  .legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .site-nav a,
  .site-nav .button {
    width: 100%;
  }

  .float-top {
    left: 0;
  }

  .float-bottom {
    right: 0;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 2.5rem;
  }

  .feature-card.reverse .feature-copy,
  .feature-card.reverse .feature-media {
    order: initial;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .section,
  .page-hero {
    padding-bottom: 4rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

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