/* =====================================================
   FASTFORWARD AId — style.css
   Sections:
   1.  RESET & BASE
   2.  DESIGN TOKENS
   3.  TYPOGRAPHY
   4.  LAYOUT UTILITIES
   5.  BUTTONS
   6.  NAVIGATION
   7.  MOBILE NAV OVERLAY
   8.  HERO
   9.  PROBLEM
   10. SERVICES
   11. WHY
   12. ABOUT
   13. CONTACT
   14. FOOTER
   15. SCROLL REVEAL HELPERS
   16. ACCESSIBILITY
   17. REDUCED MOTION
   18. RESPONSIVE BREAKPOINTS
   ===================================================== */


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, video, canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}


/* ==========================================================================
   2. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Colors */
  --color-bg:            #080C14;
  --color-surface:       #12161F;
  --color-surface-hover: #181D28;
  --color-surface-sunken:#0D111A;  /* transitional band — midpoint of bg and surface */
  --color-border:        #1E2433;
  --color-accent:        #5B6BFF;
  --color-accent-dim:    #3D4FCC;
  --color-accent-glow:   rgba(91, 107, 255, 0.25);
  --color-accent-faint:  rgba(91, 107, 255, 0.08);
  --color-text-primary:  #F0F0F0;
  --color-text-muted:    #8892A4;
  --color-text-faint:    #3D4558;
  --color-white:         #FFFFFF;

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.75rem, 4vw, 2.75rem);
  --text-hero: clamp(2rem, 5.5vw, 6rem);

  /* Font weights */
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* Line heights */
  --leading-tight:  1.12;
  --leading-snug:   1.35;
  --leading-normal: 1.65;

  /* Spacing (8px base) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-pad:   clamp(4.5rem, 10vw, 9rem);
  --grid-gap:      clamp(1rem, 2.5vw, 1.75rem);

  /* Borders & radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 9999px;
  --border-subtle: 1px solid var(--color-border);

  /* Shadows */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-glow:  0 0 40px var(--color-accent-glow);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.5), 0 0 28px var(--color-accent-glow);

  /* Transitions */
  --transition-fast:   150ms ease-out;
  --transition-normal: 250ms ease-out;
  --transition-slow:   400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Z-index */
  --z-nav:     50;
  --z-overlay: 100;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-12);
}


/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section {
  padding-block: var(--section-pad);
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  z-index: 0;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent-dim);
  transform: translateX(-101%);
  transition: transform var(--transition-slow);
  z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-full {
  width: 100%;
  margin-top: var(--space-4);
}


/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding-block: var(--space-6);
  transition: padding var(--transition-normal),
              background var(--transition-normal),
              backdrop-filter var(--transition-normal),
              border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  padding-block: var(--space-3);
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 1.1rem;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo em {
  font-style: normal;
  color: var(--color-accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-text-primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

/* The "Let's talk" button in nav doesn't need the underline effect */
.nav-links .btn::after {
  display: none;
}

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-hamburger:hover {
  color: var(--color-accent);
  background: var(--color-surface);
}

.nav-hamburger svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}


/* ==========================================================================
   7. MOBILE NAV OVERLAY
   ========================================================================== */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__close {
  position: absolute;
  top: var(--space-6);
  right: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.nav-overlay__close:hover {
  color: var(--color-text-primary);
}

.nav-overlay__close svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.nav-overlay__links a {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-overlay__links a:hover,
.nav-overlay__links a:focus-visible {
  color: var(--color-accent);
}


/* ==========================================================================
   LANDING OVERLAY — full-screen intro animation, shown once per session
   ========================================================================== */

.landing {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.75s ease;
}

/* Set synchronously in <head>, before first paint, when the intro should
   not run (already seen this session, or reduced motion). */
html.no-landing .landing {
  display: none;
}

.landing.is-hiding {
  opacity: 0;
  pointer-events: none;
}

/* Subtle ambient glow centered behind the wordmark */
.landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(91, 107, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.landing__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 9vw, 6rem);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

/* Entrance is class-triggered (JS adds .is-ready once fonts are loaded and
   the slot width is measured) rather than timed from page load — avoids
   showing an unmeasured/clipped ".finance" on slow connections. */
.landing.is-ready .landing__logo {
  animation: landing-in 0.6s cubic-bezier(0.2, 0, 0, 1) forwards;
}

@keyframes landing-in {
  to { opacity: 1; transform: translateY(0); }
}

.landing__name {
  color: var(--color-text-primary);
}

/* Vertical clip window for the slot-machine word swap */
.landing__slot-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1em;
  vertical-align: bottom;
}

.landing__slot {
  display: block;
  color: var(--color-accent);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.landing__skip {
  position: absolute;
  bottom: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-faint);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: color 0.2s, border-color 0.2s;
}

.landing.is-ready .landing__skip {
  animation: landing-in 0.4s 0.7s ease forwards;
}

.landing__skip:hover {
  color: var(--color-text-muted);
  border-color: var(--color-text-faint);
}


/* ==========================================================================
   8. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--space-24) + 4rem) var(--space-24);
  overflow: hidden;
}

/* Radial glow from top */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 107, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 900px;
}

.hero-headline {
  font-size: var(--text-hero);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
  overflow: hidden;
}

.hero-line {
  display: block;
}

.hero-line--accent {
  color: var(--color-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--weight-light);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: var(--space-10);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
  max-width: 560px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  line-height: 1;
  tabular-nums: tabular-nums;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}


/* ==========================================================================
   9. PROBLEM
   ========================================================================== */

.problem {
  background: var(--color-surface);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.problem-card {
  padding: var(--space-8);
  background: var(--color-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition-normal),
              transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.problem-card:not([data-problem]):hover {
  border-color: rgba(91, 107, 255, 0.3);
}

.problem-card[data-problem] {
  cursor: pointer;
}

.problem-card[data-problem]:hover,
.problem-card[data-problem]:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(91, 107, 255, 0.5);
  outline: none;
}

.problem-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: var(--space-4);
  transition: gap var(--transition-normal);
}

.problem-card__more svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
  transition: transform var(--transition-normal);
}

.problem-card[data-problem]:hover .problem-card__more svg,
.problem-card[data-problem]:focus-visible .problem-card__more svg {
  transform: translateX(4px);
}

.problem-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-faint);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  flex-shrink: 0;
}

.problem-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.problem-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

.problem-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.problem-resolution {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-top: var(--space-12);
}


/* ==========================================================================
   10. SERVICES
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.service-card {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  cursor: default;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal),
              border-color var(--transition-normal),
              background var(--transition-normal);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(91, 107, 255, 0.5);
  outline: none;
}

.service-card--featured {
  border-color: rgba(91, 107, 255, 0.4);
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(91, 107, 255, 0.06) 100%);
}

.service-card--featured:hover,
.service-card--featured:focus-visible {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-surface-hover) 0%, rgba(91, 107, 255, 0.1) 100%);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-faint);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background var(--transition-normal);
}

.service-card:hover .service-card__icon {
  background: rgba(91, 107, 255, 0.15);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.service-card__title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  flex: 1;
}


/* ==========================================================================
   11. WHY
   ========================================================================== */

.why {
  background: var(--color-surface);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.why-item {
  position: relative;
  padding-top: var(--space-12);
}

.why-item__number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: var(--weight-bold);
  line-height: 1;
  color: var(--color-text-primary);
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
}

.why-item h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.why-item p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  max-width: 340px;
}


/* ==========================================================================
   12. ABOUT
   ========================================================================== */

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
  align-items: center;
}

.about-content .section-headline {
  margin-bottom: var(--space-6);
}

.about-bio {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.about-cert {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--color-accent-faint);
  border: 1px solid rgba(91, 107, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-primary);
}

.about-cert svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  stroke-width: 2;
}

.about-visual {
  display: none;
}

.about-visual__inner {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-subtle);
  box-shadow: var(--shadow-hover);
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Timeline */

.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-accent) 20%, var(--color-accent) 80%, transparent);
}

.timeline-item {
  position: relative;
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-8) - 4px);
  top: calc(var(--space-5) + 6px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-bg), 0 0 0 4px rgba(91, 107, 255, 0.3);
}

.timeline-item__role {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.timeline-item__company {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


/* ==========================================================================
   13. CONTACT
   ========================================================================== */

.contact {
  background: var(--color-surface);
  border-top: var(--border-subtle);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accent top-left */
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at 0% 0%, rgba(91, 107, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact .section-headline {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: var(--space-4);
}

.contact-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  max-width: 500px;
  margin-bottom: var(--space-12);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--color-accent);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 1.75;
}

.contact-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
}

/* Form */

.contact-form {
  background: var(--color-bg);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
}

.label-optional {
  font-weight: var(--weight-regular);
  color: var(--color-text-faint);
}

.form-group input,
.form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(91, 107, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: var(--text-xs);
  color: #EF4444;
  margin-top: var(--space-1);
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #EF4444;
}


/* ==========================================================================
   13b. INSIGHTS
   ========================================================================== */

.insights {
  background: var(--color-surface-sunken);
  border-top: var(--border-subtle);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

.insight-card {
  position: relative;
  cursor: pointer;
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal),
              border-color var(--transition-normal);
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(91, 107, 255, 0.4);
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.insight-card__tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-faint);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

.insight-card__read {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.insight-card__title {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
}

.insight-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  flex: 1;
}

.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  margin-top: auto;
  padding-top: var(--space-4);
  text-decoration: none;
  transition: gap var(--transition-normal);
}

/* Stretched link — expands click area to the whole card */
.insight-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
}

.insight-card__link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  transition: transform var(--transition-normal);
}

.insight-card:hover .insight-card__link svg {
  transform: translateX(4px);
}

/* Stagger for insight cards */
.insights-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.insights-grid .reveal:nth-child(3) { transition-delay: 0.2s; }


/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  border-top: var(--border-subtle);
  padding-block: var(--space-8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 1rem;
  color: var(--color-text-primary);
  text-decoration: none;
}

.footer-logo em {
  font-style: normal;
  color: var(--color-accent);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-text-muted);
}


/* ==========================================================================
   10b. SERVICE CARD — clickable state & "Details" indicator
   ========================================================================== */

.service-card {
  cursor: pointer;
}

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: var(--space-4);
  transition: gap var(--transition-normal);
}

.service-card__more svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card__more svg,
.service-card:focus-visible .service-card__more svg {
  transform: translateX(4px);
}


/* ==========================================================================
   10c. SERVICE MODAL
   ========================================================================== */

.svc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal, 200);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.svc-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.svc-modal {
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  max-width: 620px;
  width: 100%;
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition-slow);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.svc-modal-overlay.is-open .svc-modal {
  transform: translateY(0) scale(1);
}

.svc-modal__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.svc-modal__close:hover {
  color: var(--color-text-primary);
  background: var(--color-surface-hover);
}

.svc-modal__close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.svc-modal__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-right: var(--space-10);
}

.svc-modal__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-faint);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  flex-shrink: 0;
}

.svc-modal__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.svc-modal__title {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
}

.svc-modal__lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: var(--border-subtle);
}

.svc-modal__framing {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: var(--border-subtle);
}

/* Problem mode: hide service-only fields; service mode: hide problem-only field */
.svc-modal--problem .svc-modal__lead,
.svc-modal--problem .svc-modal__note { display: none; }
.svc-modal:not(.svc-modal--problem) .svc-modal__framing { display: none; }

/* Symptom list items (problem card modals) */
/* Selector matches .svc-modal__points li specificity + 1 so flex-direction
   stays row (dot beside text), not column (dot above text). */
.svc-modal__points li.svc-modal__symptom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.svc-modal__symptom::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.svc-modal__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  list-style: none;
}

.svc-modal__points li {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.svc-modal__point-label {
  font-family: var(--font-heading);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.svc-modal__point-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.svc-modal__point-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  padding-left: calc(6px + var(--space-2));
}

/* Points carousel */

.svc-points-wrap {
  margin-bottom: var(--space-8);
}

.svc-points-carousel {
  overflow: hidden;
  position: relative;
  /* height is set dynamically by JS once items are measured */
}

.svc-modal__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0;
}

/* Fade top/bottom edges when carousel is active */
.svc-points-carousel.is-carousel::before,
.svc-points-carousel.is-carousel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 32px;
  pointer-events: none;
  z-index: 1;
}
.svc-points-carousel.is-carousel::before {
  top: 0;
  background: linear-gradient(to bottom, var(--color-surface), transparent);
}
.svc-points-carousel.is-carousel::after {
  bottom: 0;
  background: linear-gradient(to top, var(--color-surface), transparent);
}
/* Hide top fade when at first item */
.svc-points-carousel.is-carousel.at-start::before { display: none; }
.svc-points-carousel.is-carousel.at-end::after   { display: none; }

.svc-points-nav {
  display: none; /* shown by JS when carousel is needed */
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.svc-points-nav.is-visible {
  display: flex;
}

.svc-points-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  background: var(--color-surface-hover);
  border: var(--border-subtle);
  transition: color var(--transition-fast), background var(--transition-fast), opacity var(--transition-fast);
  flex-shrink: 0;
}

.svc-points-btn:hover:not(:disabled) {
  color: var(--color-accent);
  background: var(--color-accent-faint);
  border-color: rgba(91,107,255,0.3);
}

.svc-points-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.svc-points-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.svc-points-dots {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.svc-points-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

.svc-points-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.svc-modal__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-style: italic;
  margin-bottom: var(--space-8);
  padding: var(--space-3) var(--space-4);
  background: rgba(91, 107, 255, 0.05);
  border-left: 2px solid rgba(91, 107, 255, 0.3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.svc-modal__cta {
  width: 100%;
  justify-content: center;
}

.svc-modal__services-link {
  display: none;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  transition: color var(--transition-fast);
}

.svc-modal--problem .svc-modal__services-link {
  display: block;
}

.svc-modal__services-link:hover {
  color: var(--color-accent);
}


/* ==========================================================================
   15. SCROLL REVEAL HELPERS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for sibling groups */
.problem-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2),
.timeline .reveal:nth-child(2) { transition-delay: 0.1s; }

.problem-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3),
.timeline .reveal:nth-child(3) { transition-delay: 0.2s; }

.problem-grid .reveal:nth-child(4),
.services-grid .reveal:nth-child(4),
.why-grid .reveal:nth-child(4),
.timeline .reveal:nth-child(4) { transition-delay: 0.3s; }

.services-grid .reveal:nth-child(5),
.timeline .reveal:nth-child(5) { transition-delay: 0.4s; }


/* ==========================================================================
   16. ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to main content link (hidden until focused) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}


/* ==========================================================================
   17. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}


/* ==========================================================================
   18. SCROLL OFFSET — compensates for fixed nav height on anchor jumps
   ========================================================================== */

.problem,
.services,
.why,
.about,
.insights,
.contact {
  scroll-margin-top: 80px;
}


/* ==========================================================================
   19. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- 768px: Tablet --- */
@media (min-width: 768px) {

  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-resolution {
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-16);
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .article-cta-actions,
  .article-nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* --- 1024px: Desktop --- */
@media (min-width: 1024px) {

  /* 5-card services: 3 on top row, 2 centered on bottom row */
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3) {
    grid-column: span 2;
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 3;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }

  .about-visual {
    display: block;
  }

}

/* --- 1440px: Wide --- */
@media (min-width: 1440px) {

  .hero-content {
    max-width: 1000px;
  }

}

/* Extra small screens: prevent hero headline overflow */
@media (max-width: 400px) {
  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   19. ARTICLE PAGES
   ========================================================================== */

.article-header {
  padding-top: calc(var(--section-pad) + 3rem);
  padding-bottom: var(--space-16);
  border-bottom: var(--border-subtle);
  background: var(--color-surface);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  transition: color var(--transition-fast);
}

.article-back:hover {
  color: var(--color-accent);
}

.article-back svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

/* Floating back button — appears when article header scrolls out of view */
.article-back--float {
  position: fixed;
  top: calc(60px + var(--space-4));
  left: var(--space-6);
  z-index: calc(var(--z-nav) - 1);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px);
  transition: opacity var(--transition-normal), transform var(--transition-normal),
              color var(--transition-fast), border-color var(--transition-fast);
}

.article-back--float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.article-back--float:hover {
  color: var(--color-accent);
  border-color: rgba(91, 107, 255, 0.4);
}

.article-back--float svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

@media (max-width: 767px) {
  .article-back--float { display: none; }
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.article-tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-faint);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
}

.article-read-time,
.article-date {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-text-faint);
  flex-shrink: 0;
}

.article-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  max-width: 820px;
}

.article-deck {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  max-width: 640px;
}

.article-body-wrap {
  padding-block: var(--space-16);
}

.article-body {
  max-width: 720px;
}

/* Prose styles */

.article-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

.article-body h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--weight-bold);
  color: var(--color-text-primary);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article-body ul {
  list-style: none;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.article-body ul li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.article-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-8) 0;
  background: var(--color-accent-faint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-body blockquote p {
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.article-body strong {
  font-weight: var(--weight-semibold);
  color: var(--color-text-primary);
}

.article-cta {
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.article-cta-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.article-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.article-more {
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: var(--border-subtle);
}

.article-more h3 {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.article-more-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.article-more-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  transition: color var(--transition-fast);
  line-height: var(--leading-snug);
}

.article-more-links a:hover {
  color: var(--color-accent);
}

.article-more-links a svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 2;
}
