:root {
  --coral: #ff6b57;
  --coral-deep: #ef5d49;
  --coral-soft: #ffe4d9;
  --yellow: #ffc95a;
  --mint: #35c6a7;
  --ink: #28324b;
  --muted: #6f7688;
  --background: #fffaf5;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-soft: #fff4ee;
  --border: #f2d8c8;
  --border-strong: #e6c2ac;
  --shadow-soft: 0 18px 48px rgba(40, 50, 75, 0.08);
  --shadow-card: 0 24px 60px rgba(40, 50, 75, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1160px;
  --font-heading: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 87, 0.12), transparent 28%),
    radial-gradient(circle at left 70%, rgba(53, 198, 167, 0.12), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #fff7f0 45%, #fffaf7 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 107, 87, 0.26);
  outline-offset: 4px;
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 245, 0.78);
  border-bottom: 1px solid rgba(242, 216, 200, 0.7);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--coral), #ff8a70);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(255, 107, 87, 0.28);
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

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

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

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 107, 87, 0.2);
}

.button-primary:hover {
  background: var(--coral-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(242, 216, 200, 0.9);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.95);
}

.button.is-disabled,
.store-badge.is-disabled {
  opacity: 0.58;
  pointer-events: none;
  filter: grayscale(0.16);
}

.hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.eyebrow,
.section-label,
.store-label {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(242, 216, 200, 0.95);
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.final-card h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 1.05rem;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.hero-subtitle {
  margin-top: 1.2rem;
  max-width: 50ch;
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  color: var(--muted);
}

.hero-actions,
.final-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
  max-width: 560px;
}

.point-pill {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(242, 216, 200, 0.92);
  box-shadow: 0 12px 24px rgba(40, 50, 75, 0.04);
}

.point-pill strong {
  font-size: 1rem;
}

.point-pill span {
  color: var(--muted);
  font-size: 0.94rem;
  text-align: right;
}

.store-panel {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 238, 0.88));
  border: 1px solid rgba(242, 216, 200, 0.96);
  box-shadow: var(--shadow-soft);
}

.store-copy {
  display: grid;
  gap: 0.55rem;
}

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

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

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(40, 50, 75, 0.12);
}

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

.hero-media {
  position: relative;
}

.phone-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 0;
}

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

.orb-coral {
  inset: 0 auto auto 12%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 107, 87, 0.32), rgba(255, 107, 87, 0.02) 72%);
}

.orb-mint {
  inset: auto 0 12% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(53, 198, 167, 0.22), rgba(53, 198, 167, 0.02) 72%);
}

.hero-card,
.mini-shot,
.showcase-frame,
.info-card,
.step-card,
.final-card {
  border: 1px solid rgba(242, 216, 200, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-card-main {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  padding: 0.8rem;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 238, 0.9));
  box-shadow: var(--shadow-card);
}

.hero-card-main img,
.mini-shot img,
.showcase-frame img {
  width: 100%;
  border-radius: 28px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(242, 216, 200, 0.95);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(40, 50, 75, 0.1);
}

.floating-chip-top {
  top: 12%;
  left: 0;
}

.floating-chip-bottom {
  right: 0;
  bottom: 9%;
}

.mini-shots {
  margin-top: -4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-shot {
  margin: 0;
  padding: 0.65rem;
  border-radius: 30px;
}

.mini-shot:first-child {
  transform: translateY(1.75rem);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 244, 238, 0.72), rgba(255, 250, 245, 0.9)),
    #fff8f2;
  border-top: 1px solid rgba(242, 216, 200, 0.75);
  border-bottom: 1px solid rgba(242, 216, 200, 0.75);
}

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

.section-heading h2,
.showcase-copy h2,
.final-card h2 {
  margin-top: 0.95rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p:last-child,
.showcase-text,
.final-card > p:last-of-type {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.benefit-grid,
.steps-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.step-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.info-card h3,
.step-card h3,
.detail-item strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.info-card p,
.step-card p,
.detail-item span {
  margin-top: 0.75rem;
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.screen-tabs {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.screen-tab {
  border: 1px solid rgba(242, 216, 200, 0.95);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  padding: 0.8rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

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

.screen-tab.is-active {
  color: var(--ink);
  background: var(--coral-soft);
  border-color: var(--border-strong);
}

.screen-details {
  margin-top: 1.25rem;
}

.detail-item {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(242, 216, 200, 0.95);
}

.detail-item span {
  display: block;
}

.showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-frame {
  width: min(100%, 360px);
  padding: 0.8rem;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 238, 0.9));
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.final-section {
  padding-top: 3.5rem;
  padding-bottom: 5.4rem;
}

.final-card {
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 90, 0.18), transparent 22%),
    radial-gradient(circle at left bottom, rgba(53, 198, 167, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 238, 0.94));
  text-align: center;
}

.final-card h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.final-card > p:last-of-type {
  max-width: 52ch;
  margin-inline: auto;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid rgba(242, 216, 200, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 2rem 0 4rem;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 34px;
  border: 1px solid rgba(242, 216, 200, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 238, 0.88));
  box-shadow: var(--shadow-soft);
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(242, 216, 200, 0.95);
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-meta {
  margin-top: 0.9rem;
  color: var(--muted);
}

.legal-intro {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-sections {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

.legal-section {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(242, 216, 200, 0.92);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section p + p,
.legal-section ul,
.legal-section ol {
  margin-top: 0.9rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.legal-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .showcase-copy,
  .showcase-visual {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .benefit-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .point-pill {
    flex-direction: column;
    align-items: flex-start;
  }

  .point-pill span {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 72px;
  }

  .header-inner > .button {
    display: none;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .store-actions {
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(242, 216, 200, 0.95);
    padding: 0.2rem 0.8rem;
  }

  .store-badge img {
    height: 42px;
  }

  .phone-stage {
    min-height: auto;
    padding-top: 1rem;
  }

  .floating-chip {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .mini-shots {
    margin-top: 1rem;
  }

  .mini-shot:first-child {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-card-main,
  .showcase-frame {
    width: min(100%, 320px);
  }

  .mini-shots {
    grid-template-columns: 1fr;
  }

  .screen-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
