/* =====================================================================
   Trust Cover - design system
   Self-hosted, no external requests. System font stack keeps LCP fast on
   Indian mobile networks, which is most of the traffic.
   ===================================================================== */

:root {
  --navy-900: #06182f;
  --navy-800: #0b2545;
  --navy-700: #13315c;
  --navy-100: #e8eef6;
  --teal-600: #0f766e;
  --teal-500: #14918a;
  --teal-100: #dff3f1;
  --amber-500: #c2760a;
  --ink: #16202c;
  --ink-soft: #4b5866;
  --line: #dde3ea;
  --bg: #ffffff;
  --bg-tint: #f5f8fb;
  --ok: #15803d;
  --no: #b3261e;

  --wrap: 1160px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(6, 24, 47, .06), 0 8px 24px rgba(6, 24, 47, .06);
  --shadow-lg: 0 2px 6px rgba(6, 24, 47, .08), 0 18px 40px rgba(6, 24, 47, .10);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --step-0: clamp(1rem, .97rem + .15vw, 1.06rem);
  --step-1: clamp(1.15rem, 1.08rem + .35vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.25rem + .7vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy-900); margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p, ul, ol, dl, table { margin: 0 0 1.1em; }

a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-800); }

img { max-width: 100%; height: auto; }

:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy-800); color: #fff; padding: .7rem 1rem;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---- layout --------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { max-width: 720px; }
.wrap--tight { padding-block: 0; }
.wrap--form { max-width: 760px; margin-inline: auto; width: 100%; }
.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section--tint { background: var(--bg-tint); }
.section__title { text-align: center; margin-bottom: .4em; }
.section__intro { text-align: center; max-width: 62ch; margin: 0 auto 2.2rem; color: var(--ink-soft); }
.center { text-align: center; }

.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.6fr 1fr; } }

.twocol { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .twocol { grid-template-columns: 1fr 1fr; } }

/* ---- top bar and header --------------------------------------------- */
.topbar { background: var(--navy-900); color: #c9d6e6; font-size: .84rem; }
.topbar__inner { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar__links { display: flex; gap: 1.2rem; }
@media (max-width: 640px) { .topbar__item { display: none; } .topbar__inner { justify-content: center; } }

.header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }

.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--navy-900); }
.logo__mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--teal-600));
  color: #fff; font-weight: 800; letter-spacing: .02em;
}
.logo__text { font-weight: 800; font-size: 1.12rem; line-height: 1.1; display: flex; flex-direction: column; }
.logo__text small { font-weight: 500; font-size: .68rem; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; }
.logo--footer .logo__text { color: #fff; }

.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav__link { display: inline-block; padding: .5rem .7rem; border-radius: 8px; color: var(--navy-800); text-decoration: none; font-weight: 600; font-size: .93rem; }
.nav__link:hover { background: var(--navy-100); }
.nav__link.is-current { color: var(--teal-600); background: var(--teal-100); }

.navtoggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 40px; padding: 9px 10px; cursor: pointer; }
.navtoggle span { display: block; height: 2px; background: var(--navy-800); margin: 4px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 1024px) {
  .navtoggle { display: block; }
  .nav { display: none; width: 100%; }
  .nav.is-open { display: block; }
  .header__inner { flex-wrap: wrap; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; padding: .5rem 0 1rem; }
  .nav__link, .nav .btn { display: block; text-align: left; }
}

/* ---- buttons -------------------------------------------------------- */
.btn {
  display: inline-block; padding: .72rem 1.25rem; border-radius: 8px; border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; text-decoration: none; cursor: pointer; transition: .15s;
}
.btn--primary { background: var(--teal-600); color: #fff; }
.btn--primary:hover { background: var(--teal-500); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-800); background: var(--navy-100); color: var(--navy-900); }
.btn--link { background: none; color: var(--navy-800); padding-inline: .4rem; text-decoration: underline; }
.btn--lg { padding: .9rem 1.6rem; font-size: 1rem; }
.btn--sm { padding: .5rem .9rem; font-size: .88rem; }

/* ---- hero ----------------------------------------------------------- */
.hero { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--teal-600) 190%); color: #fff; }
.hero__inner { padding-block: clamp(2.5rem, 6vw, 5rem); max-width: 900px; }
.hero__title { color: #fff; margin-bottom: .35em; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 700; color: #8fd8d2; margin: 0 0 .8rem; }
.hero__eyebrow a { color: #8fd8d2; }
.hero__sub { font-size: var(--step-1); color: #d6e2ef; max-width: 65ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; margin-top: 1.6rem; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.hero__actions .btn--link { color: #cfe6e3; }
.hero__points { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .45rem; }
.hero__points li { padding-left: 1.6rem; position: relative; color: #d6e2ef; }
.hero__points li::before { content: "\2713"; position: absolute; left: 0; color: #7fd3cc; font-weight: 700; }
.hero--article .hero__title { font-size: var(--step-3); }
.hero .meta { color: #b9cadd; font-size: .9rem; }
.hero .meta a { color: #cfe6e3; }

/* ---- breadcrumbs ---------------------------------------------------- */
.crumbs { background: var(--bg-tint); border-bottom: 1px solid var(--line); font-size: .86rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: .6rem 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--ink-soft); }
.crumbs [aria-current] { color: var(--ink-soft); }

/* ---- cards ---------------------------------------------------------- */
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card {
  display: flex; flex-direction: column; padding: 1.3rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; color: inherit;
  transition: .18s; box-shadow: var(--shadow);
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--teal-500); }
.card--static { box-shadow: none; }
.card__title { font-size: 1.06rem; margin-bottom: .4rem; }
.card__text { color: var(--ink-soft); font-size: .94rem; margin-bottom: .9rem; flex: 1; }
.card__meta { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: .5rem; }
.card__more { font-weight: 700; font-size: .9rem; color: var(--teal-600); }
.card__more::after { content: " \2192"; }

/* ---- quick pick ----------------------------------------------------- */
.quickpick__grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.quickpick__item {
  display: flex; align-items: center; gap: .7rem; padding: 1rem 1.1rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: #fff; text-decoration: none; color: var(--navy-800); font-weight: 600;
}
.quickpick__item:hover { border-color: var(--teal-500); background: var(--teal-100); }
.quickpick__item span { font-size: 1.3rem; color: var(--teal-600); }

/* ---- steps ---------------------------------------------------------- */
.steps { list-style: none; counter-reset: s; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.steps li { counter-increment: s; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--teal-100); color: var(--teal-600); font-weight: 800; margin-bottom: .7rem; }
.steps h3 { font-size: 1rem; margin-bottom: .3rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.steps--numbered { grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps--numbered { grid-template-columns: 1fr 1fr; } }

/* ---- answer + cover boxes ------------------------------------------- */
.answerbox { border-left: 4px solid var(--teal-600); background: var(--teal-100); padding: 1.3rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; }
.answerbox h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-600); margin-bottom: .4rem; }
.answerbox p { margin: 0; font-size: var(--step-1); }

.covergrid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .covergrid { grid-template-columns: 1fr 1fr; } }
.coverbox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.coverbox h3 { font-size: 1rem; }
.coverbox--yes { border-top: 3px solid var(--ok); }
.coverbox--no { border-top: 3px solid var(--no); }

.ticks { list-style: none; padding: 0; display: grid; gap: .5rem; }
.ticks li { padding-left: 1.6rem; position: relative; }
.ticks li::before { content: "\2713"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.coverbox--no .ticks li::before { content: "\2715"; color: var(--no); }

.ticklist { padding-left: 1.2rem; display: grid; gap: .5rem; }

/* ---- faq ------------------------------------------------------------ */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .6rem; }
.faq__item summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; color: var(--navy-800); list-style: none; position: relative; padding-right: 3rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 1.2rem; font-size: 1.3rem; color: var(--teal-600); line-height: 1; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__answer { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }
.faq__answer > *:last-child { margin-bottom: 0; }

/* ---- prose ---------------------------------------------------------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.8em; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose .lead { font-size: var(--step-1); }

.tablewrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; min-width: 520px; }
.table th, .table td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line); }
.table thead th { background: var(--navy-100); font-size: .9rem; }

/* ---- lists, quotes, misc -------------------------------------------- */
.linklist { list-style: none; padding: 0; display: grid; gap: .1rem; }
.linklist li { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.linklist a { font-weight: 700; }
.linklist span { display: block; color: var(--ink-soft); font-size: .92rem; }

.linkrow { display: flex; flex-wrap: wrap; gap: 1.2rem; font-weight: 600; }

.quotes { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; }
.quote blockquote { margin: 0 0 .9rem; font-size: 1rem; }
.quote blockquote::before { content: "\201C"; color: var(--teal-500); font-size: 2rem; line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.quote figcaption strong { display: block; }
.quote figcaption span { color: var(--ink-soft); font-size: .9rem; }

.logos { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.logos li { border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-size: .86rem; color: var(--ink-soft); background: #fff; }

.stats { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stats strong { display: block; font-size: var(--step-3); color: var(--teal-600); }
.stats span { color: var(--ink-soft); }

.glossary { display: grid; gap: .1rem; }
.glossary dt { font-weight: 700; color: var(--navy-800); padding-top: .8rem; }
.glossary dd { margin: 0 0 .8rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: .8rem; }
.glossary__letter { font-size: var(--step-1); color: var(--teal-600); margin-top: 1.6rem; }
.alphabet { display: flex; flex-wrap: wrap; gap: .5rem; }
.alphabet a { border: 1px solid var(--line); border-radius: 6px; padding: .2rem .55rem; text-decoration: none; }

.address { font-style: normal; line-height: 1.7; }
.aside { background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; }
.aside h2 { font-size: 1.05rem; margin-top: 1.4rem; }
.aside h2:first-child { margin-top: 0; }
.aside .btn { width: 100%; text-align: center; }

.fineprint { font-size: .86rem; color: var(--ink-soft); }
.empty { background: var(--bg-tint); border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.errcode { font-size: 4rem; font-weight: 800; color: var(--navy-100); margin: 0; line-height: 1; }
.tick { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--teal-100); color: var(--teal-600); font-size: 1.8rem; margin: 0 auto 1rem; }

/* ---- finder --------------------------------------------------------- */
.finder__options { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.8rem; }
.finder__opt { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: .6rem 1.1rem; font-weight: 600; cursor: pointer; font-family: inherit; font-size: .94rem; color: var(--navy-800); }
.finder__opt:hover { border-color: var(--teal-500); }
.finder__opt.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.finder__panel[hidden] { display: none; }
.finder__note { text-align: center; color: var(--ink-soft); max-width: 60ch; margin: 0 auto 1.4rem; }
.finder__cta { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---- forms ---------------------------------------------------------- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form__title { font-size: var(--step-2); margin-bottom: .3rem; }
.form__note { color: var(--ink-soft); margin-bottom: 1.4rem; }
.form__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__grid { grid-template-columns: 1fr 1fr; } }
.field { margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.field--wide { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy-800); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; padding: .7rem .8rem; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-500); outline: 2px solid var(--teal-100); }
.field--check { flex-direction: row; margin-top: 1.1rem; }
.field--check label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .92rem; color: var(--ink-soft); }
.field--check input { width: auto; margin-top: .25rem; }
.field.is-hidden { display: none; }
.req { color: var(--no); }
.form__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin: 1.4rem 0 0; }
.form--compact .form__grid { grid-template-columns: 1fr; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.flash { padding: .9rem 1.1rem; border-radius: var(--radius); margin: 1rem 0; font-weight: 600; }
.flash--error { background: #fdeceb; border: 1px solid #f3c3c0; color: var(--no); }
.flash--info, .flash--success { background: var(--teal-100); border: 1px solid #9fd8d3; color: var(--teal-600); }

/* ---- cta, prefooter, footer ------------------------------------------ */
.cta__inner, .prefooter__inner { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between; }
.cta { background: var(--navy-100); }
.cta h2 { margin-bottom: .3rem; }
.cta p { margin: 0; color: var(--ink-soft); max-width: 60ch; }
.cta__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

.prefooter { background: linear-gradient(120deg, var(--navy-800), var(--teal-600)); color: #fff; padding-block: clamp(2rem, 4vw, 3rem); }
.prefooter h2 { color: #fff; margin-bottom: .3rem; }
.prefooter p { margin: 0; color: #d6e6f2; }
.prefooter .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.prefooter .btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.footer { background: var(--navy-900); color: #b9c8d9; padding-top: clamp(2.4rem, 5vw, 3.6rem); font-size: .93rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); padding-bottom: 2rem; }
.footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin: 1.4rem 0 .7rem; }
.footer__col h3:first-child { margin-top: 0; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer a { color: #cfdcea; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__address { color: #97a9bd; }
.footer__social { display: flex; gap: 1rem; }
.footer__legal { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 0 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; }
.footer__legal p { margin: 0; }
.footer__legal-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer__legal strong { color: #e2ebf4; }

/* ---- floating whatsapp ---------------------------------------------- */
.floatcall {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 50;
  background: var(--teal-600); color: #fff; text-decoration: none; font-weight: 700;
  padding: .8rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.floatcall:hover { background: var(--teal-500); color: #fff; }

/* ---- motion + print -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media print {
  .topbar, .header, .prefooter, .floatcall, .form, .crumbs { display: none; }
  body { color: #000; }
  .hero { background: none; color: #000; }
  .hero__title, .hero__sub { color: #000; }
}

/* ---- inline icons ---------------------------------------------------- */
.ico { width: 22px; height: 22px; flex: 0 0 22px; color: var(--teal-600); }
.quickpick__item .ico { width: 24px; height: 24px; flex-basis: 24px; }

/* ---- brand logo + dark header --------------------------------------
   The supplied logo is white artwork, so the header sits on the brand
   navy rather than on white. */
.header { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.12); }
.header .nav__link { color: #dbe6f2; }
.header .nav__link:hover { background: rgba(255,255,255,.1); color: #fff; }
.header .nav__link.is-current { background: rgba(255,255,255,.14); color: #fff; }
.navtoggle { border-color: rgba(255,255,255,.35); }
.navtoggle span { background: #fff; }
.logo__img { display: block; height: 42px; width: auto; }
.logo--footer .logo__img { height: 46px; margin-bottom: .8rem; }
@media (max-width: 600px) { .logo__img { height: 34px; } }

/* ---- admin-controlled banners --------------------------------------- */
.announce { background: var(--amber-500); color: #fff; font-size: .92rem; }
.announce__inner { display: flex; gap: .6rem; align-items: center; justify-content: center; padding: .5rem 0; flex-wrap: wrap; }
.announce a { color: #fff; font-weight: 700; }
.announce b { background: rgba(255,255,255,.22); padding: .1rem .5rem; border-radius: 999px; font-size: .78rem; }
.announce__close { background: none; border: 0; color: #fff; font-size: 1.2rem; cursor: pointer; line-height: 1; }
.promo__inner { display: flex; gap: 1.5rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.promo h2 { margin-bottom: .3rem; }
.promo p { margin: 0; }
.promo__badge { text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 800; margin-bottom: .4rem; }
.promo__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.promo--navy { background: var(--navy-800); color: #fff; }
.promo--navy h2, .promo--teal h2 { color: #fff; }
.promo--navy .promo__badge, .promo--teal .promo__badge { color: #8fd8d2; }
.promo--teal { background: var(--teal-600); color: #fff; }
.promo--amber { background: #fdf0dc; color: var(--ink); }
.promo--amber .promo__badge { color: var(--amber-500); }
.promo--light { background: var(--bg-tint); }
.promo--navy .btn--ghost, .promo--teal .btn--ghost { color: #fff; border-color: rgba(255,255,255,.45); }

/* ---- portal login entry points --------------------------------------- */
.topbar__login { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: .05rem .7rem; }
.topbar__login:hover { background: rgba(255,255,255,.15); text-decoration: none; }
.card--login .card__title { font-size: 1.2rem; }
.card--login { border-top: 3px solid var(--teal-600); }
