:root {
  --bg: #f8f6ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: #e9ddff;
  --text: #17131f;
  --muted: #726d86;
  --purple: #8a3ffc;
  --purple-deep: #6f2bf0;
  --lavender: #efe4ff;
  --lavender-strong: #e2d0ff;
  --blue: #7f92ff;
  --peach: #ffad78;
  --shadow: 0 30px 80px rgba(130, 92, 197, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 187, 255, 0.45), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(233, 208, 255, 0.55), transparent 22%),
    linear-gradient(180deg, #fffefe 0%, #f8f6ff 52%, #f5f0ff 100%);
}

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

.page-shell, .legal-shell {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 28px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(233, 221, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(112, 64, 196, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.site-nav, .header-actions, .hero-badges, .chip-row, .footer-links, .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-nav a, .ghost-link {
  color: var(--muted);
  font-weight: 600;
}

.primary-link, .button-primary, .button-secondary {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link {
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple) 0%, #9456ff 100%);
  box-shadow: 0 14px 34px rgba(138, 63, 252, 0.24);
}

.button-primary {
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--purple) 0%, #9554ff 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(138, 63, 252, 0.25);
}

.button-secondary {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple);
  border: 1px solid rgba(138, 63, 252, 0.32);
}

.primary-link:hover, .button-primary:hover, .button-secondary:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 30px 0 90px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--purple);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.small { margin-bottom: 10px; font-size: 12px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.02; }
h3 { font-size: clamp(26px, 3vw, 34px); line-height: 1.08; }

.hero-text, .section-heading p, .feature-copy p, .touch-copy p, .cta-copy p, .faq-list p, .legal-card p, .legal-card li {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-badges {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-badges li, .chip-row span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 63, 252, 0.15);
  color: #5a4975;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.phone {
  position: relative;
  width: min(100%, 430px);
  margin-left: auto;
  padding: 28px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 221, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.phone-glow {
  position: absolute;
  inset: 18px;
  background: radial-gradient(circle at top, rgba(189, 145, 255, 0.18), transparent 60%);
  filter: blur(22px);
  pointer-events: none;
}

.phone-topline {
  width: 94px;
  height: 7px;
  border-radius: 999px;
  margin: 0 auto 24px;
  background: rgba(138, 63, 252, 0.16);
}

.mini-date, .section-tag {
  color: #9e98b3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-date { font-size: 13px; margin-bottom: 18px; }
.hello { font-family: 'Sora', sans-serif; font-size: 32px; margin-bottom: 4px; }
.hello-sub { color: #9b95af; font-size: 22px; margin-bottom: 22px; }

.purple-card {
  padding: 22px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #975cff 0%, #7d33f1 45%, #ad82ff 100%);
  box-shadow: 0 26px 70px rgba(138, 63, 252, 0.26);
}

.purple-card h3 { font-size: 28px; margin-bottom: 8px; }
.purple-card p { color: rgba(255, 255, 255, 0.86); font-size: 17px; line-height: 1.55; margin: 0; }
.touch-meta { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-bottom: 12px; }
.touch-card { margin-bottom: 22px; }
.section-tag { font-weight: 700; font-size: 13px; margin: 18px 0 14px; }

.entry-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(233, 221, 255, 0.9);
}

.entry-card strong { display: block; font-size: 28px; margin-bottom: 4px; }
.entry-card span { color: var(--muted); font-size: 16px; line-height: 1.5; }

.entry-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
}

.lilac { background: rgba(138, 63, 252, 0.12); color: var(--purple); }
.blue { background: rgba(127, 146, 255, 0.16); color: #5970ff; }
.peach { background: rgba(255, 173, 120, 0.18); color: #ff8f46; }

.story-card {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(320px, 70%);
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 221, 255, 0.9);
  box-shadow: var(--shadow);
}

.story-card strong { display: block; margin-bottom: 8px; font-size: 18px; }
.story-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.why-section, .feature-section, .showcase-section, .mockup-section, .touch-section, .final-cta, .faq-section {
  padding: 30px 0 96px;
}

.device-gallery,
.mockup-gallery {
  display: grid;
  gap: 22px;
}

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

.mockup-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-shot,
.mockup-card {
  margin: 0;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 221, 255, 0.9);
  box-shadow: var(--shadow);
}

.device-frame {
  position: relative;
  padding: 14px 10px 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #19161f 0%, #08070b 100%);
  box-shadow: 0 22px 52px rgba(17, 12, 29, 0.22);
}

.device-notch {
  width: 34%;
  height: 16px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #0a0910;
}

.device-shot img,
.mockup-card img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(233, 221, 255, 0.72);
}

.device-shot figcaption,
.mockup-card figcaption {
  display: grid;
  gap: 6px;
  padding: 16px 4px 4px;
}

.device-shot strong,
.mockup-card strong {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.device-shot span,
.mockup-card span {
  color: var(--muted);
  line-height: 1.6;
}

.mockup-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.slider-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(138, 63, 252, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--purple);
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(138, 63, 252, 0.12);
}

.mockup-gallery {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.mockup-gallery::-webkit-scrollbar {
  display: none;
}

.mockup-card {
  scroll-snap-align: start;
}

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.store-button {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 221, 255, 0.9);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.store-button strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.store-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-panel, .mini-panel, .layer-card, .touch-board, .story-sheet-inner, .legal-card, .faq-list details {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(233, 221, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-panel { padding: 28px; }
.info-panel h3 { font-size: 24px; margin-bottom: 12px; }
.info-panel p { margin: 0; color: var(--muted); line-height: 1.7; }

.feature-stack { display: flex; flex-direction: column; gap: 32px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.card-grid {
  display: grid;
  gap: 16px;
}

.mini-panel {
  padding: 22px;
  min-height: 128px;
}
.mini-panel strong { display: block; margin-bottom: 8px; font-size: 22px; }
.mini-panel span { color: var(--muted); line-height: 1.55; }
.tinted { background: linear-gradient(180deg, rgba(245, 238, 255, 0.95), rgba(255,255,255,0.92)); }
.tinted-alt { background: linear-gradient(180deg, rgba(239, 244, 255, 0.95), rgba(255,255,255,0.92)); }
.tinted-soft { background: linear-gradient(180deg, rgba(255, 245, 239, 0.95), rgba(255,255,255,0.92)); }

.story-sheet {
  display: grid;
  place-items: center;
}
.story-sheet-inner {
  width: min(100%, 470px);
  padding: 34px;
  background:
    radial-gradient(circle at top, rgba(193, 163, 255, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.88);
}
.story-label { color: var(--purple); text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.story-sheet-inner h4 { font-family: 'Sora', sans-serif; font-size: 44px; line-height: 1; margin: 0 0 22px; }
.story-sheet blockquote {
  margin: 0 0 22px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(250, 247, 255, 0.98);
  border: 1px solid rgba(233, 221, 255, 0.9);
  color: #49435a;
  font-size: 23px;
  line-height: 1.6;
}
.story-callout {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(245, 237, 255, 0.92);
}
.story-callout p { margin: 8px 0 0; color: var(--muted); }

.layered-panels { position: relative; min-height: 360px; }
.layer-card { padding: 26px; }
.layer-card.large { width: 100%; min-height: 220px; }
.layer-card.small { position: absolute; right: 22px; bottom: 0; width: min(320px, 72%); }
.purple-gradient { color: white; background: linear-gradient(135deg, #9556ff 0%, #6f2cf1 55%, #b893ff 100%); }
.purple-gradient p { color: rgba(255,255,255,0.86); line-height: 1.6; }
.light-card p { margin: 8px 0 0; color: var(--muted); }
.layer-title { font-family: 'Sora', sans-serif; font-size: 28px; margin-bottom: 12px; }

.touch-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--purple);
}

.touch-board {
  padding: 28px;
}
.touch-board-head { font-family: 'Sora', sans-serif; font-size: 30px; margin-bottom: 16px; }
.touch-item {
  padding: 18px;
  border-radius: 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(233, 221, 255, 0.9);
}
.touch-item.due { background: rgba(246, 239, 255, 0.95); }
.touch-item.suggestion { background: rgba(255, 255, 255, 0.9); }
.touch-item .time, .touch-item .tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(138, 63, 252, 0.1);
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
}
.touch-item strong { display: block; margin-bottom: 6px; font-size: 22px; }
.touch-item p { margin: 0; color: var(--muted); line-height: 1.55; }

.cta-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 34px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(233, 221, 255, 0.9);
  box-shadow: var(--shadow);
  align-items: center;
}

.cta-art { width: 100%; max-width: 220px; justify-self: center; }
.compact { margin-top: 24px; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-list details { padding: 22px 24px; }
.faq-list summary {
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.faq-list p { margin: 12px 0 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 60px;
  color: var(--muted);
}
.site-footer strong { display: block; color: var(--text); margin-bottom: 8px; font-size: 20px; }
.site-footer p { margin: 0; }

.legal-shell { padding: 34px 0 70px; }
.legal-brand { margin-bottom: 24px; }
.legal-card {
  max-width: 860px;
  padding: 34px;
  margin: 0 auto;
}
.legal-card h1 { font-size: 48px; margin-bottom: 10px; }
.legal-card h2 { font-size: 26px; margin: 28px 0 14px; }
.legal-card ul { color: var(--muted); line-height: 1.8; }

@media (max-width: 1060px) {
  .hero, .touch-section, .feature-row, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .story-card { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .device-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header { border-radius: 28px; padding: 18px; }
}

@media (max-width: 760px) {
  .page-shell, .legal-shell { width: min(100vw - 24px, 1200px); }
  .site-header { position: static; flex-wrap: wrap; justify-content: center; }
  .site-nav, .header-actions { justify-content: center; }
  .hero { padding-top: 16px; gap: 28px; }
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .hero-text, .section-heading p, .feature-copy p, .touch-copy p, .cta-copy p, .faq-list p, .legal-card p, .legal-card li { font-size: 17px; }
  .phone { padding: 22px; border-radius: 32px; }
  .hello { font-size: 26px; }
  .hello-sub { font-size: 18px; }
  .purple-card h3 { font-size: 24px; }
  .entry-card { grid-template-columns: 62px 1fr; gap: 14px; }
  .entry-icon { width: 62px; height: 62px; border-radius: 20px; }
  .entry-card strong { font-size: 24px; }
  .story-sheet-inner h4 { font-size: 36px; }
  .cta-card { padding: 24px; }
  .device-gallery { grid-template-columns: 1fr; }
  .mockup-gallery { grid-auto-columns: minmax(250px, 86vw); }
  .site-footer { flex-direction: column; }
}

.video-section {
  padding: 24px 0 10px;
}

.video-card {
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(138, 63, 252, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.promo-video {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(233, 221, 255, 0.9);
  background: #fff;
  display: block;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 6px 4px;
}

.video-meta strong {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
}

.video-meta span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .video-card { padding: 12px; }
  .video-meta { padding: 12px 2px 2px; }
}
