:root {
  --bg: #fbf8ff;
  --card: rgba(255, 255, 255, 0.78);
  --text: #2a2e4d;
  --muted: #5c6284;
  --accent: #8f9eff;
  --accent-2: #ffa6cc;
  --border: rgba(126, 139, 198, 0.2);
}

[data-theme="dark"] {
  --bg: #0b1020;
  --card: rgba(28, 35, 61, 0.86);
  --text: #f2f5ff;
  --muted: #c6d0f2;
  --accent: #93a3ff;
  --accent-2: #ff9fcb;
  --border: rgba(176, 190, 248, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 12%, #e8e7ff 0%, var(--bg) 42%),
    radial-gradient(circle at 88% 85%, #ffe6f2 0%, transparent 34%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 1400;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-130%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

body.theme-transition,
body.theme-transition * {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1200;
  background: rgba(127, 139, 199, 0.15);
}

.reading-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8ea0ff, #ff9dcb);
}

.quick-nav {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(115, 126, 190, 0.35);
  border: 1px solid rgba(121, 133, 204, 0.5);
}

.quick-dot.active {
  background: linear-gradient(160deg, #8f9eff, #ff9ac8);
  transform: scale(1.25);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -2;
}

.orb-1 {
  background: var(--accent);
  top: -120px;
  left: -90px;
}

.orb-2 {
  background: var(--accent-2);
  right: -120px;
  bottom: -140px;
}

.orb-3 {
  background: #b7f0e4;
  left: 40%;
  top: 30%;
  width: 300px;
  height: 300px;
  opacity: 0.25;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(141, 154, 210, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(141, 154, 210, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: -3;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image: radial-gradient(rgba(70, 80, 130, 0.15) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  pointer-events: none;
}

.thread-lines {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
}

.thread {
  fill: none;
  stroke: rgba(135, 146, 207, 0.4);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thread-lines marker path {
  fill: rgba(135, 146, 207, 0.52);
}

[data-theme="dark"] .thread {
  stroke: rgba(175, 187, 250, 0.36);
}

[data-theme="dark"] .thread-lines marker path {
  fill: rgba(195, 205, 255, 0.58);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 56px 0 28px;
  align-items: center;
}

.hero-text h1 {
  position: relative;
  font-weight: 600;
}

.hero-text h1::after {
  content: "↘";
  position: absolute;
  right: -28px;
  top: -8px;
  font-size: 1.8rem;
  color: rgba(98, 109, 172, 0.7);
}

.top-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.meta-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
}

.toggle-group {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
}

.mini-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-btn.active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(143, 158, 255, 0.28), rgba(255, 166, 204, 0.24));
}

.badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #5966b3;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    rgba(143, 158, 255, 0.22),
    rgba(255, 166, 204, 0.25)
  );
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

h1 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.34rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
  text-wrap: pretty;
}

.lead {
  font-size: 1.13rem;
  max-width: 62ch;
  font-weight: 500;
}

.dropcap::first-letter {
  float: left;
  margin-right: 10px;
  line-height: 0.95;
  font-size: 3.2rem;
  font-family: "Instrument Serif", serif;
  color: #5865b3;
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(121, 129, 173, 0.18);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.45s ease;
}

.hero-photo {
  min-height: 390px;
  overflow: hidden;
  transform: rotate(-1.2deg);
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.split-visual {
  border-radius: 30px;
}

.hero-vertical {
  position: absolute;
  left: 10px;
  top: 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.25em;
  font-size: 0.66rem;
  color: rgba(49, 57, 99, 0.7);
  z-index: 2;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(104, 116, 186, 0.35);
  color: #2f3865;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(143, 158, 255, 0.3), rgba(255, 166, 204, 0.3));
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(106, 118, 185, 0.25);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(120, 138, 226, 0.85);
  outline-offset: 2px;
}

.btn-light {
  background: rgba(255, 255, 255, 0.8);
}

.section {
  margin: 22px 0;
  padding: 30px;
  position: relative;
}

.section h2 {
  position: relative;
  padding-bottom: 10px;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 142, 226, 0.75), rgba(255, 162, 203, 0.65));
}

.section p {
  max-width: 72ch;
}


.title-main {
  font-style: normal;
  color: var(--text);
}

.title-accent {
  font-style: italic;
  background: linear-gradient(120deg, #7f90ee, #d388b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.journal p {
  font-size: 1.06rem;
  line-height: 1.92;
  hyphens: auto;
}

.journal p + p {
  text-indent: 1.1rem;
}

.cred-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px;
}

.cred-bar span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374174;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(109, 121, 191, 0.24);
  border-radius: 999px;
  padding: 9px 10px;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: linear-gradient(
    125deg,
    rgba(143, 158, 255, 0.22),
    rgba(255, 166, 204, 0.2)
  );
}

.stat-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.stat-value {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #3d477f;
}

.stat-label {
  color: #6d75a3;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.timeline-item {
  margin-bottom: 14px;
  padding-left: 18px;
  border-left: 2px solid rgba(121, 136, 225, 0.55);
}

.timeline-item span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--text);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 20px;
  text-align: center;
  color: #575c86;
  background: linear-gradient(
    145deg,
    rgba(143, 158, 255, 0.23),
    rgba(255, 166, 204, 0.27)
  );
}

blockquote {
  margin: 16px 0 0;
  padding: 18px 20px;
  border-left: 3px solid #8695f6;
  background: rgba(143, 158, 255, 0.12);
  border-radius: 12px;
  color: #323b62;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
}

.footer {
  padding: 12px 0 34px;
}

.footer p {
  margin: 0;
  text-align: center;
  color: #8d94bc;
}

.footer-meta {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.kicker {
  margin: 0 0 10px;
  color: #7f88b7;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature {
  margin: 16px 0 0;
  color: #636fae;
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
}

.mini-title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #7f89b7;
  text-transform: uppercase;
}

.phone-showcase {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: center;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 255, 0.85));
}

.mobile-dock {
  display: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.pillar-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
}

.pillar-item h3 {
  margin-bottom: 8px;
}

.pillar-item p {
  margin: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.64);
}

.trust-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.trust-list li {
  margin-bottom: 8px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cert-item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.cert-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.cert-item figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer {
  border-style: dashed;
}

.next-step {
  text-align: left;
}

.next-lead {
  max-width: 66ch;
}

.next-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.trust-line {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.proof-value {
  margin: 0;
  color: #36406f;
  font-weight: 600;
  line-height: 1.5;
}

.onboarding {
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(251, 242, 248, 0.88));
}

.onboard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.onboard-step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.onboard-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
  color: #2f3968;
  background: linear-gradient(135deg, rgba(143, 158, 255, 0.38), rgba(255, 166, 204, 0.38));
}

.onboard-step p {
  margin: 0;
}

.phone-copy h2 {
  margin-bottom: 10px;
}

.phone-copy p {
  max-width: 52ch;
}

.iphone-shell {
  width: 320px;
  height: 650px;
  margin-left: auto;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(145deg, #111526, #2b3355 45%, #1c2340);
  box-shadow: 0 26px 60px rgba(29, 39, 82, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  position: relative;
}

.iphone-shell::before {
  content: "Swipe moments";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  color: rgba(226, 234, 255, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
}

.iphone-shell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.iphone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #0d1327;
  z-index: 4;
}


.iphone-screen {
  height: 100%;
  border-radius: 34px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  position: relative;
}

.iphone-screen::-webkit-scrollbar {
  display: none;
}

.phone-slide {
  height: 626px;
  scroll-snap-align: start;
  position: relative;
}

.phone-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 41, 0.28), rgba(15, 20, 41, 0));
  pointer-events: none;
}

.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-1 {
  object-position: 50% 46%;
}
.frame-2 {
  object-position: 50% 44%;
}
.frame-3 {
  object-position: 50% 45%;
}
.frame-4 {
  object-position: 50% 42%;
}
.frame-5 {
  object-position: 50% 46%;
}
.frame-6 {
  object-position: 50% 44%;
}
.frame-7 {
  object-position: 50% 45%;
}

.editorial .card:first-child {
  position: relative;
}

.editorial .card:first-child::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 2rem;
  color: rgba(124, 135, 195, 0.7);
}

.quote-card {
  background: linear-gradient(
      170deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 244, 255, 0.9)
    ),
    var(--card);
}

.quote-large {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  color: #3f487f;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  top: -120px;
  background: radial-gradient(
    circle,
    rgba(143, 158, 255, 0.4) 0%,
    rgba(143, 158, 255, 0) 70%
  );
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 10px 0 0;
}

.card:hover {
  transform: translateY(-4px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 22px 48px rgba(118, 126, 167, 0.22);
}

.card.is-visible {
  border-color: rgba(116, 127, 188, 0.36);
}

.cursor-flower,
.cursor-core {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

.cursor-flower {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 255, 0.95) 0%, rgba(241, 229, 255, 0.85) 70%);
  box-shadow: 0 4px 14px rgba(127, 138, 204, 0.35);
  transition: transform 0.15s ease, opacity 0.2s ease;
  animation: blossom 2.8s ease-in-out infinite;
}

.petal {
  position: absolute;
  width: 8px;
  height: 11px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform-origin: 50% 100%;
  background: linear-gradient(180deg, rgba(255, 202, 228, 0.95), rgba(190, 206, 255, 0.82));
  opacity: 0.95;
}

.p1 {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-9px);
}
.p2 {
  transform: translate(-50%, -50%) rotate(60deg) translateY(-9px);
}
.p3 {
  transform: translate(-50%, -50%) rotate(120deg) translateY(-9px);
}
.p4 {
  transform: translate(-50%, -50%) rotate(180deg) translateY(-9px);
}
.p5 {
  transform: translate(-50%, -50%) rotate(240deg) translateY(-9px);
}
.p6 {
  transform: translate(-50%, -50%) rotate(300deg) translateY(-9px);
}

.cursor-core {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5a66b2;
  box-shadow: 0 0 10px rgba(108, 121, 201, 0.45);
}

.cursor-flower.active {
  transform: translate(-50%, -50%) scale(1.18) rotate(14deg);
  opacity: 1;
}

.cursor-flower.soft {
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0.78;
}

[data-theme="dark"] .toggle-group {
  background: rgba(28, 34, 60, 0.75);
}

[data-theme="dark"] .meta-chip {
  color: #e6ecff;
  background: rgba(39, 48, 82, 0.82);
  border-color: rgba(173, 187, 248, 0.46);
}


[data-theme="dark"] .btn-light {
  background: rgba(50, 60, 96, 0.92);
  color: #f0f4ff;
}

[data-theme="dark"] body {
  background: radial-gradient(circle at 10% 12%, #1a2346 0%, var(--bg) 42%),
    radial-gradient(circle at 86% 80%, #3a2348 0%, transparent 35%),
    var(--bg);
}

[data-theme="dark"] .card {
  box-shadow: 0 16px 40px rgba(5, 9, 22, 0.65);
}

[data-theme="dark"] .badge {
  color: #d8e1ff;
  background: linear-gradient(135deg, rgba(118, 132, 214, 0.34), rgba(201, 117, 176, 0.3));
}

[data-theme="dark"] .hero-vertical,
[data-theme="dark"] .kicker,
[data-theme="dark"] .mini-title,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .footer p {
  color: #b7c2ea;
}

[data-theme="dark"] .btn {
  color: #f6f8ff;
  border-color: rgba(157, 172, 243, 0.55);
  background: linear-gradient(135deg, rgba(120, 138, 226, 0.52), rgba(208, 117, 181, 0.45));
}

[data-theme="dark"] .stat-item {
  background: rgba(46, 57, 94, 0.72);
}

[data-theme="dark"] .stat-value {
  color: #edf2ff;
}

[data-theme="dark"] .quote-large,
[data-theme="dark"] .timeline-item span {
  color: #f4f7ff;
}

[data-theme="dark"] blockquote {
  color: #ecf2ff;
  background: rgba(132, 150, 235, 0.2);
}

[data-theme="dark"] .phone-showcase {
  background: linear-gradient(140deg, rgba(29, 35, 58, 0.84), rgba(41, 32, 58, 0.78));
}

[data-theme="dark"] .pillar-item,
[data-theme="dark"] .faq details,
[data-theme="dark"] .trust-card,
[data-theme="dark"] .cert-item {
  background: rgba(43, 52, 87, 0.72);
}

[data-theme="dark"] .pillar-item p,
[data-theme="dark"] .faq details p,
[data-theme="dark"] .trust-list,
[data-theme="dark"] .cert-item figcaption,
[data-theme="dark"] .phone-copy p,
[data-theme="dark"] .timeline-item p {
  color: #e1e8ff;
}

[data-theme="dark"] .trust-line {
  background: rgba(40, 48, 80, 0.72);
  color: #e8efff;
}

[data-theme="dark"] .proof-item,
[data-theme="dark"] .onboard-step {
  background: rgba(43, 52, 87, 0.72);
}

[data-theme="dark"] .proof-value {
  color: #edf2ff;
}

[data-theme="dark"] .faq summary,
[data-theme="dark"] .pillar-item h3,
[data-theme="dark"] .trust-card h3,
[data-theme="dark"] .section h2 {
  color: #f4f7ff;
}

[data-theme="dark"] .quote-card p {
  color: #e4ebff;
}

[data-theme="dark"] .quote-card {
  background: linear-gradient(170deg, rgba(38, 45, 76, 0.92), rgba(48, 38, 72, 0.88));
}

[data-theme="dark"] .quote-card {
  background: linear-gradient(170deg, rgba(38, 45, 76, 0.92), rgba(48, 38, 72, 0.88));
}

[data-theme="dark"] .iphone-shell {
  background: linear-gradient(145deg, #090c17, #1a2039 45%, #12182c);
}


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

  .hero-photo {
    min-height: 280px;
  }

  .split {
    grid-template-columns: 1fr;
  }

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

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .cert-grid,
  .proof-grid,
  .onboard-steps {
    grid-template-columns: 1fr;
  }

  .iphone-shell {
    margin: 0 auto;
    width: min(320px, 100%);
  }

  .stats-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-text h1::after {
    right: 0;
    top: -16px;
  }

  body {
    cursor: auto;
  }

  .cursor-flower,
  .cursor-core {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .top-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-nav,
  .to-top {
    display: none;
  }

  .cred-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(960px, 94vw);
  }

  .hero {
    gap: 20px;
  }

  .section {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  h3 {
    font-size: 1.2rem;
  }

  .section {
    margin: 16px 0;
    padding: 18px;
    border-radius: 18px;
  }

  .phone-showcase {
    gap: 14px;
  }

  .iphone-shell {
    width: min(100%, 320px);
    aspect-ratio: 320 / 650;
    height: auto;
  }

  .phone-slide {
    height: calc((100vw - 56px) * 2.03);
    min-height: 500px;
    max-height: 626px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .next-actions .btn {
    width: 100%;
  }

  .mobile-dock {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 1150;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(360px, 92vw);
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(59, 69, 120, 0.22);
  }

  .dock-item {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    min-height: 40px;
  }

  .dock-item.active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(143, 158, 255, 0.35), rgba(255, 166, 204, 0.3));
  }

  .footer {
    padding-bottom: 84px;
  }

  .frame-1,
  .frame-2,
  .frame-3,
  .frame-4,
  .frame-5,
  .frame-6,
  .frame-7 {
    object-position: 50% 42%;
  }

}

@media (max-width: 480px) {
  .top-controls {
    gap: 8px;
  }

  .toggle-group {
    width: 100%;
    justify-content: space-between;
  }

  .meta-chip {
    width: 100%;
    text-align: center;
  }

  .cred-bar {
    grid-template-columns: 1fr;
  }

}

[data-theme="dark"] .mobile-dock {
  background: rgba(25, 31, 54, 0.86);
}

[data-theme="dark"] .cred-bar span {
  color: #e7edff;
  background: rgba(38, 47, 79, 0.8);
  border-color: rgba(176, 190, 248, 0.34);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .cursor-flower,
  .cursor-core,
  .bg-orb,
  .thread-lines {
    display: none !important;
  }
}

@keyframes blossom {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(153, 166, 234, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(153, 166, 234, 0.45));
  }
}
