/* =============================================
   NORDBOT – STYLESHEET
   Midnight Navy × Glacial Blue × Gold
   Cormorant Garamond + DM Sans
   ============================================= */

/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── CSS VARIABLES ─────────────────────────── */
:root {
  --bg:           #0e1228;
  --bg-mid:       #141830;
  --bg-card:      #1a1f3a;
  --border:       rgba(130, 165, 240, 0.2);
  --border-gold:  rgba(220, 180, 100, 0.32);

  --text:         #f0f2ff;
  --text-muted:   #b0bae0;
  --text-dim:     #7080b0;

  --blue-light:   #7eb8f7;
  --blue-glow:    #3b6fd4;
  --blue-deep:    #1b3a8a;

  --gold:         #c4a05a;
  --gold-light:   #e8c97a;
  --gold-glow:    rgba(196, 160, 90, 0.35);

  --accent-bas:      #5d9cf5;
  --accent-standard: #c4a05a;
  --accent-premium:  #9b6de8;

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;

  --shadow-card: 0 24px 64px rgba(0, 0, 50, 0.6);
  --shadow-glow: 0 0 60px rgba(59, 111, 212, 0.15);
}

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.7rem; font-weight: 500; }
em { font-style: italic; color: var(--gold-light); }

p { line-height: 1.7; color: var(--text-muted); }

a { text-decoration: none; color: inherit; }

.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ─── CONTAINER ─────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, #3b6fd4 0%, #1b4fa8 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 111, 212, 0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(59, 111, 212, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--blue-glow);
  color: var(--blue-light);
  background: rgba(59, 111, 212, 0.08);
}

.btn--outline {
  background: transparent;
  color: var(--blue-light);
  border: 1px solid rgba(94, 156, 245, 0.35);
}
.btn--outline:hover {
  background: rgba(94, 156, 245, 0.08);
  border-color: var(--blue-light);
}

.btn--gold {
  background: linear-gradient(135deg, #c4a05a 0%, #9b7730 100%);
  color: #07091a;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(196, 160, 90, 0.4);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(196, 160, 90, 0.55);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── ORB BACKGROUNDS ─────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}

.orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2248b0 0%, transparent 70%);
  top: -200px; left: -150px;
  opacity: 0.75;
}
.orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4a2090 0%, transparent 70%);
  top: 100px; right: -200px;
  opacity: 0.5;
}
.orb--3 {
  width: 400px; height: 400px;

  background: radial-gradient(circle, #1044a0 0%, transparent 70%);
  bottom: -100px; left: 30%;
  opacity: 0.55;
}

/* ─── NAV ─────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(7, 9, 26, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; letter-spacing: 0.02em; text-decoration: none; color: var(--text); }
.nav__logo span { color: var(--gold); }
.logo__gold { color: var(--gold) !important; }
.logo__text { display: inline; letter-spacing: 0; word-spacing: 0; color: var(--text) !important; font-size: 2rem; }
.logo__text .logo__gold { color: var(--gold) !important; }

.logo__arrow {
  font-size: 0.85rem;
  color: var(--gold) !important;
  opacity: 0.7;
  transition: transform 0.25s, opacity 0.25s;
  font-family: 'DM Sans', sans-serif;
  margin-left: 0.4rem;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Loggan har mörk bakgrund – vi klipper bort den med mix-blend-mode */
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.05) opacity(0.85);
}

.nav__logo--btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem 0.3rem 0.3rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.nav__logo--btn:hover {
  border-color: var(--border-gold);
  background: rgba(196, 160, 90, 0.07);
  box-shadow: 0 0 20px rgba(196, 160, 90, 0.12);
}

.logo__arrow {
  font-size: 0.85rem;
  color: var(--gold) !important;
  opacity: 0.7;
  transition: transform 0.25s, opacity 0.25s;
  font-family: 'DM Sans', sans-serif;
  margin-left: 0.4rem;
}
.nav__logo--btn:hover .logo__arrow {
  transform: translateY(-2px);
  opacity: 1;
}
a.nav__logo { cursor: pointer; transition: opacity 0.2s; }
a.nav__logo:hover { opacity: 0.8; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s;
  letter-spacing: 0.03em;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #3b6fd4, #1b4fa8);
  color: #fff !important;
  font-weight: 500;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(59, 111, 212, 0.35);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59, 111, 212, 0.5) !important;
}

/* ─── HERO ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 3rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__title {
  color: var(--text);
  margin-bottom: 1.8rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  padding-right: 4%;
}

.hero__sub {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 280px;
  text-align: center;
}

/* Badge */
.hero__badge {
  position: relative;
  z-index: 2;
}

.badge__ring {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(196, 160, 90, 0.2);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}
.badge__ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(196, 160, 90, 0.12);
}

.badge__inner {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 160, 90, 0.15), rgba(196, 160, 90, 0.05));
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(196, 160, 90, 0.15);
}

.badge__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.badge__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* ─── ABOUT ─────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text h2 {
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about__text p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(26, 31, 58, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}
.stat:hover { border-color: rgba(100, 140, 220, 0.3); }

.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ─── SECTION HEADER ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  color: var(--text);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── PRICING ─────────────────────────── */
.pricing {
  padding: 8rem 0;
  background: var(--bg);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(26, 31, 58, 0.95) 0%, rgba(18, 21, 46, 0.98) 100%);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing__card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 140, 220, 0.3);
  box-shadow: var(--shadow-card);
}

.pricing__card--featured {
  border-color: rgba(220, 180, 100, 0.4);
  background: linear-gradient(160deg, rgba(34, 26, 58, 0.98) 0%, rgba(22, 16, 44, 1) 100%);
  box-shadow: 0 0 80px rgba(196, 160, 90, 0.14), var(--shadow-card);
  transform: translateY(-8px);
}

.pricing__card--featured:hover { transform: translateY(-14px); }

.card__glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  filter: blur(50px);
}

.pricing__card[data-tier="bas"] .card__glow    { background: var(--accent-bas); }
.pricing__card[data-tier="standard"] .card__glow { background: var(--accent-standard); }
.pricing__card[data-tier="premium"] .card__glow  { background: var(--accent-premium); }

.pricing__card:hover .card__glow { opacity: 0.08; }

.card__badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #c4a05a, #9b7730);
  color: #07091a;
}

.card__header { margin-bottom: 1.8rem; }

.card__icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.card__name {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card__tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.price__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.price__currency {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.card__features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.card__features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  top: 0.35em;
  color: var(--gold);
  opacity: 0.7;
}

.card__features li:first-child {
  font-weight: 500;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding-left: 0;
}
.card__features li:first-child::before { display: none; }

/* Tier accent lines */
.pricing__card[data-tier="bas"]::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bas), transparent);
  border-radius: 2px 2px 0 0;
}
.pricing__card[data-tier="standard"]::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px 2px 0 0;
}
.pricing__card[data-tier="premium"]::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-premium), transparent);
  border-radius: 2px 2px 0 0;
}

/* ─── DEMO SECTION ─────────────────────────── */
.demo {
  padding: 8rem 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

.demo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.demo__card {
  border-radius: var(--radius-lg);
  background: rgba(18, 22, 48, 0.9);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.demo__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.demo__card--featured {
  border-color: rgba(196, 160, 90, 0.3);
  box-shadow: 0 0 60px rgba(196, 160, 90, 0.08);
}

.demo__label {
  padding: 0.8rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.demo__card[data-tier="bas"] .demo__label      { color: var(--accent-bas); background: rgba(94, 156, 245, 0.05); }
.demo__card[data-tier="standard"] .demo__label { color: var(--gold); background: rgba(196, 160, 90, 0.06); }
.demo__card[data-tier="premium"] .demo__label  { color: #b38af5; background: rgba(155, 109, 232, 0.06); }

/* Chat UI */
.demo__screen {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 15, 34, 0.7);
}

.chat__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.chat__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat__avatar--bas      { background: linear-gradient(135deg, #3b6fd4, #5d9cf5); }
.chat__avatar--standard { background: linear-gradient(135deg, #9b7730, #e8c97a); }
.chat__avatar--premium  { background: linear-gradient(135deg, #5a1fa8, #b38af5); }

.chat__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.chat__status {
  font-size: 0.68rem;
  color: #4ade80;
  line-height: 1;
}

.chat__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat__bubble {
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat__bubble--bot {
  background: rgba(40, 48, 90, 0.85);
  border: 1px solid rgba(130, 165, 240, 0.18);
  color: var(--text-muted);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat__bubble--user {
  background: linear-gradient(135deg, #3b6fd4, #1b4fa8);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat__cards {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-self: flex-start;
}

.chat__card-btn {
  font-size: 0.73rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 160, 90, 0.3);
  color: var(--gold);
  background: rgba(196, 160, 90, 0.06);
  cursor: pointer;
  transition: background 0.2s;
}
.chat__card-btn:hover { background: rgba(196, 160, 90, 0.12); }

.chat__input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(15, 19, 48, 0.4);
}

.chat__input-mock {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.chat__send {
  font-size: 0.8rem;
  color: var(--blue-light);
  opacity: 0.7;
}

.searching {
  font-size: 0.73rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Image placeholder */
.demo__image-slot {
  padding: 1.5rem;
}

.image__placeholder {
  border: 1.5px dashed rgba(100, 140, 220, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  text-align: center;
  background: rgba(15, 19, 48, 0.3);
  transition: border-color 0.3s, background 0.3s;
}

.image__placeholder:hover {
  border-color: rgba(100, 140, 220, 0.4);
  background: rgba(15, 19, 48, 0.5);
}

.image__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.6rem;
  opacity: 0.5;
}

.image__placeholder p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.image__hint {
  font-size: 0.7rem !important;
  color: rgba(100, 120, 180, 0.4) !important;
  font-family: 'Courier New', monospace;
}

/* ─── CONTACT ─────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.orb--contact {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #1b3a8a 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  z-index: 0;
}

.contact__inner h2 {
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.contact__inner p {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(26, 31, 58, 0.8);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  backdrop-filter: blur(8px);
}

.form__input::placeholder { color: var(--text-dim); }
.form__input:focus {
  border-color: rgba(100, 140, 220, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 111, 212, 0.1);
}

.form__select { appearance: none; cursor: pointer; }

/* ─── FOOTER ─────────────────────────── */
.footer {
  padding: 3rem 0;
  background: rgba(5, 7, 18, 0.95);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
}
.footer__logo span { color: var(--gold); }

.footer__copy, .footer__tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow  { animation: fade-up 0.8s ease 0.1s both; }
.hero__title    { animation: fade-up 0.8s ease 0.25s both; }
.hero__sub      { animation: fade-up 0.8s ease 0.4s both; }
.hero__actions  { animation: fade-up 0.8s ease 0.55s both; }
.hero__badge    { animation: fade-up 0.8s ease 0.7s both; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .pricing__grid,
  .demo__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing__card--featured { transform: none; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__badge { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .container { padding: 0 1.2rem; }
}

/* ─── SUBTLE GRAIN OVERLAY ─────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 999;
}