:root {
  --bg: #f5eee3;
  --bg-soft: #fff8f0;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fffaf4;
  --text: #2d231d;
  --muted: #6d5d52;
  --line: rgba(138, 77, 42, 0.16);
  --primary: #8a4d2a;
  --primary-deep: #6e3b1d;
  --accent: #ffd6c2;
  --accent-strong: #f0b28d;
  --shadow: 0 24px 60px rgba(105, 68, 45, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 214, 194, 0.9), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(214, 184, 152, 0.34), transparent 24%),
    linear-gradient(180deg, #f7f0e6 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
}

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

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

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.38;
  z-index: 0;
}

.page-glow-left {
  top: -9rem;
  left: -10rem;
  background: rgba(255, 209, 179, 0.65);
}

.page-glow-right {
  right: -12rem;
  top: 24rem;
  background: rgba(227, 191, 170, 0.42);
}

.topbar,
.hero,
.highlights,
.feature-grid,
.download-band,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 8px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-download {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding: 52px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--primary);
}

.hero h1,
.section-heading h2,
.highlight-card h2,
.download-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.15rem, 7vw, 6rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.72;
}

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

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

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

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #a85f34 100%);
  color: #fff7f1;
  box-shadow: 0 18px 30px rgba(138, 77, 42, 0.25);
}

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

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(138, 77, 42, 0.14);
  background: rgba(255, 251, 245, 0.74);
  color: var(--muted);
  font-size: 0.93rem;
}

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

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.visual-orbit-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 214, 194, 0.6), rgba(255, 214, 194, 0));
  top: 50px;
  right: 0;
}

.visual-orbit-b {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(138, 77, 42, 0.17), rgba(138, 77, 42, 0));
  bottom: 40px;
  left: 22px;
}

.icon-card {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  width: min(330px, 88%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background: rgba(255, 250, 244, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.icon-card-art {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  overflow: hidden;
  flex: 0 0 auto;
}

.icon-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.icon-card-copy span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.icon-card-copy strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.phone-shot {
  width: min(420px, 82%);
  padding: 18px;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 244, 0.78)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 38px 90px rgba(99, 65, 43, 0.2);
  transform: rotate(-5deg);
}

.phone-shot img {
  border-radius: 30px;
  overflow: hidden;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 26px;
}

.highlight-card,
.feature-list,
.download-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.highlight-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius-xl);
}

.highlight-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.highlight-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.highlight-card p:last-child,
.download-copy p,
.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: 52px 0;
}

.section-heading h2,
.download-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  max-width: 10ch;
}

.feature-list {
  border-radius: 34px;
  overflow: hidden;
}

.feature-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 26px;
}

.feature-item + .feature-item {
  border-top: 1px solid var(--line);
}

.feature-index {
  color: var(--accent-strong);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.feature-item h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  padding: 24px 0 72px;
  align-items: center;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 34px;
}

.download-card strong {
  display: block;
  font-size: 1.14rem;
  margin-bottom: 4px;
}

.download-card span {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero,
  .feature-grid,
  .download-band,
  .highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .section-heading h2,
  .download-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .topbar,
  .footer,
  .download-card {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-download {
    text-align: center;
  }

  .hero {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-shot {
    width: min(360px, 92%);
    transform: rotate(-3deg);
  }

  .icon-card {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 18px;
    width: 100%;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }
}
