:root {
  --ink: #172026;
  --ink-soft: #5f6a70;
  --paper: #fff9ef;
  --paper-strong: #fff2de;
  --brand: #f26a2e;
  --brand-deep: #cc4e16;
  --teal: #167a72;
  --sky: #c8ebe6;
  --line: #ead8bd;
  --card: #fffdf8;
  --shadow: 0 30px 80px rgba(24, 25, 20, 0.13);
  --radius-xl: 28px;
  --radius-md: 16px;
  --maxw: 1160px;
  --text-body: var(--ink);
  --text-muted: var(--ink-soft);
  --link: var(--teal);
  --link-hover: var(--brand-deep);
  --footer-text: var(--ink-soft);
  --footer-link: var(--ink);
  --footer-link-hover: var(--brand-deep);
  --footer-link-gap: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #ffe2b5 0%, var(--paper) 38%, #fff 100%);
  color: var(--ink);
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
}

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

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

.bg-orb-a {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -90px;
  background: rgba(242, 106, 46, 0.26);
}

.bg-orb-b {
  width: 430px;
  height: 430px;
  bottom: -180px;
  left: -120px;
  background: rgba(22, 122, 114, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px min(4vw, 40px);
  backdrop-filter: blur(10px);
  background: rgba(255, 249, 239, 0.75);
  border-bottom: 1px solid rgba(204, 78, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(22, 24, 28, 0.2);
}

.brand-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  background: linear-gradient(120deg, var(--brand), #ff8d3f);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(242, 106, 46, 0.25);
}

.cta-small {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

main {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: min(6vw, 64px);
  padding: clamp(42px, 7vw, 90px) 0 40px;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: #1b1d1f;
}

h1,
h2 {
  font-family: "Fraunces", "Iowan Old Style", serif;
  line-height: 1.03;
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.subhead {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #324047;
  font-size: 0.95rem;
}

.signal-list li::before {
  content: "●";
  color: var(--teal);
  margin-right: 8px;
}

.phone-stack {
  position: relative;
  min-height: 560px;
}

.phone-card {
  position: absolute;
  width: min(320px, 74vw);
  border-radius: 40px;
  border: 8px solid #14161a;
  box-shadow: var(--shadow);
  transform-origin: center;
}

.card-primary {
  top: 0;
  left: 0;
  transform: rotate(-8deg);
}

.card-secondary {
  top: 90px;
  right: 0;
  transform: rotate(9deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 56px;
}

.stats article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.stats span {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.features,
.preview,
.gallery,
.faq,
.closing {
  margin-top: 72px;
}

.features h2,
.preview h2,
.gallery h2,
.faq h2,
.closing h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  background: linear-gradient(155deg, #fff, var(--paper-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature-card h3 {
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.preview-copy p {
  color: var(--ink-soft);
}

.video-shell {
  background: #0e1114;
  border-radius: var(--radius-xl);
  border: 1px solid #1e2329;
  padding: 10px;
  box-shadow: var(--shadow);
}

video {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.gallery-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gallery-row img {
  width: 100%;
  border-radius: 24px;
  border: 5px solid #13161c;
  box-shadow: 0 16px 26px rgba(18, 20, 25, 0.25);
}

.faq details {
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
}

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

.faq p {
  color: var(--ink-soft);
  margin: 10px 0 4px;
  line-height: 1.6;
}

.closing {
  background: linear-gradient(140deg, #1c5f5a, #2a8c83);
  color: #e9ffff;
  border-radius: var(--radius-xl);
  padding: min(8vw, 58px);
}

.closing h2 {
  color: #fff;
}

.closing p {
  color: rgba(233, 255, 255, 0.9);
  max-width: 46ch;
}

.closing .cta {
  margin-top: 10px;
}

.site-footer {
  width: min(var(--maxw), 92vw);
  margin: 36px auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--footer-text);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--footer-link-gap);
}

.footer-links a {
  color: var(--footer-link);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--footer-link-hover);
}

.legal,
.support {
  max-width: 680px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.legal h1,
.support h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.support .subtitle {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal h2,
.support h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal p,
.legal li,
.support p,
.support li {
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--text-body);
}

.legal ul,
.support ul {
  padding-left: 1.5rem;
}

.legal a,
.support a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover,
.support a:hover {
  color: var(--link-hover);
}

.support details {
  margin-bottom: 1rem;
}

.support summary {
  cursor: pointer;
  font-weight: 500;
  padding: 0.5rem 0;
}

.support details p {
  padding-left: 0.5rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero,
  .preview {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-top: 16px;
  }

  .phone-stack {
    min-height: 540px;
  }

  .card-primary {
    left: 10%;
  }

  .card-secondary {
    right: 10%;
  }

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

@media (max-width: 740px) {
  .site-header {
    padding: 12px 14px;
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    padding-bottom: 2px;
  }

  main {
    width: min(680px, 94vw);
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    max-width: none;
  }

  .phone-stack {
    min-height: 440px;
  }

  .phone-card {
    width: min(250px, 66vw);
    border-radius: 30px;
  }

  .card-primary {
    left: 1%;
    transform: rotate(-6deg);
  }

  .card-secondary {
    top: 70px;
    right: 1%;
    transform: rotate(7deg);
  }

  .stats,
  .feature-grid,
  .gallery-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 26px;
  }

  .legal,
  .support {
    padding: 4.5rem 1rem 3rem;
  }
}
