/* ============================================================
   Avover — Shared Design System
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Design Tokens ---------------------------------------------------
   "The Morning" — warm paper surfaces (people) printed with blue-black
   ink (the system). Brand blue is the action colour, used sparingly.
   Legacy token names below are kept as aliases so existing page CSS
   keeps resolving; only their values changed.
   -------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* surfaces: warm, tinted toward sand */
  --paper:      oklch(0.981 0.008 78);
  --paper-2:    oklch(0.958 0.013 76);
  --paper-3:    oklch(0.926 0.019 72);
  --rule:       oklch(0.886 0.014 74);
  --rule-soft:  oklch(0.925 0.010 74);

  /* ink: blue-black, carries the brand hue */
  --ink:        oklch(0.235 0.021 258);
  --ink-2:      oklch(0.452 0.016 258);
  --ink-3:      oklch(0.605 0.013 258);

  /* signal */
  --brand:      oklch(0.515 0.152 250);
  --brand-deep: oklch(0.395 0.118 252);
  --brand-wash: oklch(0.955 0.022 250);

  /* accents, used sparingly */
  --clay:       oklch(0.515 0.135 40);
  --clay-wash:  oklch(0.955 0.020 48);
  --sage:       oklch(0.520 0.078 155);
  --sage-wash:  oklch(0.950 0.026 156);
  --amber:      oklch(0.660 0.120 66);

  /* warm dark panel */
  --night:      oklch(0.208 0.024 64);
  --night-2:    oklch(0.268 0.024 62);

  --serif: 'Petrona', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* 4pt spacing scale, semantic */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --gutter: clamp(20px, 4vw, 48px);
  --measure: 66ch;

  /* ---- legacy aliases ---- */
  --primary: var(--brand);
  --primary-hover: var(--brand-deep);
  --primary-dark: var(--brand-deep);
  --primary-light: var(--paper-2);
  --primary-subtle: oklch(0.515 0.152 250 / 0.07);
  --secondary: var(--ink);
  --secondary-light: var(--ink-2);
  --section-bg: var(--paper-2);
  --white: var(--paper);

  --text-primary: var(--ink);
  --text-secondary: var(--ink-2);
  --text-muted: var(--ink-2);
  --text-on-dark: oklch(0.965 0.010 78);
  --text-on-dark-muted: oklch(0.800 0.014 74);

  --red-light: var(--clay-wash);
  --red-text: var(--clay);
  --red-bg: oklch(0.930 0.035 45);
  --green-light: var(--sage-wash);
  --green-text: oklch(0.440 0.075 155);
  --green-bg: oklch(0.920 0.045 156);
  --amber-bg: oklch(0.955 0.030 80);
  --amber-text: oklch(0.520 0.110 66);
  --emerald-light: var(--sage-wash);
  --emerald-text: oklch(0.440 0.075 155);

  --border: var(--rule);
  --border-light: var(--rule-soft);
  --shadow-card: 0 0 0 1px oklch(0.886 0.014 74);
  --shadow-elevated: 0 0 0 1px oklch(0.870 0.016 74), 0 18px 36px -24px oklch(0.30 0.03 60 / 0.45);
  --shadow-nav: 0 0 0 1px oklch(0.886 0.014 74);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* the concept is flat and editorial: hairlines, not rounded cards */
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 3px;
  --radius-xl: 4px;
  --radius-full: 9999px;
}

/* --- Typography --- */
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-variant-numeric: tabular-nums;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { text-wrap: pretty; }


/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 112px 0; }
}

.section--cream { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--navy { background: var(--ink); color: var(--text-on-dark); }

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--brand);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 16px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.nav--scrolled {
  background: var(--white);
  box-shadow: var(--shadow-card);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: opacity 150ms var(--ease-out);
}
.nav__brand:hover { opacity: 0.8; }
.nav__brand:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
.nav__brand img { width: 36px; height: 36px; }

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 150ms var(--ease-out);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.nav__link:hover { color: var(--brand); }
.nav__link:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; border-radius: var(--radius-sm); }
.nav__link--active { color: var(--brand); border-bottom-color: var(--brand); }

.nav__cta-wrap { display: none; }

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: color 150ms var(--ease-out);
}
.nav__toggle:hover { color: var(--brand); }
.nav__toggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.nav__toggle svg { width: 24px; height: 24px; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta-wrap { display: block; }
  .nav__toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--white);
  box-shadow: var(--shadow-card);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 250ms var(--ease-out), opacity 200ms var(--ease-out);
}

.mobile-menu--open {
  max-height: 320px;
  opacity: 1;
}

.mobile-menu__list {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 150ms var(--ease-out);
}
.mobile-menu__link:hover { color: var(--brand); }

/* Mobile floating CTA bar */
.mobile-cta-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(15, 29, 47, 0.08);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
  .mobile-menu { display: none; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  transition: background-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 100ms var(--ease-out), box-shadow 200ms var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--brand);
  color: var(--white);
}
@media (hover: hover) {
  .btn--primary:hover {
    background: var(--brand-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px hsla(208, 100%, 40%, 0.2);
  }
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 12px 30px;
}
@media (hover: hover) {
  .btn--outline:hover {
    background: var(--ink);
    color: var(--white);
  }
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}
@media (hover: hover) {
  .btn--white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
  }
}

.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 1.0625rem; }
.btn--sm { padding: 10px 24px; font-size: 0.875rem; }

.btn--nav {
  padding: 10px 24px;
  font-size: 0.9375rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
}

@media (hover: hover) {
  .card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-3px);
  }
}

@media (min-width: 768px) {
  .card { padding: 40px; }
}

.card__icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--brand);
  stroke-width: 1.8;
}

.card__title {
  margin-bottom: 8px;
}

.card__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand);
  transition: gap 200ms var(--ease-out);
}
.card__link:hover { gap: 10px; }
.card__link svg { width: 16px; height: 16px; }

/* --- Form --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-label__optional {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-input,
.form-select {
  min-height: 44px;
  padding: 10px 16px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  width: 100%;
}

.form-input::placeholder { color: var(--text-muted); font-weight: 500; }

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

@media (hover: hover) {
  .form-input:hover,
  .form-select:hover {
    border-color: var(--text-muted);
  }
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 200ms var(--ease-out);
}

.faq-item[open] {
  box-shadow: 0 0 0 2px var(--brand);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 150ms var(--ease-out);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary:hover { color: var(--brand); }
.faq-item summary:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; border-radius: var(--radius-lg); }

.faq-item .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 250ms var(--ease-out);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Toast notification --- */
.toast {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 100;
  max-width: 400px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-elevated);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 400ms var(--ease-out), opacity 400ms var(--ease-out);
}

.toast--visible {
  transform: translateX(0);
  opacity: 1;
}

.toast--success {
  background: var(--green-light);
  color: var(--green-text);
  border: 1px solid var(--green-bg);
}

.toast--error {
  background: var(--red-light);
  color: var(--red-text);
  border: 1px solid var(--red-bg);
}

/* --- Pricing toggle --- */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--paper-2);
  border-radius: var(--radius-full);
  padding: 4px;
  position: relative;
}

.billing-toggle__btn {
  position: relative;
  z-index: 1;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: color 200ms var(--ease-out);
}

.billing-toggle__btn--active {
  color: var(--text-primary);
}

.billing-toggle__pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  transition: left 300ms var(--ease-out), width 300ms var(--ease-out);
}

.billing-toggle__badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 4px 10px;
  background: var(--paper-2);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Pricing card */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.pricing-card--popular {
  box-shadow: 0 0 0 2px var(--brand), var(--shadow-elevated);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  transition: opacity 200ms var(--ease-out);
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-card__feature svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (hover: hover) {
  .pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
  }
  .pricing-card--popular:hover {
    box-shadow: 0 0 0 2px var(--brand), 0 8px 24px rgba(15, 29, 47, 0.1);
  }
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer__brand img { width: 40px; height: 40px; }
.footer__brand span { font-size: 1.25rem; font-weight: 700; }

.footer__desc {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-muted);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  padding: 4px 0;
  transition: color 150ms var(--ease-out);
}
.footer__link:hover { color: var(--white); }

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--text-on-dark-muted);
  transition: color 150ms var(--ease-out);
}
.footer__social:hover { color: var(--white); }
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-teal { color: var(--brand); }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid--lg-gap { gap: 40px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Animations --- */

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

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

@keyframes lineDrawX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll-reveal base states */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-reveal {
  clip-path: inset(6% 4% 6% 4% round 1.5rem);
  transition: clip-path 800ms var(--ease-out);
}

.img-reveal.visible {
  clip-path: inset(0% 0% 0% 0% round 1.5rem);
}

.scale-reveal {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.scale-reveal.visible {
  opacity: 1;
  transform: scale(1);
}

.line-reveal {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}

.line-reveal.visible {
  transform: scaleX(1);
}

/* Continuous animations */
.animate-float {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.animate-pulse {
  animation: pulse-subtle 3s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .img-reveal,
  .scale-reveal,
  .line-reveal {
    transition: none;
    opacity: 1;
    transform: none;
    clip-path: inset(0% 0% 0% 0% round 1.5rem);
  }

  .animate-float,
  .animate-pulse {
    animation: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* --- Decorative --- */
.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Mockup card */
.mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  max-width: 320px;
}

.mockup__header {
  padding: 20px 20px 12px;
}

.mockup__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup__title {
  font-size: 0.875rem;
  font-weight: 700;
}

.mockup__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.mockup__badge--green {
  background: var(--green-light);
  color: var(--green-text);
}

.mockup__badge--amber {
  background: var(--amber-bg);
  color: var(--amber-text);
}

.mockup__badge--muted {
  background: var(--paper-2);
  color: var(--text-muted);
}

.mockup__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.mockup__row:last-child { border-bottom: none; }

.mockup__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup__avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.mockup__name {
  font-size: 0.875rem;
  font-weight: 700;
}

.mockup__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mockup__banner {
  background: var(--brand);
  padding: 12px 20px;
  text-align: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ============================================================
   CONCEPT LAYER — "The Morning"
   Appended last so it wins over the legacy component styles above.
   Where a legacy class already exists (.btn, .card, .nav, .section,
   .footer, .faq-item, .form-*) it is restyled in place rather than
   duplicated, so the React app and the static pillar pages render
   from one system.
   ============================================================ */

/* ---------- layout ---------- */
.container,
.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(72px, 9vw, 140px) 0; }
@media (min-width: 768px) { .section { padding: clamp(72px, 9vw, 140px) 0; } }

.section--white  { background: var(--paper); }
.section--cream  { background: var(--paper-2); border-block: 1px solid var(--rule); }
.section--navy   { background: var(--night); color: oklch(0.94 0.012 78); }
.section--brand  { background: var(--brand-deep); color: oklch(0.96 0.012 250); }

.section--navy h1, .section--navy h2, .section--navy h3,
.section--brand h1, .section--brand h2, .section--brand h3 { color: oklch(0.965 0.010 78); }

/* ---------- type scale ---------- */
.d1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.7rem, 6.2vw, 5.1rem); line-height: 0.99; letter-spacing: -0.025em; text-wrap: balance; }
.d2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.1vw, 3.35rem); line-height: 1.02; letter-spacing: -0.02em; text-wrap: balance; }

.lead {
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: var(--measure);
}
.section--navy .lead, .section--brand .lead { color: oklch(0.84 0.020 74); }
.section--brand .lead { color: oklch(0.87 0.030 250); }

.micro {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);   /* --ink-3 measures 3.66:1 here — fails AA */
}
.section--navy .micro  { color: oklch(0.74 0.030 62); }
.section--brand .micro { color: oklch(0.78 0.060 250); }


/* ---------- photo treatment ----------
   Unifies a mismatched stock set: desaturate slightly, then lay a clay
   multiply + warm soft-light over every image so the cool-cast photos
   and the warm ones read as one shoot. */
.ph { position: relative; overflow: hidden; background: var(--paper-3); isolation: isolate; border-radius: var(--radius-md); }
.ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.04); }
.ph::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: oklch(0.64 0.13 46 / 0.17); mix-blend-mode: multiply;
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: oklch(0.97 0.03 80 / 0.14); mix-blend-mode: soft-light;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 650; font-size: 0.97rem;
  letter-spacing: -0.005em; line-height: 1;
  padding: 14px 26px; min-height: 48px;
  border-radius: var(--radius-full); border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease),
              border-color 180ms var(--ease), color 180ms var(--ease);
}
.btn:active { transform: scale(0.975); }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* blue is the action colour on every light ground; it inverts to paper
   on a dark or blue ground (.btn--white) */
.btn--primary { background: var(--brand); color: #fff; }
@media (hover: hover) {
  .btn--primary:hover { background: var(--brand-deep); transform: none; box-shadow: none; }
}
.btn--outline { background: transparent; border: 1px solid var(--rule); color: var(--ink); padding: 14px 26px; }
@media (hover: hover) {
  .btn--outline:hover { background: oklch(0.94 0.014 74); border-color: var(--brand); color: var(--ink); }
}
.btn--white { background: var(--paper); color: var(--ink); }
@media (hover: hover) { .btn--white:hover { background: #fff; transform: none; } }

.btn--full { width: 100%; }
.btn--lg   { padding: 16px 32px; font-size: 1rem; }
.btn--sm   { padding: 10px 20px; font-size: 0.875rem; min-height: 40px; }
.btn--nav  { padding: 11px 22px; font-size: 0.93rem; min-height: 44px; }

.btn .arw { transition: transform 220ms var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

/* text link */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 650; font-size: 0.95rem; color: var(--brand);
  padding-block: 4px;
  border-bottom: 1px solid oklch(0.515 0.152 250 / 0.28);
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}
.tlink:hover { border-color: var(--brand); color: var(--brand-deep); }
/* brand blue fails contrast on the dark panels — use a light warm tone */
.section--navy .tlink { color: oklch(0.88 0.055 72); border-bottom-color: oklch(0.88 0.055 72 / 0.38); }
.section--navy .tlink:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- the recurring motif: a timestamp ---------- */
.time {
  display: inline-flex; align-items: baseline; gap: 9px;
  font-family: var(--sans); font-weight: 750;
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--clay);
}
.time::before { content: ""; width: 22px; height: 1px; background: var(--clay); align-self: center; flex: none; }

/* ---------- nav ---------- */
.nav {
  background: oklch(0.981 0.008 78 / 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  height: 74px;
  transition: border-color 300ms var(--ease), background-color 300ms var(--ease);
}
.nav--scrolled {
  background: oklch(0.981 0.008 78 / 0.96);
  border-bottom-color: var(--rule);
  box-shadow: none;
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
}
.nav__brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 650; letter-spacing: -0.02em; color: var(--ink); }
.nav__brand img { width: 30px; height: 30px; }
.nav__links { gap: var(--s-6); }
/* :not(.btn) — this selector outranks .btn--primary and would otherwise
   repaint the nav CTA label grey-on-blue */
.nav__link:not(.btn) { font-size: 0.94rem; font-weight: 550; color: var(--ink-2); border-bottom: 1px solid transparent; }
.nav__link:not(.btn):hover { color: var(--ink); }
.nav__link--active { color: var(--ink); border-bottom-color: var(--ink); }
.mobile-menu { background: var(--paper); border-bottom: 1px solid var(--rule); box-shadow: none; }
.mobile-menu__link { font-weight: 550; color: var(--ink-2); }
.mobile-menu__link:hover { color: var(--ink); }
.mobile-cta-bar {
  background: oklch(0.981 0.008 78 / 0.96);
  border-top: 1px solid var(--rule);
  box-shadow: none;
}

/* ---------- cards: flat, hairline, no icon tiles ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: none;
  padding: var(--s-6);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
@media (hover: hover) { .card:hover { box-shadow: none; border-color: var(--ink-3); transform: translateY(-2px); } }
@media (min-width: 768px) { .card { padding: var(--s-7); } }

/* the concept has no rounded icon tiles — keep the icon, drop the box */
.card__icon-box {
  width: auto; height: auto; background: none; border-radius: 0;
  display: block; margin-bottom: var(--s-4);
}
.card__icon-box svg { width: 22px; height: 22px; color: var(--brand); stroke-width: 1.8; }
.card__title { font-family: var(--serif); margin-bottom: var(--s-2); }
.card__text  { font-size: 0.98rem; font-weight: 400; color: var(--ink-2); line-height: 1.55; }
.card__link  { font-weight: 650; color: var(--brand); }

/* ---------- record / ledger: the product rendered as itself ---------- */
.ledger { border: 1px solid var(--rule); border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.ledger__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px var(--s-4); background: var(--paper-2); border-bottom: 1px solid var(--rule);
}
.ledger__head .micro { color: var(--ink-2); }
.ledger__row {
  display: grid; grid-template-columns: 58px 1fr; gap: var(--s-4); align-items: baseline;
  padding: 11px var(--s-4); border-top: 1px solid var(--rule-soft); font-size: 0.855rem;
}
.ledger__row:first-child { border-top: 0; }
.ledger__time { font-weight: 700; color: var(--clay); font-size: 0.78rem; letter-spacing: 0.03em; }
.ledger__row span { color: var(--ink-2); }
.ledger__row span strong { color: var(--ink); font-weight: 650; }
.ledger__foot {
  padding: 12px var(--s-4); background: var(--sage-wash); border-top: 1px solid var(--rule);
  font-size: 0.83rem; font-weight: 650; color: oklch(0.40 0.07 155);
  display: flex; align-items: center; gap: 9px;
}

/* ---------- the coverage receipt (hero overlay) ---------- */
.receipt {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md);
  padding: var(--s-5) var(--s-5) var(--s-4);
  box-shadow: 0 22px 44px -28px oklch(0.30 0.03 60 / 0.5);
}
.receipt__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: var(--s-4); }
.receipt__top h3 { font-family: var(--sans); font-size: 0.9rem; font-weight: 700; letter-spacing: -0.005em; }
.receipt__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-block: 9px; border-top: 1px solid var(--rule-soft); font-size: 0.83rem;
}
.receipt__row:first-of-type { border-top: 0; }
.receipt__row b { font-weight: 650; font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-2); }
.receipt__row span { color: var(--ink-2); font-weight: 400; }
.receipt__foot {
  margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid var(--ink);
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.receipt__foot strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 650; letter-spacing: -0.02em; }
.receipt__foot em { font-style: normal; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }

/* ---------- SMS thread ---------- */
.thread { background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.bub { max-width: 86%; padding: 12px 16px; font-size: 0.9rem; line-height: 1.45; }
.bub--out { align-self: flex-start; background: var(--paper); border: 1px solid var(--rule); border-radius: 14px 14px 14px 3px; color: var(--ink); }
.bub--in  { align-self: flex-end; background: var(--brand); color: #fff; border-radius: 14px 14px 3px 14px; font-weight: 600; }
.bub__meta { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 5px; display: block; }
.bub--in .bub__meta { color: oklch(0.98 0.01 250 / 0.92); }  /* 0.78 measured 3.86:1 on brand blue */
.thread__foot { display: flex; align-items: center; gap: 10px; padding-top: var(--s-3); border-top: 1px solid var(--rule); font-size: 0.8rem; color: var(--ink-2); font-weight: 550; }
.thread__ok { color: var(--sage); font-weight: 750; }

/* ---------- the three-beat sequence ---------- */
.beat { display: grid; grid-template-columns: 1fr; gap: var(--s-5); padding-block: clamp(44px, 5vw, 72px); border-top: 1px solid var(--rule); }
@media (min-width: 880px) { .beat { grid-template-columns: 88px minmax(0, 0.95fr) minmax(0, 1fr); gap: var(--s-7); align-items: start; } }
.beat__n { font-family: var(--serif); font-size: clamp(2.2rem, 3.4vw, 3rem); font-weight: 300; color: var(--ink-3); opacity: 0.55; line-height: 0.8; letter-spacing: -0.03em; }
.beat__copy h3 { margin-bottom: var(--s-3); font-size: clamp(1.4rem, 2.1vw, 1.85rem); }
.beat__copy p:not(.time) { color: var(--ink-2); max-width: 42ch; }
.beat__copy .time { margin-bottom: var(--s-3); }

/* ---------- editorial stat ladder ---------- */
.stats { border-top: 1px solid var(--ink); }
.stat { display: grid; grid-template-columns: 1fr; gap: var(--s-2); padding-block: var(--s-6); border-bottom: 1px solid var(--rule); align-items: baseline; }
@media (min-width: 760px) { .stat { grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr); gap: var(--s-7); } }
.stat dt, .stat__n { font-family: var(--serif); font-weight: 650; letter-spacing: -0.03em; line-height: 0.92; color: var(--ink); }
.stat:nth-child(1) dt, .stat:nth-child(1) .stat__n { font-size: clamp(2.9rem, 5.6vw, 4.6rem); }
.stat:nth-child(2) dt, .stat:nth-child(2) .stat__n { font-size: clamp(2.5rem, 5vw, 4.1rem); }
.stat:nth-child(3) dt, .stat:nth-child(3) .stat__n { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
.stat:nth-child(4) dt, .stat:nth-child(4) .stat__n { font-size: clamp(2rem, 3.6vw, 2.9rem); }
.stat dd, .stat__d { margin: 0; font-size: 1.02rem; color: var(--ink-2); max-width: 46ch; line-height: 1.5; }

/* ---------- audience list: a set, not a sequence — no numerals ---------- */
.aud { border-top: 1px solid var(--ink); }
.aud li { display: grid; grid-template-columns: 1fr; gap: var(--s-2); padding-block: var(--s-6); border-bottom: 1px solid var(--rule); }
@media (min-width: 760px) { .aud li { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr); gap: var(--s-7); align-items: baseline; } }
.aud h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
.aud p  { color: var(--ink-2); font-size: 0.98rem; max-width: 48ch; }

/* ---------- pricing ---------- */
.plan {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-md);
  padding: var(--s-6); box-shadow: none;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.plan:hover { border-color: var(--ink-3); transform: translateY(-2px); box-shadow: none; }
.plan--anchor { background: var(--brand); border-color: var(--brand); color: #fff; }
.plan--anchor:hover { border-color: var(--brand); }

.plan__badge {
  font-size: 0.68rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: var(--s-3); display: block;
  background: none; padding: 0; border-radius: 0; position: static; transform: none;
}
/* on the brand-blue anchor card only near-white clears 4.5:1 — hierarchy
   is carried by size and weight instead of tint */
.plan--anchor .plan__badge { color: oklch(0.965 0.05 85); }
/* reserved so name / price / CTA rows align across all three cards */
.plan__badge[data-ghost] { visibility: hidden; }
@media (max-width: 859px) { .plan__badge[data-ghost] { display: none; } }

.pricing-card__name, .plan h3 { font-family: var(--serif); font-size: 1.32rem; margin-bottom: 2px; }
.plan__range { font-size: 0.83rem; color: var(--ink-2); margin-bottom: var(--s-5); }
.plan--anchor .plan__range { color: oklch(0.968 0.022 250); }
.plan__price { font-family: var(--serif); font-size: 3.1rem; font-weight: 650; letter-spacing: -0.03em; line-height: 1; color: inherit; }
.plan__per { font-size: 0.92rem; color: var(--ink-2); font-weight: 400; margin-left: 3px; }
.plan--anchor .plan__per { color: oklch(0.968 0.022 250); }
.plan__billed { font-size: 0.78rem; color: var(--ink-2); margin-top: 6px; margin-bottom: var(--s-5); }
.plan--anchor .plan__billed { color: oklch(0.968 0.022 250); }
.plan ul { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--s-6); }
.plan li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 0.9rem; color: var(--ink-2); line-height: 1.45; align-items: start; }
.plan--anchor li { color: oklch(0.975 0.015 250); }
.plan li svg { width: 16px; height: 16px; color: var(--brand); translate: 0 4px; }
.plan--anchor li svg { color: oklch(0.88 0.085 88); }
.plan .btn { width: 100%; margin-top: auto; }

/* band reference table */
.bands table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.bands caption { text-align: left; margin-bottom: var(--s-4); }
.bands th, .bands td { padding: 13px var(--s-3); text-align: left; border-bottom: 1px solid var(--rule); }
.bands th { font-size: 0.7rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); border-bottom-color: var(--ink); }
.bands td:last-child, .bands th:last-child { text-align: right; font-weight: 650; }
.bands tr:hover td { background: oklch(0.94 0.014 74); }
.fineprint { margin-top: var(--s-6); display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); font-size: 0.83rem; color: var(--ink-2); }
.shared-features { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--rule); font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; max-width: 78ch; }
.shared-features b { color: var(--ink); font-weight: 700; }

/* ---------- proof-of-coverage numbered list (a real sequence) ---------- */
.proof-list { counter-reset: p; display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 820px) { .proof-list { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-7); } }
.proof-list li {
  counter-increment: p; display: grid; grid-template-columns: auto 1fr; gap: var(--s-4);
  padding-top: var(--s-4); border-top: 1px solid oklch(0.55 0.09 252);
  font-size: 0.96rem; line-height: 1.55; color: oklch(0.90 0.025 250);
}
.proof-list li::before { content: counter(p, decimal-leading-zero); font-family: var(--serif); font-size: 0.92rem; font-weight: 600; color: oklch(0.78 0.08 250); }

/* ---------- dark-panel bullet list ---------- */
.panel-list { border-top: 1px solid oklch(0.40 0.02 62); }
.panel-list li {
  padding-block: var(--s-4); border-bottom: 1px solid oklch(0.32 0.02 62);
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-4); align-items: baseline;
  font-size: 0.95rem; color: oklch(0.86 0.012 74);
}
.panel-list li svg { width: 16px; height: 16px; color: var(--amber); flex: none; translate: 0 2px; }

/* ---------- FAQ: hairline rules, no boxes ---------- */
.faq-item {
  border-radius: 0; box-shadow: none; overflow: visible;
  border-bottom: 1px solid var(--rule); background: none;
}
.faq-item summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-5);
  padding: var(--s-5) 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.08rem, 1.6vw, 1.28rem); font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink);
  transition: color 160ms var(--ease);
}
.faq-item summary:hover { color: var(--brand); background: none; }
.faq-item[open] { box-shadow: none; }
.faq-answer { padding: 0 0 var(--s-6); max-width: 62ch; color: var(--ink-2); font-size: 0.98rem; }
.faq-chevron { width: 16px; height: 16px; color: var(--ink-2); flex: none; }

/* ---------- forms ---------- */
.form-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.form-input, .form-select {
  min-height: 48px; padding: 13px 15px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 400;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.form-input::placeholder { color: var(--ink-2); font-weight: 400; }
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(0.515 0.152 250 / 0.14);
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: oklch(0.88 0.012 258); }
.footer__brand { font-family: var(--serif); color: var(--paper); }
.footer__desc { color: oklch(0.72 0.012 258); font-size: 0.92rem; }
.footer__heading { font-family: var(--sans); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; color: oklch(0.62 0.014 258); }
.footer__link { color: oklch(0.80 0.012 258); font-size: 0.92rem; }
.footer__link:hover { color: var(--paper); }
.footer__bottom { border-top: 1px solid oklch(0.34 0.016 258); color: oklch(0.64 0.014 258); font-size: 0.84rem; }  /* 0.60 measured 4.26:1 on ink */

/* ---------- decorative blur circles are out of the concept ---------- */

/* ---------- motion: one orchestrated pass, then scroll reveals ---------- */
.rise { opacity: 0; transform: translateY(14px); transition: opacity 760ms var(--ease), transform 760ms var(--ease); }
.rise.in, .rise.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
}
