:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0c0b0c;
  --text: #f7f2ea;
  --muted: #b7adbe;
  --muted-2: #7e7788;
  --line: rgba(255,255,255,0.14);
  --glass: rgba(255,255,255,0.075);
  --glass-strong: rgba(255,255,255,0.12);
  --gold: #ffd13f;
  --orange: #ff8a00;
  --pink: #ff5e9f;
  --purple: #6f62ff;
  --blue: #2d7cff;
  --shadow: 0 30px 100px rgba(0,0,0,0.55);
  --radius: 32px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -15%, rgba(255,196,65,0.17), transparent 32rem),
    radial-gradient(circle at 95% 18%, rgba(111,98,255,0.14), transparent 26rem),
    radial-gradient(circle at 6% 58%, rgba(255,94,159,0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, sans-serif;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 80%);
  z-index: -2;
}

.aurora {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 25%, rgba(255,138,0,0.28), transparent 23%),
    radial-gradient(circle at 78% 18%, rgba(111,98,255,0.22), transparent 25%),
    radial-gradient(circle at 62% 80%, rgba(255,94,159,0.16), transparent 31%),
    radial-gradient(circle at 42% 38%, rgba(255,209,63,0.13), transparent 28%);
  filter: blur(40px) saturate(130%);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-4deg) scale(1); }
  to { transform: translate3d(2%, 2%, 0) rotate(5deg) scale(1.08); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(780px, calc(100% - 28px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: 0 18px 60px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(135deg, rgba(18,18,22,0.82), rgba(18,14,20,0.62));
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 18px 80px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.2);
}

.brand, .site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
}
.brand img, .site-footer img { border-radius: 10px; box-shadow: 0 0 25px rgba(255,209,63,.18); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.09); }
.nav-links .nav-cta {
  color: #141007;
  background: linear-gradient(180deg, #fff3a3, #ffc62d 68%, #ff9b10);
  box-shadow: 0 0 26px rgba(255,198,45,.24);
}
.nav-links .nav-cta:hover { color: #141007; background: linear-gradient(180deg, #fff6b8, #ffd13f 68%, #ffa31d); }

.hero {
  min-height: 94vh;
  display: grid;
  place-items: center;
  justify-items: center;
  text-align: center;
  padding: 126px 0 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11);
  backdrop-filter: blur(22px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-icon {
  width: clamp(104px, 15vw, 164px);
  height: clamp(104px, 15vw, 164px);
  border-radius: 36px;
  margin: 28px 0 34px;
  box-shadow: 0 25px 70px rgba(255,183,0,.22), 0 0 0 1px rgba(255,255,255,.08);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 22px;
  padding-bottom: .07em;
  font-size: clamp(64px, 11vw, 140px);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 680;
  background: linear-gradient(180deg, #fff 0%, #f2eee7 40%, #b5b6c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.2;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.store-badge img { height: 52px; width: auto; }
.text-link {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.feature-row {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding: 88px 0;
}
.feature-row--reverse { grid-template-columns: minmax(320px, 1fr) minmax(280px, .85fr); }
.feature-row--reverse .phone-card { order: 2; }
.feature-row--reverse .feature-copy { order: 1; }

.phone-card {
  position: relative;
  border-radius: var(--radius);
  isolation: isolate;
  filter: drop-shadow(0 38px 90px rgba(0,0,0,.55));
}
.phone-card::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(42px);
  opacity: .7;
}
.phone-card img {
  width: min(100%, 470px);
  max-height: 760px;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 28px;
}
.phone-card--wide img { width: min(100%, 520px); }
.glow-card::before { background: rgba(255,146,41,.45); }
.purple-card::before { background: rgba(95,82,255,.35); }
.amber-card::before { background: rgba(255,132,0,.38); }
.sunrise-card::before { background: rgba(255,202,91,.52); }

.feature-copy h2, .how h2, .blog-teaser h2, .post-header h1, .blog-header h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 680;
}
.feature-copy p:not(.eyebrow), .how > p:not(.eyebrow), .blog-teaser p, .post p, .post li, .blog-card p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  font-weight: 560;
}
.feature-copy { max-width: 640px; }

.how { padding: 110px 0 70px; text-align: center; }
.how h2 { max-width: 820px; margin-inline: auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.glass-panel {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
}
.step {
  padding: 28px;
  text-align: left;
}
.step span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}
.step h3 { margin-bottom: 10px; font-size: 26px; letter-spacing: -.045em; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.45; }

.blog-teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 80px;
  margin-bottom: 90px;
  padding: 38px;
}
.blog-teaser h2 { font-size: clamp(36px, 5vw, 62px); max-width: 760px; }
.blog-teaser p { max-width: 730px; margin-bottom: 0; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  white-space: nowrap;
  padding: 0 22px;
  border-radius: 999px;
  color: #151007;
  background: linear-gradient(180deg, #fff0a3, #ffd13f 65%, #ff9a12);
  font-weight: 850;
  box-shadow: 0 0 40px rgba(255,209,63,.22);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 44px 0 60px;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.1);
}
.site-footer nav { display: flex; gap: 20px; font-weight: 700; }
.site-footer a:hover { color: white; }

/* Blog */
.blog-page, .post-page { padding-top: 142px; }
.blog-header, .post-header { padding: 58px 0 34px; text-align: center; }
.blog-header .pill, .post-header .pill {
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
}
.blog-header h1, .post-header h1 {
  width: min(1120px, 100%);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
  line-height: 1.04;
  padding-bottom: .08em;
}
.blog-header p, .post-header p {
  max-width: 780px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 580;
}
.blog-list {
  display: grid;
  gap: 16px;
  max-width: 940px;
  margin-inline: auto;
  padding-bottom: 100px;
}
.blog-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 16px;
  align-items: center;
  border-radius: 26px;
}
.blog-card > a {
  align-self: center;
  width: 88px;
  display: flex;
  justify-content: center;
}
.blog-card img {
  width: auto;
  height: 132px;
  border-radius: 16px;
  object-fit: contain;
  object-position: center;
}
.blog-card h2 { margin-bottom: 8px; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.052em; }
.blog-card p { margin-bottom: 12px; font-size: 17px; line-height: 1.35; }
.blog-card .read-more { color: var(--gold); font-weight: 850; }

.post {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding: 0 0 120px;
}
.post-hero-img {
  width: min(220px, calc(100% - 40px));
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 46px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.post h2 { margin: 52px 0 16px; font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.055em; }
.post p, .post li { font-size: 20px; line-height: 1.65; font-weight: 520; }
.post ul, .post ol { padding-left: 1.25rem; }
.post li { margin: 10px 0; }
.post a { color: var(--gold); border-bottom: 1px solid rgba(255,209,63,.4); }
.post .callout { padding: 24px; margin: 34px 0; }
.post .callout p { margin: 0; }
.post-meta { color: var(--muted-2); font-size: 14px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 840px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand span { display: none; }
  .nav-links { gap: 2px; font-size: 13px; }
  .nav-links a { padding: 9px 11px; }
  .hero { padding-top: 112px; min-height: 88vh; }
  .feature-row, .feature-row--reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 70px 0;
  }
  .feature-row--reverse .phone-card, .feature-row--reverse .feature-copy { order: initial; }
  .feature-copy { text-align: center; margin-inline: auto; }
  .phone-card img { max-height: 680px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step span { margin-bottom: 28px; }
  .blog-teaser { flex-direction: column; align-items: flex-start; }
  .blog-list { padding-bottom: 80px; }
  .blog-card { grid-template-columns: 72px 1fr; gap: 16px; }
  .blog-card > a { width: 72px; }
  .blog-card img { width: auto; height: 156px; object-fit: contain; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .section-shell { width: min(var(--max), calc(100% - 24px)); }
  h1 { font-size: clamp(54px, 18vw, 86px); }
  .hero-copy { font-size: 19px; }
  .store-badge img { height: 46px; }
  .phone-card img { border-radius: 22px; }
  .feature-copy h2, .how h2, .post-header h1, .blog-header h1 { font-size: clamp(40px, 13vw, 62px); }
  .blog-header, .post-header { padding-top: 42px; }
  .post-hero-img { width: min(190px, calc(100% - 24px)); height: auto; border-radius: 22px; }
  .blog-teaser, .step { padding: 22px; }
  .post p, .post li { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
