/* =========================================================
   Aksel — styles.css
   Inter + IBM Plex Mono. Warm paper/ink with 6 accent colors.
   ========================================================= */

/* --- Variables ------------------------------------------ */
:root {
  --bg:          #FAF9F6;
  --bg-surface:  #F3F1ED;
  --bg-raised:   #EEEBE6;
  --bg-light:    #F5F5F5;
  --border:      #E5E1D8;
  --border-light: #DEDEDE;
  --text:        #111111;
  --text-2:      #6B7280;
  --text-3:      #9CA3AF;
  --text-dark:   #111111;
  --text-dark-2: #4A4A4A;

  --cobalt:      #1B4FD8;
  --cobalt-dim:  rgba(27, 79, 216, 0.12);
  --cobalt-dark: #1436A8;

  --vermilion:   #DC2626;
  --vermilion-dim: rgba(220, 38, 38, 0.12);
  --vermilion-dark: #991B1B;

  --emerald:     #1A9E5C;
  --emerald-dim: rgba(26, 158, 92, 0.12);
  --emerald-dark: #065F3B;

  --amber:       #D97706;
  --amber-dim:   rgba(217, 119, 6, 0.12);
  --amber-dark:  #92400E;

  --violet:      #7C3AED;
  --violet-dim:  rgba(124, 58, 237, 0.12);
  --violet-dark: #5B21B6;

  --teal:        #0D9488;
  --teal-dim:    rgba(13, 148, 136, 0.12);
  --teal-dark:   #065F57;

  --green:       #10B981;
  --green-bg:    rgba(16, 185, 129, 0.12);
  --yellow:      #F0C040;
  --yellow-bg:   rgba(240, 192, 64, 0.12);
  --red:         #F05252;
  --red-bg:      rgba(240, 82, 82, 0.12);
  --blue:        #0284C7;

  --radius-sm:   4px;
  --radius:      6px;
  --radius-card: 8px;

  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --shadow:    0 1px 4px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --transition: 180ms ease;
}

/* --- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--cobalt); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* --- Layout utilities ----------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* --- Typography ----------------------------------------- */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; font-family: var(--font-display); color: var(--text); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; font-family: var(--font-display); color: var(--text); }
h3 { font-size: 1.15rem; font-weight: 650; line-height: 1.3; font-family: var(--font-display); color: var(--text); }
h4 { font-size: .95rem; font-weight: 600; font-family: var(--font-body); }
p { color: var(--text-2); }
.lead { font-size: 1.1rem; line-height: 1.65; }
.label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--cobalt);
}

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
  min-width: 0;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--cobalt);
  color: #fff;
}
.btn-primary:hover { background: var(--cobalt-dark); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--cobalt); color: var(--cobalt); }
.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border: 1px solid var(--cobalt);
}
.btn-outline:hover { background: var(--cobalt-dim); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* --- Badges --------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.badge-accent { background: var(--violet-dim); color: var(--violet); }
.badge-green  { background: var(--emerald-dim);   color: var(--emerald); }
.badge-yellow { background: var(--amber-dim);  color: var(--amber); }
.badge-red    { background: var(--vermilion-dim);     color: var(--vermilion); }
.badge-neutral { background: rgba(0,0,0,.04); color: var(--text-2); }

/* --- Navigation ----------------------------------------- */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,249,246,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  line-height: 1;
}
.nav-logo::before,
.footer-logo::before,
.private-brand::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../brand/aksel-logo-mark.png") center / contain no-repeat;
}
.nav-logo span,
.footer-logo span,
.private-brand span { color: inherit; }
.nav-logo:hover { text-decoration: none; }
.footer-logo,
.private-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: .875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--transition);
  font-family: var(--font-body);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 8px; }

/* --- Hero ---------------------------------------------- */
#hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: var(--bg);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-inner > * { min-width: 0; }
.hero-eyebrow { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-h1 { margin-bottom: 20px; color: var(--text); overflow-wrap: break-word; }
.hero-desc { font-size: 1.05rem; color: var(--text-2); margin-bottom: 32px; max-width: 480px; overflow-wrap: break-word; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-compat {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.compat-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-3);
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(27,79,216,.04);
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.compat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

/* --- Blueprint Preview (CSS-built) --------------------- */
.blueprint-preview {
  background: #FEFDFB;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: .8rem;
}
.bp-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F9F7F2;
  border-bottom: 1px solid var(--border);
}
.bp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.bp-dot-r { background: #FF5F57; }
.bp-dot-y { background: #FEBC2E; }
.bp-dot-g { background: #28C840; }
.bp-title { margin-left: 6px; color: var(--text-3); font-size: .75rem; }
.bp-body { padding: 16px 14px; }
.bp-dir {
  color: var(--cobalt);
  margin-bottom: 10px;
  font-size: .78rem;
}
.bp-file {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,.03);
  color: var(--text-2);
  min-width: 0;
}
.bp-file:last-child { border-bottom: none; }
.bp-indent { padding-left: 16px; }
.bp-fname { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bp-ready {
  font-size: .68rem;
  padding: 1px 7px;
  border-radius: 3px;
  font-weight: 600;
  background: var(--emerald-dim);
  color: var(--emerald);
}
.bp-score-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.bp-score-item {
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,.02);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.bp-score-label { color: var(--text-3); font-size: .68rem; margin-bottom: 4px; }
.bp-score-val { font-size: .9rem; font-weight: 700; }
.bp-green { color: var(--emerald); }
.bp-yellow { color: var(--amber); }
.bp-blue { color: var(--cobalt); }

/* --- Problem Section ------------------------------------ */
#problem { background: var(--bg-surface); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.problem-icon {
  width: 36px;
  height: 36px;
  background: var(--violet-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--violet);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-mono);
}
.problem-card h3 { color: var(--text); margin-bottom: 8px; font-size: 1rem; }
.problem-card p { font-size: .875rem; }

/* --- What You Get --------------------------------------- */
#what-you-get { background: var(--bg); }
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.deliverable-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.deliverable-card:hover { border-color: var(--cobalt); }
.del-icon {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--cobalt);
  background: var(--cobalt-dim);
  border-radius: var(--radius-sm);
  padding: 4px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.del-body h4 { color: var(--text); margin-bottom: 4px; }
.del-body p { font-size: .84rem; }
.video-count-note {
  margin-top: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}
.video-count-note h3 { color: var(--text); margin-bottom: 8px; font-size: 1rem; }
.video-count-note p { font-size: .875rem; }

/* --- How It Works --------------------------------------- */
#how-it-works { background: var(--bg-surface); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cobalt);
  color: var(--cobalt);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h4 { color: var(--text); margin-bottom: 6px; font-size: .875rem; }
.step p { font-size: .8rem; padding: 0 8px; }

/* --- Requirements / Fit Checker ------------------------ */
#requirements { background: var(--bg); }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }

.req-lists { display: flex; flex-direction: column; gap: 20px; }
.req-group h4 { color: var(--text); margin-bottom: 12px; font-size: .875rem; font-weight: 600; }
.req-group ul { display: flex; flex-direction: column; gap: 8px; }
.req-group ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-2);
}
.req-group ul li::before { content: ''; flex-shrink: 0; margin-top: 6px; }
.req-ok ul li::before  { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }
.req-rec ul li::before { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.req-no ul li::before  { width: 8px; height: 8px; border-radius: 50%; background: var(--vermilion); }

/* Fit Checker */
.fit-checker {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.fit-checker-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.fit-checker-header h3 { color: var(--text); font-size: 1rem; }
.fit-checker-header p { font-size: .8rem; margin-top: 2px; }
.fit-questions { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.fit-question label {
  display: block;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}
.fit-options { display: flex; gap: 8px; }
.fit-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.fit-option input { accent-color: var(--cobalt); }
.fit-option span { font-size: .85rem; color: var(--text-2); }
.fit-submit {
  padding: 0 20px 20px;
}
.fit-result {
  display: none;
  margin: 0 20px 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid;
}
.fit-result.green  { background: var(--emerald-dim);  color: var(--emerald);  border-color: rgba(26, 158, 92, 0.3); }
.fit-result.yellow { background: var(--amber-dim); color: var(--amber); border-color: rgba(217, 119, 6, 0.3); }
.fit-result.red    { background: var(--vermilion-dim);    color: var(--vermilion);    border-color: rgba(220, 38, 38, 0.3); }
.fit-result-sub { font-size: .8rem; font-weight: 400; margin-top: 4px; color: inherit; opacity: .85; }
.fit-note {
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--text-3);
}

/* --- Pricing ------------------------------------------- */
#pricing { background: var(--bg-surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.price-card.featured {
  border: 2px solid var(--cobalt);
  background: var(--bg);
}
.price-tag { margin: 16px 0; }
.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}
.price-currency { font-size: 1.1rem; color: var(--text-2); vertical-align: top; margin-top: 6px; display: inline-block; }
.price-note { font-size: .8rem; color: var(--text-3); margin-top: 4px; }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: var(--text-2);
}
.price-feature-check {
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}
.price-cta { display: flex; flex-direction: column; gap: 10px; }
.free-seats {
  margin-top: 48px;
  background: var(--amber-dim);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.free-seats-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.free-seats h3 { color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.free-seats p { font-size: .875rem; }
.free-seats .btn { flex-shrink: 0; }

/* --- Video Library -------------------------------------- */
#videos { background: var(--bg); }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.video-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 16px;
}
.video-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-raised);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}
.video-play-icon {
  width: 32px;
  height: 32px;
  background: var(--cobalt-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-icon::after {
  content: '';
  border: 0 solid transparent;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--cobalt);
  margin-left: 2px;
}
.video-card h4 { color: var(--text); font-size: .82rem; margin-bottom: 6px; }
.video-card p { font-size: .75rem; }
.video-status {
  display: inline-block;
  margin-top: 8px;
  font-size: .7rem;
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 600;
  background: rgba(0,0,0,.04);
  color: var(--text-3);
}

/* --- Differentiation ------------------------------------ */
#differentiation { background: var(--bg-surface); }
.diff-table-wrap { overflow-x: auto; margin-top: 40px; }
.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.diff-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--text-2);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  text-transform: uppercase;
}
.diff-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.diff-table tr:last-child td { border-bottom: none; }
.diff-table .col-category { color: var(--text); font-weight: 500; }
.diff-table .col-others { color: var(--text-2); }
.diff-table .col-aksel { color: var(--cobalt); font-weight: 600; }
.diff-table tbody tr:hover { background: rgba(0,0,0,.01); }

/* --- No-Support Boundary -------------------------------- */
#boundaries { background: var(--bg); }
.boundary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.boundary-section h3 { color: var(--text); margin-bottom: 16px; font-size: 1rem; }
.boundary-list { display: flex; flex-direction: column; gap: 10px; }
.boundary-item {
  display: flex;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-2);
}
.boundary-x { color: var(--vermilion); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.boundary-ok { color: var(--emerald); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* --- FAQ ----------------------------------------------- */
#faq { background: var(--bg-surface); }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--cobalt); }
.faq-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition);
  margin-top: 2px;
}
.faq-arrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--text-2);
  border-bottom: 1.5px solid var(--text-2);
  transform: rotate(45deg);
  margin-top: -2px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); border-color: var(--cobalt); }
.faq-item.open .faq-arrow::after { border-color: var(--cobalt); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 280ms ease;
}
.faq-answer-inner {
  padding-bottom: 16px;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* --- Final CTA ----------------------------------------- */
#final-cta {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}
#final-cta h2 { color: var(--text); margin-bottom: 16px; }
#final-cta p { max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Footer -------------------------------------------- */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: .8rem;
  margin-top: 6px;
  max-width: 300px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a { font-size: .82rem; color: var(--text-3); text-decoration: none; }
.footer-links a:hover { color: var(--text-2); }
.footer-copy { font-size: .78rem; color: var(--text-3); margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; }

/* --- Shared utilities ----------------------------------- */
.section-header { text-align: center; margin-bottom: 0; }
.section-header h1,
.section-header h2 { color: var(--text); margin-top: 10px; overflow-wrap: break-word; }
.section-header p { margin-top: 12px; font-size: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; overflow-wrap: break-word; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.text-center { text-align: center; }
.text-accent { color: var(--cobalt); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Home summary grid ---------------------------------- */
.home-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.home-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
}
.home-summary-card h4 { color: var(--text); margin-bottom: 6px; }
.home-summary-card p  { font-size: .875rem; }

/* --- Requirements spec grid + cards -------------------- */
.req-specs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.req-spec-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.req-spec-card--accent { border-color: var(--cobalt); }
.req-spec-card--warn   { border-color: rgba(220,38,38,.35); }
.req-spec-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.req-spec-label--default { color: var(--cobalt); }
.req-spec-label--warn    { color: var(--vermilion); }
.req-spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
}
.req-spec-card ul li strong { color: var(--text); }
.req-spec-card p.req-spec-note {
  margin: .75rem 0 0;
  font-size: .8rem;
  color: var(--text-3);
}

/* --- Visual Sections ------------------------------------ */
.visual-section { background: var(--bg); }
.visual-section + .visual-section { background: var(--bg-surface); }

.svg-diagram {
  margin-top: 40px;
  background: transparent;
}

.svg-diagram img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
  margin-bottom: 16px;
}

.svg-caption {
  text-align: center;
  font-size: .95rem;
  color: var(--text-2);
  font-family: var(--font-body);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}


/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .home-summary-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { flex-shrink: 0; margin: 0; }
  .req-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .free-seats { flex-direction: column; align-items: flex-start; gap: 16px; max-width: 440px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .boundary-card { grid-template-columns: 1fr; gap: 28px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .home-summary-grid { grid-template-columns: 1fr; }
  .req-specs-grid    { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; }
  .compat-badge { white-space: normal; max-width: 100%; }
  .blueprint-preview { overflow-x: auto; max-width: 100%; }
  .hero-desc { max-width: 100%; }
  h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-break: break-word; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .pricing-grid { max-width: 100%; }
  .free-seats { max-width: 100%; }
  .diff-table th:nth-child(2), .diff-table td:nth-child(2) { display: none; }
  .final-actions { flex-direction: column; align-items: center; }
  .final-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 10px; }
  .boundary-card { padding: 20px; }
}

/* Aksel homepage redesign layer */
.trust-strip { background: #ffffff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0; }
.trust-strip-inner span { padding: 16px 12px; text-align: center; font-size: .78rem; font-weight: 700; color: var(--text); border-left: 1px solid var(--border); letter-spacing: 0; }
.trust-strip-inner span:first-child { border-left: 0; }
.section-header-left { text-align: left; max-width: 760px; }
.section-header-left p { margin-left: 0; margin-right: 0; }
.problem-statement { margin-top: 28px; padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--cobalt); border-radius: var(--radius-card); color: var(--text); font-weight: 700; }
.bp-markdown-preview { margin-top: 14px; padding: 12px; background: #0D1117; border-radius: 6px; color: #DDE3EA; }
.bp-md-title { color: #8AB4FF; font-weight: 700; margin-bottom: 8px; }
.bp-md-line { font-size: .72rem; line-height: 1.55; color: #DDE3EA; }
.bp-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.bp-status-item { border: 1px solid var(--border); border-radius: 6px; padding: 8px; background: #fff; }
.bp-status-label { display: block; font-size: .66rem; color: var(--text-3); }
.diagram { margin-top: 36px; }
.flow-track { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; align-items: stretch; }
.flow-node { min-height: 124px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; box-shadow: var(--shadow-sm); }
.flow-node strong { display: block; margin-bottom: 8px; color: var(--text); font-size: .92rem; }
.flow-node span { color: var(--text-2); font-size: .78rem; line-height: 1.45; }
.flow-arrow { display: none; }
.file-system-visual { margin-top: 40px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: var(--shadow-sm); }
.fsv-root { font-family: var(--font-mono); color: var(--cobalt); font-weight: 700; margin-bottom: 18px; }
.fsv-group { border-top: 1px solid var(--border); padding: 18px 0; display: grid; grid-template-columns: minmax(220px, .8fr) 1fr; gap: 24px; }
.fsv-group:last-child { padding-bottom: 0; }
.fsv-group-label { display: block; color: var(--text); font-weight: 700; margin-bottom: 6px; }
.fsv-group-purpose { color: var(--text-2); font-size: .86rem; line-height: 1.55; }
.fsv-file-list { display: flex; flex-direction: column; gap: 7px; }
.fsv-file-list code { display: inline-block; padding: 5px 8px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-surface); color: var(--text); font-size: .78rem; }
.rd-flow { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.rd-node, .rd-boundary { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.rd-node-label, .rd-lane-tier, .rd-boundary-label { display: block; color: var(--text); font-weight: 700; }
.rd-node-sub, .rd-lane-desc { display: block; margin-top: 4px; color: var(--text-2); font-size: .82rem; }
.rd-arrow { text-align: center; color: var(--text-3); font-family: var(--font-mono); }
.rd-lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.rd-lane { border: 1px solid var(--border); border-radius: 8px; padding: 14px; background: var(--bg); }
.rd-lane--never { border-color: rgba(184,107,36,.45); background: rgba(217,119,6,.08); }
.rd-lane--local { border-color: rgba(26,158,92,.35); background: rgba(26,158,92,.08); }
.rd-lane--cloud { border-color: rgba(27,79,216,.35); background: rgba(27,79,216,.08); }
.bp-status-chip { display: block; font-size: .78rem; font-weight: 700; color: var(--emerald); }

.event-table-wrap { margin-top: 28px; overflow-x: auto; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.event-log-table { width: 100%; border-collapse: collapse; min-width: 760px; font-family: var(--font-mono); font-size: .78rem; }
.event-log-table th, .event-log-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.event-log-table th { color: var(--text); background: var(--bg-surface); font-weight: 700; }
.event-log-table tr:last-child td { border-bottom: 0; }
.markdown-preview { margin-top: 28px; padding: 22px 24px; background: #0D1117; color: #DDE3EA; border-radius: 8px; overflow-x: auto; font-size: .86rem; line-height: 1.65; border: 1px solid rgba(255,255,255,.08); }
.use-mode-grid, .audience-grid, .scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.use-mode-grid { grid-template-columns: repeat(4, 1fr); }
.use-mode-card, .audience-panel, .scope-panel, .risk-summary-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: var(--shadow-sm); }
.use-mode-index { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 26px; border: 1px solid var(--border); border-radius: 5px; font-family: var(--font-mono); font-size: .72rem; color: var(--cobalt); margin-bottom: 14px; }
.use-mode-card h3, .audience-panel h3, .scope-panel h3 { margin-bottom: 10px; }
.use-mode-card p { font-size: .86rem; }
.audience-panel ul, .scope-panel ul, .risk-summary-card ul { display: flex; flex-direction: column; gap: 9px; color: var(--text-2); font-size: .9rem; }
.audience-panel li, .scope-panel li, .risk-summary-card li { list-style: none; padding-left: 18px; position: relative; }
.audience-panel li::before, .scope-panel li::before, .risk-summary-card li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--cobalt); position: absolute; left: 0; top: .65em; }
.audience-panel-muted li::before, .scope-panel-muted li::before { background: var(--amber); }
.scope-panel li span { display: inline-block; margin-right: 8px; font-family: var(--font-mono); font-size: .68rem; color: var(--text-3); }
.scope-closing { margin-top: 22px; color: var(--text); font-weight: 700; }
.risk-summary-card { max-width: 780px; margin: 0 auto; border-left: 4px solid var(--amber); }
.risk-summary-card h2 { margin: 8px 0 12px; }
.risk-summary-card ul { margin: 18px 0; }
.risk-summary-card a { font-weight: 700; }

@media (max-width: 900px) {
  .flow-track, .fsv-group, .use-mode-grid, .audience-grid, .scope-grid { grid-template-columns: 1fr; }
  .flow-node { min-height: auto; }
  .fsv-group { gap: 12px; }
}
@media (max-width: 700px) {
  .rd-lanes, .bp-status-grid { grid-template-columns: 1fr; }
  .markdown-preview { font-size: .78rem; padding: 16px; }
}
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { background: #ffffff; }
  #nav { position: static !important; box-shadow: none !important; }
  .mobile-menu, .nav-hamburger, .no-print, .floating-cta { display: none !important; }
  section, .home-summary-card, .deliverable-card, .diagram, .scope-panel, .file-system-visual, .fsv-group, .use-mode-card, .risk-summary-card { break-inside: avoid; page-break-inside: avoid; }
  a { color: inherit; text-decoration: none; }
}

.hero-strategy { max-width: 500px; margin: -14px 0 28px; color: var(--text); font-weight: 700; line-height: 1.55; }

/* Images 2 visual integration */
#hero {
  background-image: linear-gradient(90deg, rgba(250,249,246,.96) 0%, rgba(250,249,246,.88) 42%, rgba(250,249,246,.18) 100%), url('../images/aksel-hero-operating-folder-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.blueprint-preview {
  background: rgba(254,253,251,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.routing-diagram {
  background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)), url('../images/aksel-privacy-routing-bg.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.flow-node, .rd-node, .rd-boundary {
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(20,22,26,.16);
  box-shadow: 0 12px 30px rgba(15,18,25,.08);
}
.event-table-wrap {
  background-image: linear-gradient(rgba(255,255,255,.42), rgba(255,255,255,.42)), url('../images/aksel-event-log-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.event-log-table {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 700px) {
  #hero {
    background-image: linear-gradient(rgba(250,249,246,.9), rgba(250,249,246,.9)), url('../images/aksel-hero-operating-folder-bg.webp');
    background-position: center top;
  }
  .routing-diagram { padding: 18px; }
}

/* Homepage simplification pass */
#hero.hero-simple {
  padding-top: 116px;
  padding-bottom: 70px;
  background: var(--bg);
  background-image: none;
}
#hero.hero-simple .hero-inner {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
}
.hero-copy { max-width: 660px; }
#hero.hero-simple .hero-h1 {
  max-width: 680px;
  margin-bottom: 22px;
}
#hero.hero-simple .hero-desc {
  max-width: 610px;
  margin-bottom: 16px;
  color: var(--text-dark-2);
}
.hero-proof {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.55;
}
.hero-reassurance {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.68);
  color: var(--text-dark-2);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.hero-reassurance:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
  text-decoration: none;
}
#hero.hero-simple .hero-actions { margin-bottom: 0; }
.hero-visual {
  min-width: 0;
  display: grid;
  gap: 14px;
}
.hero-visual-card {
  min-height: 410px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--radius-card);
  background-image:
    linear-gradient(rgba(250,249,246,.08), rgba(250,249,246,.08)),
    url('../images/aksel-hero-operating-folder-bg.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 55px rgba(15,18,25,.13);
}
.hero-visual-caption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text-dark-2);
}
.hero-visual-caption span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.58);
  text-align: center;
}
.simple-explain .section-header p { max-width: 640px; }
.ai-timeline-composition {
  position: relative;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(122px, 158px);
  gap: 14px;
  align-items: center;
  width: min(calc(100vw - 48px), 1120px);
  margin: 38px auto 0;
  transform: translateX(-50%);
}
.ai-timeline-visual {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid rgba(17,17,17,.13);
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 46px rgba(15,18,25,.09);
}
.ai-timeline-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 12px 32px rgba(15,18,25,.08);
  transform: translateZ(0);
}
.timeline-now-callout {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding-left: 42px;
  color: var(--text);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.18;
}
.timeline-now-callout::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--vermilion);
  transform: translateY(-50%);
}
.timeline-now-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  width: 12px;
  height: 12px;
  border-left: 3px solid var(--vermilion);
  border-bottom: 3px solid var(--vermilion);
  transform: translateY(-50%) rotate(45deg);
}
.timeline-now-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 800;
}
.timeline-now-callout strong,
.timeline-now-callout small {
  display: block;
}
.timeline-now-callout small {
  margin-top: 4px;
  color: var(--text-2);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.28;
}
.ai-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}
.ai-timeline article {
  position: relative;
  min-height: 150px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(17,17,17,.1);
  border-radius: var(--radius-sm);
  background: rgba(250,249,246,.82);
}
.ai-timeline article::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -10px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
}
.ai-timeline article:last-child::after {
  display: none;
}
.ai-timeline span {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 700;
  color: var(--cobalt);
}
.ai-timeline h3 {
  margin: 0 0 8px;
  font-size: .98rem;
}
.ai-timeline p {
  margin: 0;
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.55;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.minimal-takeaway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 30px auto 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.minimal-takeaway .problem-card {
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.minimal-takeaway .problem-card:first-child {
  border-left: 0;
}
.simple-explain .problem-card {
  min-height: 0;
  padding: 22px 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
}
.explain-index {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  color: var(--cobalt);
}
.simple-explain .problem-card h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.simple-explain .problem-card p {
  font-size: .94rem;
  line-height: 1.55;
}
.minimal-takeaway .problem-card h3 {
  margin-bottom: 8px;
}
.minimal-takeaway .problem-card p {
  max-width: 260px;
}
.simple-explain .minimal-takeaway .problem-card {
  background: transparent;
  box-shadow: none;
}
.why-buy-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-buy-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.why-buy-copy h2 {
  max-width: 520px;
  margin: 10px 0 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.14;
}
.why-buy-copy p:not(.label) {
  max-width: 560px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
}
.why-buy-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-buy-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.why-buy-grid article:first-child {
  border-top: 0;
}
.why-buy-grid span {
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 800;
  color: var(--cobalt);
}
.why-buy-grid h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}
.why-buy-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--text-2);
  font-size: .94rem;
  line-height: 1.55;
}
.agentic-takeaway {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: var(--radius-card);
  background: #111;
  box-shadow: 0 18px 44px rgba(15,18,25,.12);
}
.agentic-takeaway .label {
  color: #9DB5FF;
}
.agentic-takeaway h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.agentic-takeaway p {
  color: rgba(255,255,255,.74);
  max-width: 520px;
}
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.takeaway-grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.38;
}
.files-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  margin: 42px 0 34px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(243,241,237,.62)),
    url('../images/aksel-event-log-bg.webp');
  background-size: cover;
  background-position: center;
}
.files-preview-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.files-preview-copy p:last-child {
  max-width: 430px;
  font-size: .98rem;
}
.files-preview-layout .blueprint-preview {
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.homepage-product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 860px;
  margin: 38px auto 0;
  padding: 28px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-sm);
}
.homepage-product-cta h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}
.homepage-product-cta p {
  max-width: 560px;
  font-size: .95rem;
  line-height: 1.6;
}
.homepage-product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#hero.how-page-hero {
  background: var(--bg);
  background-image: none;
}
.how-page-hero .hero-desc,
.how-page-hero .hero-proof {
  max-width: 620px;
}
.how-flow-intro {
  padding-top: 122px;
}
.how-process-visual,
.how-path-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  box-shadow: 0 18px 45px rgba(15,18,25,.10);
}
.how-path-visual {
  max-width: 920px;
  margin: 38px auto 0;
}
.how-process-visual img,
.how-path-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.how-process-visual figcaption,
.how-path-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.how-process-visual figcaption span,
.how-path-visual figcaption span {
  display: flex;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: var(--radius);
  background: rgba(250,249,246,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.22;
  box-shadow: var(--shadow-sm);
}
.how-process-visual figcaption small,
.how-path-visual figcaption small {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--cobalt);
  font-weight: 700;
}
.how-boundary-section {
  background: var(--bg-surface);
}
.how-boundary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-boundary-panel h2 {
  max-width: 620px;
  margin: 8px 0 16px;
}
.how-boundary-panel p:not(.label) {
  max-width: 680px;
}
.how-boundary-list {
  display: grid;
  gap: 10px;
}
.how-boundary-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.72);
  color: var(--text);
  font-size: .9rem;
  font-weight: 650;
}
.questionnaire-section {
  background: var(--bg);
}
.questionnaire-default {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
}
.questionnaire-default > span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: rgba(27,79,216,.08);
  color: var(--cobalt);
  font-size: .74rem;
  font-weight: 750;
}
.questionnaire-default h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.questionnaire-default p {
  max-width: 720px;
  margin: 0;
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.62;
}
.questionnaire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.questionnaire-grid article {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-sm);
}
.questionnaire-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--cobalt);
}
.questionnaire-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.questionnaire-grid p {
  margin: 0;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.58;
}
.setup-examples-section,
.testimonials-section {
  background: var(--bg);
}
.setup-architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1060px;
  margin: 34px auto 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.setup-architecture article {
  min-height: 190px;
  padding: 24px;
  border-left: 1px solid var(--border);
}
.setup-architecture article:first-child {
  border-left: 0;
}
.setup-architecture span {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  color: var(--cobalt);
}
.setup-architecture h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}
.setup-architecture p {
  max-width: 270px;
  color: var(--text-2);
  font-size: .94rem;
  line-height: 1.58;
}
.setup-trust-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 18px auto 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.setup-trust-band article {
  padding: 24px;
  border-left: 1px solid var(--border);
  background: rgba(255,255,255,.44);
}
.setup-trust-band article:first-child {
  border-left: 0;
}
.setup-trust-band span {
  display: inline-flex;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 800;
  color: var(--teal);
}
.setup-trust-band h3 {
  max-width: 380px;
  margin: 0 0 10px;
  font-size: 1.04rem;
}
.setup-trust-band p {
  max-width: 430px;
  margin: 0;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.58;
}
.setup-example-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1060px;
  margin: 34px auto 0;
}
.setup-example-card,
.testimonial-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow-sm);
}
.setup-type {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  color: var(--cobalt);
}
.setup-example-card h3 {
  max-width: 280px;
  margin: 0 0 12px;
  font-size: 1.04rem;
}
.setup-example-card p,
.testimonial-card blockquote,
.testimonial-part p {
  margin: 0;
  color: var(--text-2);
  font-size: .94rem;
  line-height: 1.58;
}
.provider-independence {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1060px;
  margin: 30px auto 0;
  padding: 42px 38px;
  border: 1px solid rgba(13,148,136,.24);
  border-radius: var(--radius-card);
  background:
    linear-gradient(100deg, rgba(250,249,246,.96) 0%, rgba(250,249,246,.84) 39%, rgba(250,249,246,.58) 100%),
    url("../images/aksel-privacy-routing-bg.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 56px rgba(15,18,25,.12);
  isolation: isolate;
}
.provider-independence::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.02)),
    radial-gradient(circle at 82% 18%, rgba(13,148,136,.16), transparent 36%);
  pointer-events: none;
}
.provider-copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: rgba(13,148,136,.12);
  color: var(--teal);
  font-size: .74rem;
  font-weight: 750;
}
.provider-copy h3 {
  max-width: 370px;
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.13;
  text-shadow: 0 1px 0 rgba(255,255,255,.42);
}
.provider-copy p {
  max-width: 390px;
  margin: 0;
  color: rgba(31,41,55,.86);
  font-size: .98rem;
  line-height: 1.62;
}
.provider-choice-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "core core"
    "local cloud"
    "fallback fallback";
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.48);
  box-shadow: 0 18px 42px rgba(15,18,25,.12);
  backdrop-filter: blur(18px) saturate(1.08);
}
.provider-choice-visual::before {
  content: none;
}
.provider-core,
.provider-route {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 26px rgba(15,18,25,.08);
  backdrop-filter: blur(12px);
}
.provider-core {
  grid-area: core;
  background: linear-gradient(135deg, rgba(27,79,216,.13), rgba(255,255,255,.82));
}
.provider-core::after {
  content: none;
}
.provider-route-local {
  grid-area: local;
  border-top: 4px solid rgba(13,148,136,.42);
}
.provider-route-cloud {
  grid-area: cloud;
  border-top: 4px solid rgba(124,58,237,.36);
}
.provider-route-fallback {
  grid-area: fallback;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: start;
  border-left: 4px solid rgba(220,38,38,.28);
  background: rgba(255,255,255,.70);
}
.provider-route-fallback span {
  grid-row: auto;
}
.provider-route-local::before,
.provider-route-cloud::before {
  content: none;
}
.provider-route-local::before {
  content: none;
}
.provider-route-cloud::before {
  content: none;
}
.provider-core span,
.provider-route span {
  display: inline-flex;
  margin-bottom: 9px;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 800;
  color: var(--cobalt);
}
.provider-route-local span {
  color: var(--teal);
}
.provider-route-cloud span {
  color: var(--violet);
}
.provider-route-fallback span {
  width: fit-content;
  height: fit-content;
  margin-bottom: 4px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: rgba(220,38,38,.10);
  color: var(--vermilion);
}
.provider-core strong,
.provider-route strong {
  display: block;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.25;
}
.provider-route-local,
.provider-route-cloud {
  min-height: 148px;
}
.provider-route small {
  display: block;
  margin-top: 8px;
  color: var(--text-2);
  font-size: .78rem;
  line-height: 1.42;
}
@media (max-width: 1040px) {
  .provider-independence {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .provider-copy h3,
  .provider-copy p {
    max-width: none;
  }
}
.homepage-bottom-actions {
  padding: 58px 0 72px;
  background: var(--bg);
}
.bottom-action-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bottom-action-row .btn {
  min-width: 180px;
  justify-content: center;
}
.setup-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--text-3);
  font-size: .82rem;
  text-align: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}
.testimonial-status {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(30, 91, 207, .18);
  border-radius: 4px;
  background: rgba(30, 91, 207, .06);
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.testimonial-card blockquote {
  color: var(--text);
  font-weight: 650;
}
.testimonial-story {
  display: grid;
  gap: 14px;
}
.testimonial-part {
  padding-top: 14px;
  border-top: 1px solid rgba(17,17,17,.10);
}
.testimonial-part:first-child {
  padding-top: 0;
  border-top: 0;
}
.testimonial-part span {
  display: inline-flex;
  margin-bottom: 7px;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
}
.testimonial-part p {
  color: var(--text);
  font-weight: 620;
}
.testimonial-part + .testimonial-part p {
  color: var(--text-2);
  font-weight: 500;
}
.testimonial-card cite {
  margin-top: 22px;
  color: var(--text-3);
  font-size: .8rem;
  font-style: normal;
}
.testimonial-card.is-placeholder {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(250,249,246,.68));
}
@media (max-width: 900px) {
  #hero.hero-simple .hero-inner,
  .files-preview-layout,
  .ai-timeline,
  .problem-cards,
  .why-buy-panel,
  .agentic-takeaway,
  .homepage-product-cta {
    grid-template-columns: 1fr;
  }
  .ai-timeline article {
    min-height: auto;
  }
  .ai-timeline article::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 24px;
    width: 2px;
    height: 14px;
    background: linear-gradient(var(--cobalt), var(--teal));
  }
  .hero-visual-card { min-height: 330px; }
  .files-preview-layout .blueprint-preview { justify-self: stretch; max-width: none; }
  .homepage-product-actions { justify-content: flex-start; }
  .why-buy-panel {
    max-width: 640px;
  }
  .how-boundary-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .how-process-visual figcaption,
  .how-path-visual figcaption {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    background: rgba(250,249,246,.72);
  }
  .how-process-visual figcaption span,
  .how-path-visual figcaption span {
    min-height: 54px;
  }
  .ai-timeline-composition {
    left: auto;
    grid-template-columns: 1fr;
    width: min(100%, 640px);
    margin: 38px auto 0;
    transform: none;
  }
  .timeline-now-callout {
    width: 100%;
    margin-top: -2px;
    padding: 12px 14px 12px 54px;
    border: 1px solid rgba(220,38,38,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.68);
  }
  .timeline-now-callout::before {
    left: 14px;
  }
  .timeline-now-callout::after {
    left: 13px;
  }
  .questionnaire-default {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .setup-example-grid,
  .setup-trust-band,
  .testimonial-grid,
  .questionnaire-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .setup-trust-band article,
  .setup-trust-band article:first-child {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .setup-trust-band article:first-child {
    border-top: 0;
  }
  .provider-independence {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .provider-copy h3,
  .provider-copy p {
    max-width: none;
  }
  .provider-choice-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "local"
      "cloud"
      "fallback";
  }
  .provider-choice-visual::before,
  .provider-core::after,
  .provider-route-local::before,
  .provider-route-cloud::before {
    display: none;
  }
  .provider-route-fallback {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #hero.hero-simple { padding-top: 96px; padding-bottom: 58px; }
  #hero.hero-simple .hero-copy,
  #hero.hero-simple .hero-h1,
  #hero.hero-simple .hero-desc,
  #hero.hero-simple .hero-proof {
    max-width: 100%;
    min-width: 0;
  }
  #hero.hero-simple .hero-h1 {
    font-size: 1.7rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  #hero.hero-simple .hero-eyebrow {
    max-width: 100%;
  }
  #hero.hero-simple .badge {
    max-width: 100%;
    white-space: normal;
  }
  .hero-visual-card { min-height: 260px; }
  .hero-visual-caption { grid-template-columns: 1fr; }
  .ai-timeline-visual {
    overflow-x: hidden;
  }
  .ai-timeline-visual img {
    min-width: 0;
    max-width: 100%;
  }
  .simple-explain .problem-card { min-height: auto; }
  .minimal-takeaway { grid-template-columns: 1fr; }
  .setup-architecture {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .setup-architecture article {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .setup-architecture article:first-child {
    border-top: 0;
  }
  .minimal-takeaway .problem-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .minimal-takeaway .problem-card:first-child {
    border-top: 0;
  }
  .agentic-takeaway { padding: 22px; }
  .takeaway-grid { grid-template-columns: 1fr; }
  .takeaway-grid span { min-height: auto; }
  .bottom-action-row {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .bottom-action-row .btn {
    width: 100%;
  }
  .files-preview-layout { padding: 18px; }
}

/* --- Narrow mobile (iPhone 12/13/14/15 portrait at 390px and below) ---
   Defensive layer for text clipping on very narrow viewports. The
   600px breakpoint already reduces h1 to 1.7rem; here we go further
   for sub-414px devices and force word-break on long compound phrases. */
@media (max-width: 414px) {
  .container { padding-left: 18px; padding-right: 18px; }
  h1, h2, h3, h4, h5, h6 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  h1 { font-size: 1.55rem; line-height: 1.2; }
  h2 { font-size: 1.25rem; }
  #hero.hero-simple .hero-h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  #hero.hero-simple .hero-desc {
    font-size: .95rem;
    line-height: 1.55;
  }
  .hero-proof,
  .hero-strategy { font-size: .9rem; line-height: 1.5; }
  .hero-reassurance { font-size: .78rem; }
  .hero-actions .btn,
  .nav-cta { font-size: .9rem; padding-left: 14px; padding-right: 14px; }
  .terms-hero h1 { font-size: 1.7rem; }
  .terms-meta { font-size: .85rem; line-height: 1.55; }
  .terms-section h2 { font-size: 1.15rem; }
  .footer-nav,
  .footer-links {
    flex-wrap: wrap;
    word-break: normal;
  }
  .footer-nav a,
  .footer-links a { font-size: .85rem; }
  #cookie-notice .cn-text { font-size: .78rem; }
  #cookie-notice .cn-btn { font-size: .8rem; padding: 8px 14px; }
}

/* --- Cookie / privacy notice banner ---------------------- */
#cookie-notice {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1200;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(250, 249, 246, .98);
  box-shadow: 0 18px 44px rgba(15, 18, 25, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#cookie-notice .cn-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
}
#cookie-notice .cn-text {
  margin: 0;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-dark-2);
}
#cookie-notice .cn-text a {
  color: var(--cobalt);
  text-decoration: underline;
}
#cookie-notice .cn-btn {
  appearance: none;
  border: 1px solid var(--cobalt);
  background: var(--cobalt);
  color: #fff;
  font: 600 .85rem/1 var(--font-body);
  padding: 10px 16px;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-notice .cn-btn:hover { background: var(--cobalt-dark); }
@media (max-width: 540px) {
  #cookie-notice .cn-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  #cookie-notice .cn-btn { justify-self: end; }
}
@media print {
  #cookie-notice { display: none; }
}
