/* ===========================
   HOMEY WEBSITE — STYLES
   =========================== */

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

:root {
  --purple: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --purple-bg: #6d28d908;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --bg: #fafafa;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-icon { font-size: 22px; }
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--purple); }

.btn-nav {
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-nav:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  gap: 60px;
}

.hero-inner {
  flex: 1;
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  background: #6d28d915;
  color: var(--purple);
  border: 1px solid #6d28d930;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.app-store-text {
  display: flex;
  flex-direction: column;
}

.app-store-small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1;
}

.app-store-large {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-platform {
  font-size: 13px;
  color: var(--text-muted);
}

/* Phone Mockup */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(109, 40, 217, 0.25), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0f0f1a;
  border-radius: 34px;
  overflow: hidden;
}

.phone-screen-content {
  padding: 32px 16px 16px;
}

.mock-greeting {
  font-size: 13px;
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 2px;
}

.mock-date {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 16px;
}

.mock-card {
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-card.purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.mock-card-icon { font-size: 18px; }

.mock-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mock-card-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
}

.mock-section {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mock-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #1e293b;
  font-size: 12px;
  color: #cbd5e1;
}

.mock-task.checked { opacity: 0.4; }
.mock-task.checked span { text-decoration: line-through; }

.mock-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 2px solid #334155;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-checkbox.filled {
  background: #7c3aed;
  border-color: #7c3aed;
  font-size: 11px;
  color: #fff;
}

/* ===========================
   FEATURES
   =========================== */

.features {
  background: #fff;
  padding: 100px 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 60px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   SPOTLIGHT (Organize Vision)
   =========================== */

.spotlight {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0a2e 100%);
}

.spotlight-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.spotlight-text {
  flex: 1;
  max-width: 480px;
}

.spotlight .section-label { color: #a78bfa; }

.spotlight h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.spotlight p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 28px;
}

.spotlight-list {
  list-style: none;
  margin-bottom: 36px;
}

.spotlight-list li {
  font-size: 14px;
  color: #cbd5e1;
  padding: 7px 0;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotlight-list li::before {
  content: '✓';
  color: #a78bfa;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); }
.btn-full { display: block; text-align: center; }

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

.ai-card {
  background: #1e1e30;
  border: 1px solid #2d2d45;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
}

.ai-card-badge {
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 14px;
}

.ai-card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
}

.ai-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ai-placeholder-icon { font-size: 40px; }
.ai-placeholder-text { font-size: 12px; color: #64748b; }

.ai-card-steps { display: flex; flex-direction: column; gap: 8px; }

.ai-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   PREMIUM
   =========================== */

.premium {
  padding: 100px 0;
  background: #fff;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-amount {
  text-align: right;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feature {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ===========================
   PHILOSOPHY
   =========================== */

.philosophy {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, #6d28d910 0%, #a78bfa10 100%);
}

.philosophy blockquote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
}

.philosophy-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--text);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer .nav-logo-text { color: #fff; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: 13px;
  color: #334155;
}

/* ===========================
   PRIVACY / TERMS PAGES
   =========================== */

.doc-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.doc-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.doc-page .last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.doc-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}

.doc-page p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.doc-page ul {
  margin: 0 0 16px 20px;
}

.doc-page ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.doc-page a { color: var(--purple); }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    text-align: center;
  }

  .hero-inner { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-cta { justify-content: center; }

  .nav-links { display: none; }

  .spotlight-inner {
    flex-direction: column;
  }

  .spotlight-text { max-width: 100%; }

  .phone-mockup {
    width: 240px;
    height: 460px;
  }
}
