@font-face {
  font-family: 'SUIT Variable';
  src: url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --bg: #f4efe7;
  --surface: rgba(255, 250, 246, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-deep: #1b2436;
  --ink: #111827;
  --muted: #4e5a70;
  --line: rgba(17, 24, 39, 0.1);
  --navy: #16233a;
  --cobalt: #2b62d9;
  --sky: #dfe9ff;
  --apricot: #f2d7bd;
  --sage: #dce9dd;
  --rose: #f0dadd;
  --shadow-soft: 0 20px 45px rgba(22, 35, 58, 0.08);
  --shadow-strong: 0 32px 90px rgba(22, 35, 58, 0.18);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'SUIT Variable', sans-serif;
  background: radial-gradient(
      circle at top left,
      rgba(71, 117, 222, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 18%,
      rgba(227, 167, 98, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #faf6f0 0%, #f4efe7 46%, #edf2fb 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.8;
}

.ambient-top {
  top: 70px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: rgba(43, 98, 217, 0.14);
}

.ambient-side {
  left: -90px;
  bottom: 10%;
  width: 240px;
  height: 240px;
  background: rgba(222, 176, 121, 0.14);
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 14px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(22, 35, 58, 0.16);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: inline-flex;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.06);
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #4563aa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 510px);
  gap: 58px;
  padding-top: 44px;
}

.hero h1,
.section-heading h2,
.panel-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: 'SUIT Variable', sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: 76px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading h2,
.panel-copy h2,
.cta-copy h2 {
  font-size: 50px;
  line-height: 1.14;
  word-break: keep-all;
}

.hero-description,
.section-heading p,
.story-card p,
.feature-card p,
.routine-card p,
.cta-copy p,
.support-card-copy span,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.hero-description {
  max-width: 620px;
  margin: 26px 0 0;
  color: #3f4a5f;
  font-size: 17px;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.chip-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #15243d 0%, #295fd2 100%);
  box-shadow: 0 18px 36px rgba(41, 95, 210, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats,
.story-grid,
.showcase-grid,
.routine-grid {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-card,
.story-card,
.feature-card,
.routine-card,
.support-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 20px 18px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 15px;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

.hero-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preview-stage {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    160deg,
    rgba(20, 31, 51, 0.98),
    rgba(39, 66, 114, 0.92)
  );
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.preview-stage::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -56px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(12px);
}

.preview-stage-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.phone-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(250, 251, 255, 0.98),
    rgba(236, 242, 252, 0.98)
  );
}

.phone-topbar,
.preview-head,
.footer-links,
.support-links {
  display: flex;
  align-items: center;
}

.phone-topbar,
.preview-head {
  justify-content: space-between;
}

.phone-topbar {
  font-size: 13px;
  font-weight: 800;
}

.status-pill,
.weather-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.status-pill {
  background: rgba(43, 98, 217, 0.12);
  color: var(--cobalt);
}

.preview-card {
  padding: 18px;
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.08);
}

.card-label {
  color: #5472b2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.preview-head span:last-child {
  color: #4e5a70;
  font-size: 12px;
  font-weight: 700;
}

.weather-reading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.weather-reading strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  line-height: 0.9;
}

.weather-reading p,
.style-summary p,
.flow-card p {
  margin: 6px 0 0;
  color: #4e5a70;
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

.weather-chip {
  margin-top: 14px;
  background: #e6f3e9;
  color: #16603f;
}

.style-summary {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.style-summary strong,
.flow-card h3,
.story-card h3,
.feature-card h3,
.routine-card h3 {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.style-summary strong {
  font-size: 16px;
  line-height: 1.42;
  word-break: keep-all;
}

.premium-look-frame {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, #dfe8f8 0%, #f7faff 100%);
}

.premium-look-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.look-disclaimer {
  margin: 10px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
  word-break: keep-all;
}

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

.style-tags span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--sky);
  color: #2450b6;
  font-size: 12px;
  font-weight: 800;
}

.flow-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.scenario-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.panel-label {
  margin: 0 0 10px;
  color: #4d68ab;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.control-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.chip-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #15243d 0%, #2c61d4 100%);
  color: #ffffff;
}

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

.section-heading.narrow {
  max-width: 680px;
}

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

.story-card,
.feature-card,
.routine-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.story-index,
.routine-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.story-index {
  background: var(--apricot);
  color: var(--navy);
}

.showcase-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.feature-card-strong {
  background: linear-gradient(
    160deg,
    rgba(22, 35, 58, 0.98),
    rgba(44, 97, 212, 0.92)
  );
  color: #ffffff;
}

.feature-card-strong h3,
.feature-card-strong p,
.feature-card-strong .eyebrow {
  color: inherit;
}

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

.routine-card {
  background: rgba(255, 255, 255, 0.78);
}

.routine-card:nth-child(1) span {
  background: var(--sky);
  color: var(--cobalt);
}

.routine-card:nth-child(2) span {
  background: var(--sage);
  color: #255d39;
}

.routine-card:nth-child(3) span {
  background: var(--apricot);
  color: #8b4d15;
}

.routine-card:nth-child(4) span {
  background: var(--rose);
  color: #9c425b;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(22, 35, 58, 0.98),
    rgba(46, 84, 165, 0.94)
  );
  box-shadow: var(--shadow-strong);
}

.cta-copy,
.cta-copy p,
.cta-copy .eyebrow,
.cta-copy h2 {
  color: #ffffff;
}

.cta-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions,
.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.support-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-card-copy strong {
  font-size: 16px;
}

.support-email {
  color: var(--cobalt);
  font-size: 22px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 56px;
}

.footer-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.footer-copy {
  max-width: 520px;
  margin: 10px 0 0;
  font-size: 14px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .hero,
  .hero-stats,
  .story-grid,
  .showcase-grid,
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
  }

  .hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-radius: 22px;
  }

  .cta-card,
  .support-card,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .support-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 24px), var(--content));
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.14;
  }

  .section-heading h2,
  .panel-copy h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .preview-stage,
  .scenario-panel,
  .cta-card,
  .support-card {
    padding: 20px;
  }

  .phone-frame,
  .preview-card,
  .story-card,
  .feature-card,
  .routine-card {
    padding: 18px;
  }

  .weather-reading {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}
