/* ── Nest Align Co. / The Audrey App ── */
:root {
  --navy:      #1A3828;
  --navy-dark: #0F2218;
  --navy-mid:  #254D38;
  --gold:      #C4992A;
  --gold-light:#F5ECD4;
  --cream:     #FAF0E3;
  --cream-mid: #F0E8D8;
  --white:     #FFFFFF;
  --charcoal:  #2C2822;
  --gray:      #6B6560;
  --light-gray:#E8E2D9;
  --success:   #3B7A50;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(26,56,40,0.10);
  --shadow-lg: 0 12px 48px rgba(26,56,40,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITIES ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #A07820; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,153,42,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,56,40,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,153,42,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img {
  width: 36px; height: 36px; border-radius: 9px;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-name  { font-size: 15px; font-weight: 700; color: var(--white); }
.nav-logo-sub   { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 13px !important; font-weight: 700 !important; }
.nav-waitlist {
  background: var(--gold); color: var(--white) !important;
  padding: 9px 20px; border-radius: 100px;
  font-size: 13px !important; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-waitlist:hover { background: #A07820 !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,153,42,0.08) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-eyebrow-text { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 480px;
}

/* Countdown */
.countdown { display: flex; gap: 16px; }
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196,153,42,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 72px;
}
.countdown-num { font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; }
.countdown-label { font-size: 10px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.hero-store-row { display: flex; gap: 12px; align-items: center; }
.store-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-weight: 600;
}
.store-badge svg { opacity: 0.5; }

.hero-img-wrap {
  display: flex; justify-content: center; align-items: flex-end;
}
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.phone-frame {
  background: var(--navy-dark);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 0 0 2px rgba(196,153,42,0.4), var(--shadow-lg), 0 0 80px rgba(196,153,42,0.1);
}
.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: var(--cream);
}
.phone-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--gold);
  padding: 20px 0;
}
.intro-band-inner {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.intro-stat { display: flex; flex-direction: column; align-items: center; }
.intro-stat-num  { font-size: 22px; font-weight: 800; color: var(--white); }
.intro-stat-label { font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 600; }
.intro-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

/* ── SCREENSHOTS ── */
.screenshots { background: var(--cream); }
.section-label { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -0.5px; }
.section-sub { font-size: 17px; color: var(--gray); line-height: 1.65; margin-top: 12px; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.screen-card { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.screen-phone {
  background: var(--navy-dark);
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 0 0 1.5px rgba(196,153,42,0.3), var(--shadow);
  width: 100%;
  max-width: 220px;
}
.screen-phone-inner {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: var(--cream);
}
.screen-phone-inner img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.screen-label { font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; }
.screen-desc  { font-size: 12px; color: var(--gray); text-align: center; line-height: 1.5; }

/* ── FEATURES ── */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--tile-bg, #1A3828);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon ion-icon { font-size: 22px; color: var(--tile-icon, #fff); }
.feature-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.feature-desc  { font-size: 13px; color: var(--gray); line-height: 1.5; }
.meal-disclaimer { font-size: 11px; color: var(--gray); font-style: italic; line-height: 1.5; padding-top: 6px; border-top: 1px solid var(--light-gray); margin-top: 4px; }
.feature-tier-label {
  font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
  margin: 44px 0 16px; display: flex; align-items: center; gap: 10px;
}
.feature-tier-label::after { content: ''; flex: 1; height: 1px; background: var(--light-gray); }

/* ── ASK AUDREY SPOTLIGHT ── */
.audrey-spotlight {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.spotlight-content { display: flex; flex-direction: column; gap: 20px; }
.spotlight-content .section-title { color: var(--white); }
.spotlight-content .section-sub   { color: rgba(255,255,255,0.7); max-width: 100%; }
.spotlight-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.spotlight-bullet { display: flex; align-items: flex-start; gap: 12px; }
.bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.bullet-text { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.chat-demo {
  background: var(--cream);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.chat-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light-gray);
}
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.chat-name  { font-size: 14px; font-weight: 700; color: var(--navy); }
.chat-status { font-size: 11px; color: var(--success); font-weight: 600; }
.chat-bubble {
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 14px; line-height: 1.5;
  max-width: 85%;
}
.bubble-user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble-audrey {
  background: var(--white);
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.bubble-confirm {
  background: #E8F5EE;
  border: 1.5px solid #3B7A50;
  color: var(--charcoal);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
}
.confirm-check { color: var(--success); font-weight: 700; margin-bottom: 4px; }

/* ── PRICING ── */
.pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 48px auto 0;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--light-gray);
  position: relative;
  box-shadow: var(--shadow);
}
.plan-card-gold { border-color: var(--gold); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name  { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.plan-price { font-size: 40px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--gray); }
.plan-desc  { font-size: 13px; color: var(--gray); margin-top: 8px; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--light-gray); margin: 20px 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--charcoal); line-height: 1.4; }
.check-icon { color: var(--success); font-weight: 700; flex-shrink: 0; }
.plan-cta { margin-top: 24px; }
.btn-full { width: 100%; }

/* ── WAITLIST ── */
.waitlist {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.waitlist h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -0.5px; }
.waitlist-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-top: 12px; }
.waitlist-form {
  display: flex; gap: 12px;
  max-width: 520px; margin: 36px auto 0;
}
.waitlist-form input {
  flex: 1; padding: 16px 22px; border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input::placeholder { color: rgba(255,255,255,0.45); }
.waitlist-form input:focus { border-color: var(--gold); }
.waitlist-fine { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }
.waitlist-success {
  display: none;
  background: rgba(59,122,80,0.25);
  border: 1.5px solid var(--success);
  border-radius: var(--radius);
  padding: 18px 24px;
  color: #7FD4A0;
  font-size: 15px; font-weight: 600;
  max-width: 520px; margin: 24px auto 0;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 40px; flex-wrap: wrap;
}
.footer-logo { display: flex; flex-direction: column; gap: 10px; }
.footer-logo img { width: 44px; height: 44px; border-radius: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); max-width: 220px; line-height: 1.5; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── INNER PAGE LAYOUT ── */
.page-hero {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  padding: 130px 0 64px;
  text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.65); margin-top: 10px; }
.page-content { padding: 64px 0 96px; }
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px; margin: 36px 0 14px;
}
.prose h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 20px 0 6px; }
.prose p  { font-size: 14px; line-height: 1.8; color: var(--charcoal); margin-bottom: 12px; }
.prose ul { padding-left: 20px; margin-bottom: 12px; }
.prose ul li { font-size: 14px; line-height: 1.7; color: var(--charcoal); margin-bottom: 4px; }
.prose .highlight {
  background: #FFF8E7; border-left: 3px solid var(--gold);
  padding: 14px 18px; border-radius: 0 10px 10px 0;
  font-size: 14px; color: var(--charcoal); line-height: 1.7;
  margin: 16px 0;
}
.prose .contact-box {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; margin-top: 32px;
  border: 1px solid var(--light-gray);
}
.prose table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0; }
.prose th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 700; }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--light-gray); color: var(--charcoal); }
.prose td:first-child { font-weight: 600; color: var(--navy); width: 160px; }

/* ── SUPPORT PAGE ── */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px; font-size: 15px; font-weight: 700; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--gold); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--charcoal); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.support-contact {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.support-contact h3 { font-size: 22px; font-weight: 800; color: var(--white); }
.support-contact p  { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.support-contact a  { color: var(--gold); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow      { justify-content: center; }
  .hero-sub          { margin: 0 auto; }
  .hero-actions      { align-items: center; }
  .hero-store-row    { justify-content: center; }
  .hero-img-wrap     { justify-content: center; }
  .phone-mockup      { max-width: 240px; }
  .screenshots-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .spotlight-inner   { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; }
  .intro-band-inner  { gap: 24px; }
  .intro-divider     { display: none; }
  .footer-inner      { flex-direction: column; }
  .waitlist-form     { flex-direction: column; }
  .waitlist-form input { border-radius: 14px; }
  .waitlist-form .btn { border-radius: 14px; }
}
@media (max-width: 600px) {
  .screenshots-grid  { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .countdown { gap: 10px; }
  .countdown-unit { padding: 10px 12px; min-width: 58px; }
  .countdown-num  { font-size: 24px; }
}
