@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --sky-top: #5dbfff;
  --sky-mid: #abe8ff;
  --sky-soft: #dff4ff;
  --cream: #fffaf2;
  --cream-deep: #fff5e8;
  --night: #0a0806;
  --ink: #1a1610;
  --soft: #524a40;
  --muted: #6f665d;
  --glass: rgba(255, 255, 255, 0.64);
  --glass-strong: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.6);
  --accent: #a0713a;
  --accent-soft: #d4a870;
  --accent-deep: #8b5a2b;
  --sunset-1: #7b5ea7;
  --sunset-2: #d4a0c8;
  --sunset-3: #ffcdb8;
  --shadow-soft: 0 20px 50px rgba(50, 86, 109, 0.12);
  --shadow-card: 0 28px 70px rgba(50, 86, 109, 0.14);
  --shadow-float: 0 24px 50px rgba(77, 61, 39, 0.14);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 212, 199, 0.55), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(232, 247, 255, 0.8), transparent 24%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 18%, var(--sky-soft) 34%, var(--cream) 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: -120px;
  top: 120px;
  background: rgba(255, 212, 199, 0.32);
}

body::after {
  right: -100px;
  top: 380px;
  background: rgba(168, 222, 200, 0.24);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

button,
input,
textarea {
  font: inherit;
}

main,
nav,
footer {
  position: relative;
  z-index: 1;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(244, 250, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 36px rgba(50, 86, 109, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.nav-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-logo {
  color: rgba(26, 22, 16, 0.82);
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 247, 227, 0.95), rgba(212, 168, 112, 0.95));
  color: var(--accent-deep);
  box-shadow: 0 12px 28px rgba(139, 90, 43, 0.18);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(26, 22, 16, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.nav-links a:hover,
.footer-links a:hover,
.footer-email:hover {
  opacity: 0.84;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: rgba(26, 22, 16, 0.78);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-cream {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.8) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.section-sky {
  background: linear-gradient(180deg, rgba(232, 247, 255, 0.72) 0%, rgba(255, 250, 242, 0.7) 100%);
}

.section-plain {
  background: transparent;
}

.section-evening {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 176, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(123, 94, 167, 0.98) 0%, rgba(212, 160, 200, 0.94) 54%, rgba(255, 205, 184, 0.92) 100%);
}

.section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
}

.section-header-left {
  text-align: left;
  margin: 0 0 38px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 245, 226, 0.95);
}

.hero h1,
.section-title,
.cta-copy h2,
.legal-page h1 {
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.03em;
  line-height: 0.97;
}

.section-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  color: var(--night);
  margin-bottom: 18px;
}

.section-title-light {
  color: white;
}

.section-subtitle {
  font-size: 1.04rem;
  color: var(--soft);
}

.section-subtitle-light {
  color: rgba(255, 245, 240, 0.84);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 196px 0 110px;
  overflow: hidden;
}

.hero-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(255, 255, 255, 0.22);
  filter: blur(1px);
  animation: cloudFloat 16s ease-in-out infinite;
}

.hero-cloud::before,
.hero-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.hero-cloud-1 {
  top: 120px;
  left: -10px;
  width: 180px;
  height: 56px;
}

.hero-cloud-1::before {
  width: 78px;
  height: 76px;
  left: 22px;
  top: -34px;
}

.hero-cloud-1::after {
  width: 92px;
  height: 68px;
  right: 18px;
  top: -24px;
}

.hero-cloud-2 {
  top: 170px;
  right: 80px;
  width: 220px;
  height: 62px;
  opacity: 0.9;
  animation-delay: -4s;
}

.hero-cloud-2::before {
  width: 84px;
  height: 80px;
  left: 34px;
  top: -34px;
}

.hero-cloud-2::after {
  width: 102px;
  height: 72px;
  right: 24px;
  top: -28px;
}

.hero-cloud-3 {
  bottom: 90px;
  left: 14%;
  width: 160px;
  height: 50px;
  opacity: 0.72;
  animation-delay: -8s;
}

.hero-cloud-3::before {
  width: 70px;
  height: 62px;
  left: 20px;
  top: -26px;
}

.hero-cloud-3::after {
  width: 80px;
  height: 60px;
  right: 14px;
  top: -24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: -34px -28px -24px -24px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.72) 0%, rgba(255, 250, 242, 0.54) 100%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 0 28px 70px rgba(50, 86, 109, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: -1;
}

.hero .section-kicker-light {
  color: rgba(139, 90, 43, 0.96);
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  color: rgba(26, 22, 16, 0.92);
  margin-bottom: 20px;
  text-shadow: 0 10px 24px rgba(255, 255, 255, 0.16);
}

.hero p {
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(82, 74, 64, 0.98);
  margin-bottom: 28px;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn-primary,
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #fff3d3 0%, #d4a870 100%);
  color: var(--night);
  box-shadow: 0 16px 34px rgba(160, 113, 58, 0.24);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.16);
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero .btn-glass {
  background: rgba(255, 255, 255, 0.34);
  color: rgba(26, 22, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-primary:hover,
.btn-glass:hover {
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.hero-pills,
.premium-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills {
  margin-bottom: 22px;
}

.hero-pills span,
.premium-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-pills span {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: rgba(82, 74, 64, 0.96);
  text-shadow: none;
}

.hero-ritual {
  max-width: 640px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-ritual-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.hero-ritual-head strong {
  color: rgba(26, 22, 16, 0.9);
  font-size: 0.98rem;
}

.hero-ritual-head span {
  color: rgba(111, 102, 93, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero-ritual-flow article {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.hero-ritual-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(255, 243, 211, 0.86);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-ritual-flow p {
  margin: 0;
  color: rgba(82, 74, 64, 0.96);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.hero-frame {
  position: absolute;
  inset: 18px 28px 18px 58px;
  padding: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-card);
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
}

.hero-frame-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.art-tile {
  position: absolute;
  width: 122px;
  height: 122px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

.art-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.art-tile-a {
  top: 42px;
  left: 0;
  transform: rotate(-7deg);
}

.art-tile-b {
  right: 0;
  top: 150px;
  transform: rotate(9deg);
}

.art-tile-c {
  left: 22px;
  bottom: 24px;
  transform: rotate(-5deg);
}

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

.experience-card,
.screen-card,
.ritual-step,
.faq-item,
.legal-page .container {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.experience-card {
  padding: 28px;
}

.experience-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fff3d3 0%, #d4a870 100%);
  color: var(--accent-deep);
  box-shadow: 0 14px 28px rgba(160, 113, 58, 0.18);
  font-size: 1.3rem;
}

.experience-card h3,
.screen-copy h3,
.ritual-step h3,
.pricing-card h3,
.cta-mini-card strong,
.legal-page h2,
.legal-page h3 {
  line-height: 1.2;
}

.experience-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--night);
}

.experience-card p {
  color: var(--soft);
  font-size: 0.95rem;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.screen-card {
  padding: 18px;
}

.screen-shell {
  position: relative;
  aspect-ratio: 1290 / 2796;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1a160f 0%, #32566d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen-shell::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  width: 34%;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(244, 250, 255, 0.96), rgba(232, 247, 255, 0.88));
}

.screen-copy h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: var(--night);
}

.screen-copy p {
  font-size: 0.92rem;
  color: var(--soft);
}

#how-it-works::before {
  content: '';
  position: absolute;
  inset: 64px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 214, 191, 0.22), transparent 30%),
    radial-gradient(circle at 84% 38%, rgba(171, 232, 255, 0.24), transparent 28%),
    radial-gradient(circle at 58% 88%, rgba(212, 160, 200, 0.16), transparent 30%);
  pointer-events: none;
}

.ritual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 34px;
}

.ritual-steps {
  display: grid;
  gap: 18px;
}

.ritual-step {
  position: relative;
  padding: 24px 24px 24px 92px;
}

.ritual-step-number {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff3d3 0%, #d4a870 100%);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(160, 113, 58, 0.16);
}

.ritual-step h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--night);
}

.ritual-step p {
  color: var(--soft);
  font-size: 0.95rem;
}

.ritual-board {
  position: relative;
  min-height: 650px;
  padding: 24px;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 236, 198, 0.58), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(223, 244, 255, 0.8) 48%, rgba(255, 250, 242, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
}

.ritual-board::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.ritual-board-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -50px;
  top: -40px;
  border-radius: 50%;
  background: rgba(255, 212, 176, 0.32);
  filter: blur(24px);
}

.ritual-phone {
  position: absolute;
  inset: 70px 96px 52px 92px;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #221910 0%, #375e79 100%);
  box-shadow: var(--shadow-card);
}

.ritual-phone::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  width: 34%;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.ritual-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  background: rgba(248, 252, 255, 0.98);
}

.ritual-note {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 240px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ritual-note i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff3d3 0%, #d4a870 100%);
  color: var(--accent-deep);
  flex-shrink: 0;
}

.ritual-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--night);
  font-size: 0.95rem;
}

.ritual-note span {
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ritual-note-top {
  right: 22px;
  top: 78px;
}

.ritual-note-middle {
  left: 16px;
  top: 260px;
}

.ritual-note-bottom {
  right: 18px;
  bottom: 54px;
}

.premium-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.premium-art-shell {
  padding: 18px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-card);
}

.premium-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.premium-pills {
  margin-top: 24px;
  margin-bottom: 30px;
}

.premium-pills span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

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

.pricing-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  box-shadow: var(--shadow-soft);
}

.pricing-card.popular {
  background: rgba(255, 250, 242, 0.9);
  color: var(--night);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff3d3 0%, #d4a870 100%);
  color: var(--night);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-label {
  margin-bottom: 8px;
  color: rgba(255, 245, 240, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-card.popular .pricing-label {
  color: var(--accent-deep);
}

.pricing-card h3 {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-period {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255, 245, 240, 0.74);
}

.pricing-card.popular .pricing-period {
  color: var(--soft);
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: inherit;
  opacity: 0.9;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent-soft);
  font-weight: 800;
}

.pricing-note {
  margin-top: 18px;
  color: rgba(255, 245, 240, 0.8);
  font-size: 0.88rem;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 24px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 24px 0;
  text-align: left;
  color: var(--night);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  color: var(--accent-deep);
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 520px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--soft);
  font-size: 0.95rem;
}

.cta-section {
  padding: 0 0 120px;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 176, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(123, 94, 167, 0.98) 0%, rgba(171, 232, 255, 0.32) 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-card);
}

.cta-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: white;
  margin-bottom: 18px;
}

.cta-copy p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 245, 240, 0.88);
}

.cta-cards {
  display: grid;
  gap: 16px;
}

.cta-mini-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-mini-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 243, 211, 0.86);
  color: var(--accent-deep);
  font-size: 1.2rem;
}

.cta-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.cta-mini-card span {
  color: rgba(255, 245, 240, 0.84);
  font-size: 0.92rem;
}

footer {
  padding: 52px 0 56px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 205, 184, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.9), rgba(18, 14, 11, 0.98));
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.72fr)) auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  color: white;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 38px;
  height: 38px;
}

.footer-description {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-email {
  color: white;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-eyebrow {
  color: rgba(255, 243, 211, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  align-self: end;
}

.footer-copy {
  font-size: 0.84rem;
}

.legal-page {
  min-height: 100vh;
  padding: 140px 0 90px;
}

.legal-page .container {
  max-width: 820px;
  padding: 42px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-page h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--night);
  margin-bottom: 10px;
}

.legal-page .effective-date {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--night);
  font-size: 1.4rem;
}

.legal-page h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--night);
  font-size: 1.04rem;
}

.legal-page p,
.legal-page li {
  color: var(--soft);
  font-size: 0.96rem;
}

.legal-page ul {
  margin: 0 0 16px 22px;
}

.legal-page a {
  color: var(--accent-deep);
}

@keyframes cloudFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(8px);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .ritual-grid,
  .premium-grid,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-header,
  .premium-copy,
  .cta-copy,
  .section-header-left {
    text-align: center;
  }

  .hero p,
  .cta-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-pills,
  .premium-pills {
    justify-content: center;
  }

  .hero-ritual {
    margin: 0 auto;
  }

  .hero-visual,
  .ritual-board {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer-meta {
    justify-self: start;
    align-self: start;
  }
}

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

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(50, 86, 109, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links.open a {
    text-align: center;
    color: rgba(255, 255, 255, 0.94);
  }

  .hamburger {
    display: flex;
  }

  .experience-grid,
  .screens-grid,
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 168px;
  }

  .experience-grid,
  .screens-grid,
  .pricing-cards,
  .cta-cards,
  .hero-ritual-flow {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    inset: 20px 18px 20px 18px;
  }

  .art-tile {
    width: 98px;
    height: 98px;
  }

  .art-tile-a {
    left: -6px;
  }

  .art-tile-b {
    right: -6px;
  }

  .ritual-step {
    padding-left: 86px;
  }

  .ritual-board {
    min-height: auto;
    padding: 24px;
    display: grid;
    gap: 14px;
  }

  .ritual-phone {
    position: relative;
    inset: auto;
    width: min(100%, 280px);
    aspect-ratio: 1290 / 2796;
    margin: 28px auto 8px;
  }

  .ritual-note {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .premium-art-shell {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .footer-meta {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero p,
  .section-subtitle,
  .cta-copy p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-glass {
    width: 100%;
  }

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

  .hero-frame {
    inset: 14px;
  }

  .hero-copy::before {
    inset: -24px -12px -18px -12px;
  }

  .hero-frame-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
  }

  .hero-ritual-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .cta-section {
    padding-bottom: 90px;
  }

  .screen-card,
  .experience-card,
  .ritual-step,
  .pricing-card,
  .faq-item,
  .legal-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ritual-step {
    padding-left: 78px;
  }

  .cta-shell {
    padding: 30px 22px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .legal-page {
    padding-top: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
