/**
 * AgentNation public site styles
 * Based on specs/Brand_Guide.md — AgentNation parent brand (S10) + shared type system (S04)
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ---------------------------------------------------------------------------
   AgentNation color system (Brand Guide §10)
   --------------------------------------------------------------------------- */
:root {
  /* AgentNation palette */
  --an-slate: #1A2332;
  --an-electric: #3B82F6;
  --an-electric-light: #60A5FA;
  --an-steel: #2C3E55;
  --an-cloud: #F0F4FF;
  --an-silver: #94A3B8;
  --an-orange: #F97316;

  /* Shared / SphereIQ (Brand Guide §03) — for landing & "Powered by" context */
  --navy: #0D1B2A;
  --navy-mid: #162236;
  --navy-light: #1E3352;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E9C6;
  --cream: #F8F6F1;
  --white: #F8F6F1;
  --slate-text: #8A9BB0;
  --muted: #8A9BB0;
  --green: #2ECC8A;
  --alert: #E85D5D;

  /* Semantic aliases for public pages */
  --color-bg: var(--an-slate);
  --color-bg-elevated: var(--an-steel);
  --color-text: var(--an-cloud);
  --color-text-muted: var(--an-silver);
  --color-accent: var(--an-electric);
  --color-accent-hover: var(--an-electric-light);
  --color-surface: var(--an-steel);

  /* Type (Brand Guide §04) */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, monospace;

  /* UI (Brand Guide §08) */
  --radius: 4px;
  --radius-sm: 2px;
}

/* ---------------------------------------------------------------------------
   Reset & base
   --------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------------------------------------
   Typography
   --------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.text-muted {
  color: var(--color-text-muted);
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

/* ---------------------------------------------------------------------------
   Layout
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: 40rem;
}

.page-center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ---------------------------------------------------------------------------
   Buttons (Brand Guide §08 — AgentNation Blue for primary CTA)
   --------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background-color: var(--an-electric);
  color: white;
}

.btn--primary:hover {
  background-color: var(--an-electric-light);
  color: white;
}

.btn--dark {
  background-color: var(--an-slate);
  color: white;
}

.btn--dark:hover {
  background-color: var(--an-steel);
  color: white;
}

.btn--outline {
  background-color: transparent;
  color: var(--an-electric);
  border: 2px solid var(--an-electric);
}

.btn--outline:hover {
  background-color: var(--an-electric);
  color: white;
}

.btn--ghost {
  background-color: transparent;
  color: var(--an-cloud);
}

.btn--ghost:hover {
  background-color: var(--an-steel);
  color: var(--an-cloud);
}

/* Gold CTA when used in shared/SphereIQ context */
.btn--gold {
  background-color: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background-color: var(--gold-light);
  color: var(--navy);
}

/* ---------------------------------------------------------------------------
   Badges & labels (Brand Guide §08)
   --------------------------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.badge--navy {
  background-color: var(--navy);
  color: white;
  border: 1px solid var(--an-steel);
}

.badge--outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.badge--outline-navy {
  background-color: transparent;
  color: var(--an-silver);
  border: 1px solid var(--an-steel);
}

.badge--outline-green {
  background-color: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

.badge--powered {
  color: var(--an-silver);
  border: 1px solid var(--an-steel);
  font-size: 0.6875rem;
}

/* ---------------------------------------------------------------------------
   Links
   --------------------------------------------------------------------------- */
a {
  color: var(--an-electric);
  text-decoration: none;
}

a:hover {
  color: var(--an-electric-light);
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   Footer / attribution (Brand Guide: "Powered by AgentNation" secondary)
   --------------------------------------------------------------------------- */
.footer-attribution {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
}

.footer-attribution a {
  color: var(--an-silver);
}

.footer-attribution a:hover {
  color: var(--an-electric-light);
}

/* ==========================================================================
   SphereIQ landing page (uses --navy, --gold, --cream, --muted from above)
   ========================================================================== */

html { scroll-behavior: smooth; }

body.landing {
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--gold); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: 2px;
  font-family: var(--font-body);
  background: transparent;
  cursor: pointer;
  appearance: none;
}

.nav-dropdown-trigger:hover {
  background: rgba(201, 168, 76, 0.1);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 4px 0 0;
  padding: 4px 0;
  min-width: 160px;
  list-style: none;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--navy-light);
  color: var(--gold);
  text-decoration: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(46, 204, 138, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--cream);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  margin: 24px auto 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub strong { color: var(--cream); font-weight: 500; }

.capture-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.capture-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  width: 320px;
  outline: none;
  transition: border-color 0.2s;
}

.capture-form input::placeholder { color: var(--muted); }
.capture-form input:focus { border-color: var(--gold); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.invite-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.invite-note span { color: var(--gold); }

/* Sections */
.section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.landing h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.landing h2 em { font-style: italic; color: var(--gold); }

/* Pain grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 56px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.pain-card {
  padding: 36px 32px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.pain-card:hover { background: var(--navy-light); }

.pain-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.pain-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cream);
  font-family: var(--font-body);
}

.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Divider */
.divider {
  text-align: center;
  padding: 60px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.divider-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
}

.divider-text strong { color: var(--cream); font-style: normal; }

/* Demo / chat */
.demo-section {
  padding: 100px 24px;
  background: var(--navy-mid);
}

.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.demo-copy h2 { margin-bottom: 20px; }
.demo-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.demo-copy .copy-highlight { color: var(--gold); font-weight: 500; font-size: 14px; }
.demo-copy .plan-meta { font-size: 12px; color: var(--muted); }
.price-card .price-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.price-card .price-disclaimer { font-size: 12px; color: var(--muted); text-align: center; }
.final-cta .final-note { margin-top: 20px; font-size: 12px; color: var(--muted); }

.chat-window {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.chat-header {
  background: var(--navy-light);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.chat-dot--alert { background: var(--alert); }
.chat-dot--gold { background: var(--gold); }
.chat-dot--green { background: var(--green); }

.chat-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-left: 4px;
}

.chat-title span { color: var(--gold); }

.chat-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.msg { display: flex; flex-direction: column; gap: 4px; }

.msg-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.msg-bubble {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
}

.msg.ai .msg-bubble {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  border-radius: 2px 8px 8px 8px;
}

.msg.ai .msg-label { color: var(--gold); }

.msg.user { align-items: flex-end; }

.msg.user .msg-bubble {
  background: rgba(46, 204, 138, 0.1);
  border: 1px solid rgba(46, 204, 138, 0.2);
  color: var(--cream);
  border-radius: 8px 2px 8px 8px;
}

.msg.user .msg-label { color: var(--green); }

.msg-highlight { color: var(--gold); font-weight: 500; }
.msg-green { color: var(--green); font-weight: 500; }

.chat-input-bar {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input-mock {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
}

.chat-send {
  background: var(--gold);
  border: none;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
}

/* Tasks */
.tasks-section { padding: 100px 24px; }
.tasks-inner { max-width: 1100px; margin: 0 auto; }

.tasks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  align-items: start;
}

.task-plan {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.plan-header {
  background: var(--navy-light);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.plan-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

.plan-date span { color: var(--gold); }

.plan-greeting {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-greeting p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.plan-greeting strong { color: var(--cream); }

.tier-block { padding: 16px 24px; }
.tier-block + .tier-block { border-top: 1px solid rgba(255, 255, 255, 0.04); }

.tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-label.high { color: var(--alert); }
.tier-label.medium { color: var(--gold); }
.tier-label.low { color: var(--muted); }

.tier-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tier-label.high .tier-dot { background: var(--alert); }
.tier-label.medium .tier-dot { background: var(--gold); }
.tier-label.low .tier-dot { background: var(--muted); }

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.task-item:last-child { border-bottom: none; }

.task-check {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.task-check.done {
  background: var(--green);
  border-color: var(--green);
}

.task-check.done::after {
  content: '✓';
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
}

.task-text { font-size: 13px; flex: 1; }
.task-name { color: var(--cream); font-weight: 500; }

.task-name a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

.task-desc { color: var(--muted); font-size: 12px; margin-top: 2px; }

.task-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tag-high { background: rgba(232, 93, 93, 0.15); color: var(--alert); }
.tag-med { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
.tag-low { background: rgba(138, 155, 176, 0.15); color: var(--muted); }

.tasks-copy h2 { margin-bottom: 20px; }
.tasks-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding: 0;
  margin-bottom: 0;
}

.feature-list li { display: flex; gap: 16px; align-items: flex-start; }

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; font-family: var(--font-body); }
.feature-text p { font-size: 13px; color: var(--muted); margin: 0; }

/* Features grid */
.features-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

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

.feat-card {
  padding: 36px 32px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  background: var(--navy-light);
  border-color: rgba(201, 168, 76, 0.2);
}

.feat-card:hover::before { opacity: 1; }

.feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(201, 168, 76, 0.4);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.feat-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; font-family: var(--font-body); }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Pricing */
.pricing-section { padding: 100px 24px; text-align: center; }
.pricing-inner { max-width: 560px; margin: 0 auto; }

.price-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 56px 48px;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.price-tag {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--cream);
  margin: 16px 0 8px;
}

.price-tag sup { font-size: 32px; vertical-align: super; color: var(--gold); }
.price-tag sub { font-size: 20px; color: var(--muted); font-family: var(--font-body); font-weight: 300; }

.price-note { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.price-note strong { color: var(--gold); }

.price-includes {
  text-align: left;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-line {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.price-line::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* Final CTA */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 18px; max-width: 520px; margin: 0 auto 48px; }

.final-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.final-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  width: 320px;
  outline: none;
}

.final-form input::placeholder { color: var(--muted); }

/* Footer landing */
.landing footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo span { color: var(--gold); }

.footer-sub { font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-top: 4px; }
.footer-right { font-size: 12px; color: rgba(138, 155, 176, 0.5); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible { opacity: 1; transform: translateY(0); }

.typing { display: inline; }
.typing::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--gold);
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .demo-inner,
  .tasks-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-card { padding: 40px 28px; }
  .landing footer { flex-direction: column; text-align: center; }
}
