/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #E85D20;
  --orange-dark:#C44A12;
  --orange-light:#F07040;
  --cream:      #F5D5A8;
  --cream-light:#FDF0DC;
  --dark:       #1A0F08;
  --dark-mid:   #2C1A0E;
  --dark-card:  #231408;
  --text:       #F0E8DC;
  --text-muted: #B8A090;
  --radius:     1.2rem;
  --radius-lg:  2rem;
  --shadow:     0 8px 40px rgba(232,93,32,.18);
  --shadow-lg:  0 20px 80px rgba(232,93,32,.25);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(26,15,8,.75);
  border-bottom: 1px solid rgba(245,213,168,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.nav__icon { width: 32px; height: 32px; border-radius: .5rem; }

.nav__links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  color: var(--text-muted);
}

.nav__links a:hover { color: var(--cream); }

.nav__cta {
  background: var(--orange);
  color: white !important;
  padding: .45rem 1.1rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: background .2s;
}
.nav__cta:hover { background: var(--orange-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: .3s;
}

.nav__mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark-mid);
  border-top: 1px solid rgba(245,213,168,.08);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(245,213,168,.05);
  font-size: .95rem;
}
.nav__mobile a:hover { color: var(--cream); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 7rem 1.5rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #C44A12 0%, transparent 70%);
  bottom: 10%; left: -80px;
}
.hero__orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  top: 40%; left: 40%;
  opacity: .08;
}

.hero__stars {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,213,168,.1);
  border: 1px solid rgba(245,213,168,.2);
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--cream-light);
  margin-bottom: 1.2rem;
}
.hero__title em { color: var(--orange-light); }

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 20px rgba(232,93,32,.4);
}
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 8px 30px rgba(232,93,32,.5); }

.btn--secondary {
  background: rgba(245,213,168,.1);
  color: var(--cream);
  border: 1px solid rgba(245,213,168,.2);
}
.btn--secondary:hover { background: rgba(245,213,168,.18); }

/* ===== MOCKUP ===== */
.hero__mockup {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mockup__phone {
  width: 260px;
  background: var(--dark-mid);
  border-radius: 2.5rem;
  border: 2px solid rgba(245,213,168,.15);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(232,93,32,.15);
  overflow: hidden;
  padding: 1.5rem 1rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.mockup__screen { }

.mockup__app { display: flex; flex-direction: column; gap: .75rem; }

.mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .25rem;
}
.mockup__greeting {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
}
.mockup__date { font-size: .7rem; color: var(--text-muted); }

.mockup__card {
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mockup__card--guidance {
  background: linear-gradient(135deg, rgba(232,93,32,.3), rgba(196,74,18,.15));
  border: 1px solid rgba(232,93,32,.3);
}
.mockup__row { display: flex; gap: .5rem; }
.mockup__row .mockup__card { flex: 1; }
.mockup__card--taro {
  background: rgba(245,213,168,.06);
  border: 1px solid rgba(245,213,168,.12);
}
.mockup__card--moon {
  background: rgba(100,80,200,.15);
  border: 1px solid rgba(150,120,255,.15);
}
.mockup__card-icon { font-size: 1.3rem; }
.mockup__card-label { font-size: .6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.mockup__card-value { font-family: var(--font-serif); font-size: .9rem; color: var(--cream); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-badge {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: .75rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--cream-light);
}
.section-header h2 em { color: var(--orange-light); }

/* ===== FEATURES ===== */
.features {
  padding: 6rem 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(245,213,168,.08);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(245,213,168,.18); }

.feature-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .25;
  pointer-events: none;
}
.feature-card--guidance .feature-card__glow { background: var(--orange); }
.feature-card--taro    .feature-card__glow { background: #B44ACC; }
.feature-card--moon    .feature-card__glow { background: #4A7ACC; }

.feature-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream-light);
  margin-bottom: .75rem;
}

.feature-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.feature-card__list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.feature-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: .6rem;
  color: var(--orange-light);
  top: .15rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(232,93,32,.04), transparent);
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.about__visual {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}

.about__circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  margin: 20px auto;
}
.about__circle img { width: 160px; height: 160px; border-radius: 2rem; }

.about__sparkle {
  position: absolute;
  color: var(--orange-light);
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}
.about__sparkle--1 { top: 10px; right: 30px; animation-delay: 0s; }
.about__sparkle--2 { bottom: 40px; left: 10px; animation-delay: .7s; }
.about__sparkle--3 { top: 50%; right: 0; animation-delay: 1.4s; }

@keyframes sparkle {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}

.about__text { flex: 1; min-width: 280px; }
.about__text .section-badge { margin-bottom: .75rem; }

.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--cream-light);
  margin-bottom: 1.25rem;
}
.about__text h2 em { color: var(--orange-light); }

.about__text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--orange-light);
  font-weight: 700;
}
.stat__label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ===== DOWNLOAD ===== */
.download {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.download__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.download__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.download__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -100px; left: -100px;
  opacity: .2;
}
.download__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  opacity: .07;
}

.download__inner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(232,93,32,.12), rgba(196,74,18,.06));
  border: 1px solid rgba(232,93,32,.2);
  border-radius: 2.5rem;
  padding: 4rem 2rem;
}

.download__icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.download__icon img { width: 100%; height: 100%; }

.download__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream-light);
  margin-bottom: .75rem;
}
.download__inner h2 em { color: var(--orange-light); }

.download__inner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
}

.download__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(245,213,168,.08);
  border: 1px solid rgba(245,213,168,.2);
  padding: .9rem 1.6rem;
  border-radius: 1rem;
  color: var(--cream);
  transition: background .2s, transform .2s;
  min-width: 160px;
}
.store-btn:hover { background: rgba(245,213,168,.15); transform: translateY(-2px); }
.store-btn small { display: block; font-size: .65rem; color: var(--text-muted); }
.store-btn strong { display: block; font-size: 1rem; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(245,213,168,.08);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
}
.footer__icon { width: 28px; height: 28px; border-radius: .4rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: center;
}
.footer__nav a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--cream); }

.footer__copy { font-size: .78rem; color: var(--text-muted); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream-light);
  margin-bottom: .5rem;
}

.legal-page .legal-date {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin: 2rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(245,213,168,.1);
}

.legal-page h3 {
  font-size: 1rem;
  color: var(--cream);
  margin: 1.25rem 0 .5rem;
}

.legal-page p, .legal-page li {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .5rem;
}

.legal-page ul, .legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a { color: var(--orange-light); text-decoration: underline; }

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange-light);
  font-size: .9rem;
  margin-bottom: 2rem;
}
.legal-nav:hover { color: var(--cream); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
    gap: 2.5rem;
  }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }

  .about__inner { flex-direction: column; text-align: center; }
  .about__visual { width: 220px; height: 220px; margin: 0 auto; }
  .about__circle { width: 200px; height: 200px; }
  .about__stats { justify-content: center; }

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

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .store-btn { width: 100%; }
  .download__actions { flex-direction: column; align-items: center; }
}
