/* =========================================================================
   MI Write — 2026 product site design system
   Brand: teal #075d76 + orange #ff9912 · Plus Jakarta Sans + Inter
   ========================================================================= */

:root {
  --teal-950: #042a36;
  --teal-900: #053b4c;
  --teal-800: #064a5e;
  --teal:     #075d76; /* brand primary */
  --teal-600: #0a7796;
  --teal-500: #1197bd;
  --cyan:     #17a2c4; /* logo gradient accent */
  --cyan-100: #d7eef4;

  --orange:     #ff9912; /* brand accent / CTA */
  --orange-400: #ffb44d;
  --orange-600: #e07d00; /* accessible on white */

  --ink:      #12262e;
  --slate-700:#31464e;
  --slate-600:#465c64;
  --slate-500:#647a82;
  --slate-400:#8ba0a7;

  --line:     #e0eaed;
  --line-soft:#eef5f7;

  --bg:       #ffffff;
  --bg-soft:  #f1f8fa;   /* teal tint */
  --bg-softer:#e6f2f5;
  --bg-warm:  #fff6ea;   /* orange tint */

  --r-xs: 10px;
  --r-sm: 14px;
  --r:    18px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(4,42,54,.06), 0 1px 3px rgba(4,42,54,.05);
  --shadow:    0 8px 22px -8px rgba(4,42,54,.16), 0 2px 6px rgba(4,42,54,.06);
  --shadow-lg: 0 26px 54px -20px rgba(4,42,54,.34), 0 8px 24px -12px rgba(4,42,54,.16);
  --shadow-teal: 0 14px 30px -12px rgba(7,93,118,.5);
  --shadow-orange: 0 14px 28px -10px rgba(224,125,0,.5);

  --container: 1180px;
  --prose: 760px;

  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0; font-family: var(--font-ui); font-size: 17px; line-height: 1.65;
  color: var(--slate-700); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--teal-900);
  line-height: 1.12; font-weight: 700; margin: 0 0 .5em; letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.08rem; font-weight: 700; font-family: var(--font-ui); color: var(--teal-800); }
p { margin: 0 0 1.1em; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-teal { background: linear-gradient(150deg, var(--teal-900), var(--teal) 75%, var(--teal-600)); color: #d7eef4; }
.section-teal h1, .section-teal h2, .section-teal h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-ui); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-600); margin: 0 0 .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--orange); border-radius: 3px; }
.section-teal .eyebrow { color: var(--orange-400); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.24rem); color: var(--slate-600); line-height: 1.6; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-ui); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .95em 1.7em; border-radius: var(--r-pill); border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: var(--shadow-teal); }
.btn-teal:hover { background: var(--teal-800); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--teal); background: #fff; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 1.1em 2em; font-size: 1.05rem; }

.arrow-link { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; color: var(--teal); }
.arrow-link svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(4,42,54,.4); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a:not(.btn) {
  font-family: var(--font-ui); font-weight: 500; font-size: .98rem; color: var(--slate-700);
  padding: .55em .85em; border-radius: var(--r-xs); position: relative;
}
.main-nav a:not(.btn):hover { color: var(--teal); background: var(--bg-soft); }
.main-nav a:not(.btn).active { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.login-link { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--teal); font-family: var(--font-ui); font-size: .95rem; }
.login-link svg { width: 1.05em; height: 1.05em; }
.login-link:hover { color: var(--teal-800); }
.main-nav > .btn, .main-nav > .login-link { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; border-radius: var(--r-xs); color: var(--teal); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px clamp(20px,5vw,40px) 24px;
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .28s var(--ease), opacity .22s var(--ease), visibility .22s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a:not(.btn) { padding: .95em .4em; font-size: 1.08rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav > .login-link { display: inline-flex; padding: 1em .4em; border-bottom: 1px solid var(--line-soft); }
  .main-nav > .btn { display: inline-flex; margin-top: 16px; }
  .header-actions .login-link, .header-actions .btn:not(.nav-toggle) { display: none; }
}

/* =========================================================================
   Product hero
   ========================================================================= */
.hero { position: relative; overflow: hidden; color: #fff; background: var(--teal-950); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4,32,42,.94) 0%, rgba(5,55,72,.9) 42%, rgba(7,93,118,.6) 72%, rgba(7,93,118,.28) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 640px; padding-block: clamp(72px, 11vw, 148px); }
.hero .eyebrow { color: #c3e6ef; }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 .accent { color: var(--orange-400); }
.hero-sub { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: #d8ecf2; max-width: 560px; margin-bottom: 1.8em; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .fact { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: #eaf6f9; box-shadow: none; backdrop-filter: blur(4px); }
.hero .fact svg { color: var(--orange-400); }

/* pill row of quick facts */
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.8em; }
.fact { display: inline-flex; align-items: center; gap: .5em; padding: .5em 1em; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-size: .9rem; font-weight: 500; color: var(--teal-800); box-shadow: var(--shadow-sm); }
.fact svg { width: 1.05em; height: 1.05em; color: var(--teal-500); }
@media (max-width: 860px) { .facts { justify-content: center; } }

/* =========================================================================
   Interior page hero
   ========================================================================= */
.page-hero { position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(110% 130% at 90% -10%, rgba(255,153,18,.22), transparent 55%), linear-gradient(120deg, var(--teal-950), var(--teal-800) 65%, var(--teal) 100%);
}
.page-hero::after { content:""; position:absolute; inset:0; opacity:.5; z-index:0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%); mask-image: linear-gradient(90deg, transparent, #000 45%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-inner { padding-block: clamp(60px, 8vw, 104px); max-width: 780px; }
.page-hero .eyebrow { color: var(--orange-400); }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: #cfe8ef; margin: 0; max-width: 660px; }
.breadcrumbs { position: relative; z-index: 1; font-size: .85rem; color: #93c2cf; margin-bottom: 1.4rem; }
.breadcrumbs a { color: #cfe8ef; } .breadcrumbs a:hover { color: #fff; } .breadcrumbs span { margin: 0 .5em; opacity: .5; }

/* =========================================================================
   Cards / audiences / features
   ========================================================================= */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.audience-card { display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; }
.audience-card .aud-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.audience-badge { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.audience-badge svg { width: 28px; height: 28px; }
.aud-students .audience-badge { background: linear-gradient(150deg, var(--teal), var(--cyan)); }
.aud-teachers .audience-badge { background: linear-gradient(150deg, var(--teal-800), var(--teal-600)); }
.aud-admins  .audience-badge { background: linear-gradient(150deg, var(--orange), var(--orange-400)); }
.audience-card h3 { margin: 0; color: var(--teal-900); font-size: 1.35rem; }
.feature-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.feature-row:first-of-type { border-top: 0; }
.feature-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: var(--bg-soft); color: var(--teal); display: grid; place-items: center; }
.feature-ico svg { width: 22px; height: 22px; }
.feature-row h4 { margin: 0 0 .25em; color: var(--teal-900); font-size: 1.02rem; }
.feature-row p { margin: 0; font-size: .95rem; color: var(--slate-600); }

/* check list */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8em; }
.check-list li { position: relative; padding-left: 2em; color: var(--slate-700); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .15em; width: 1.35em; height: 1.35em; border-radius: 50%;
  background: var(--cyan-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23075d76' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.8em no-repeat; }
.check-list.two-col { grid-template-columns: 1fr 1fr; gap: .8em 2em; }
@media (max-width: 620px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* =========================================================================
   Split / demo
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.split-media { position: relative; }
.split-badge { position: absolute; bottom: -18px; left: -18px; background: var(--orange); color: #fff; font-weight: 700; font-family: var(--font-display); padding: 14px 20px; border-radius: var(--r); box-shadow: var(--shadow-orange); font-size: .95rem; line-height: 1.2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } }

/* =========================================================================
   How it works (numbered steps)
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num { width: 48px; height: 48px; border-radius: 14px; background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-teal); }
.step h3 { color: var(--teal-900); margin-bottom: .4em; font-size: 1.2rem; }
.step p { color: var(--slate-600); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================================
   6+1 Traits
   ========================================================================= */
.trait-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.trait-card { position: relative; display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.trait-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.trait-card .t-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); color: var(--teal); display: grid; place-items: center; }
.trait-card .t-ico svg { width: 23px; height: 23px; }
.trait-card h4 { margin: 0 0 .3em; color: var(--teal-900); font-size: 1.08rem; }
.trait-card p { margin: 0; font-size: .93rem; color: var(--slate-600); line-height: 1.5; }
.trait-card.plus { grid-column: 1 / -1; background: var(--bg-warm); border-color: #ffe1b0; }
.trait-card.plus .t-ico { background: #ffe6c2; color: var(--orange-600); }
.t-badge { position: absolute; top: 16px; right: 18px; font-family: var(--font-display); font-weight: 800; font-size: .78rem; color: var(--orange-600); background: #fff; border: 1px solid #ffdca0; border-radius: var(--r-pill); padding: .12em .6em; }
@media (max-width: 820px) { .trait-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trait-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Contact / trial cards
   ========================================================================= */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.offer { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; text-align: center; height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.offer-ico { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: var(--bg-soft); color: var(--teal); }
.offer-ico svg { width: 30px; height: 30px; }
.offer h3 { color: var(--teal-900); margin-bottom: .4em; }
.offer p { color: var(--slate-600); font-size: .96rem; margin: 0; }
.offer .tag { display: inline-block; margin-top: 12px; font-size: .8rem; font-weight: 700; color: var(--orange-600); background: var(--bg-warm); padding: .3em .8em; border-radius: var(--r-pill); }
@media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); color: #fff; padding: clamp(40px, 6vw, 76px); text-align: center;
  background: linear-gradient(125deg, var(--teal-900), var(--teal) 72%, var(--teal-600)); }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,153,18,.32), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe8ef; max-width: 560px; margin-inline: auto; margin-bottom: 1.8em; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Prose (research + legal)
   ========================================================================= */
.prose { max-width: var(--prose); overflow-wrap: break-word; }
.prose-wide { max-width: 940px; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.2em; margin-bottom: .6em; scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin-top: 1.7em; margin-bottom: .5em; color: var(--teal-800); }
.prose h4 { margin-top: 1.5em; margin-bottom: .4em; }
.prose p, .prose li { color: var(--slate-700); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose ul li::marker { color: var(--orange-600); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(10,119,150,.35); overflow-wrap: break-word; }
.prose a:hover { text-decoration-color: currentColor; }
.prose strong { color: var(--teal-900); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
.ref-list p, .ref-list a { overflow-wrap: break-word; }
.ref-list p { padding-left: 1.6em; text-indent: -1.6em; font-size: .98rem; line-height: 1.55; color: var(--slate-700); }
.year-head, .ref-head { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); margin: 2em 0 .8em; padding-bottom: .4em; border-bottom: 1px solid var(--line); }

.legal-doc { max-width: 820px; }
.legal-doc > h1:first-child { margin-bottom: .6em; padding-bottom: .5em; border-bottom: 1px solid var(--line); }
.legal-doc h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.legal-back { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-ui); font-weight: 500; font-size: .95rem; color: var(--slate-500); }
.legal-back svg { width: 1.05em; height: 1.05em; }
.legal-back:hover { color: var(--teal); }
@media (max-width: 560px) { .legal-back { display: none; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--teal-950); color: #9fc3cd; padding-top: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(30px, 4vw, 56px); padding-bottom: 44px; }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { color: #86adb8; font-size: .95rem; max-width: 320px; }
.site-footer h4 { color: #fff; font-family: var(--font-ui); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1em; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .7em; }
.footer-links a { color: #9fc3cd; font-size: .96rem; } .footer-links a:hover { color: #fff; }
.site-footer address { font-style: normal; color: #9fc3cd; line-height: 1.7; font-size: .95rem; }
.site-footer address a { color: #9fc3cd; } .site-footer address a:hover { color: #fff; }
.footer-parent { display: inline-flex; align-items: center; gap: .6em; margin-top: 14px; font-size: .9rem; color: #86adb8; }
.footer-parent svg, .footer-parent img { height: 22px; width: auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #6f9aa6; }
.footer-bottom a { color: #6f9aa6; } .footer-bottom a:hover { color: #fff; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* responsive grids */
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .offer-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { body { font-size: 16px; } .grid-2 { grid-template-columns: 1fr; } }

/* skip link + utils */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--teal); color: #fff; padding: 12px 18px; border-radius: var(--r-xs); transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
@media (prefers-reduced-motion: reduce) { * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
