/* ==========================================================================
   Manchester Airport Claims — MAG data breach claim
   Bright, high-contrast palette: hot magenta primary, orange secondary,
   deep navy ink on white. Plus Jakarta Sans throughout.
   ========================================================================== */

:root {
  --ink:          #12263C;
  --ink-soft:     #4A6072;
  --muted:        #6B7F8F;
  --faint:        #8DA0AE;
  --navy:         #1E3D59;
  --navy-deep:    #16304A;

  --pink:         #EC127B;
  --pink-dark:    #C60C63;
  --pink-light:   #F254A1;
  --pink-wash:    #FDF2F8;
  --pink-line:    #FBCFE3;

  --orange:       #F97316;
  --orange-wash:  #FFF7ED;
  --orange-line:  #FDD9B5;

  --paper:        #FFFFFF;
  --grey-50:      #F9FAFB;
  --grey-100:     #F3F4F6;
  --line:         #E5E7EB;
  --line-strong:  #D3DAE1;
  --danger:       #DC2626;

  --sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shell: 1160px;
  --pad:   40px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; }
ul { padding-left: 20px; }
img, svg { max-width: 100%; }

a { color: var(--pink); text-decoration: none; font-weight: 600; }
a:hover { color: var(--pink-dark); text-decoration: underline; }

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

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 100; }
.skip:focus { left: 0; }

.shell { max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.shell--narrow { max-width: 900px; }
.shell--doc { max-width: 1060px; }

.lede { font-size: 19px; line-height: 1.6; color: var(--ink-soft); font-weight: 400; text-wrap: pretty; }
.muted { color: var(--muted); }
.hl { color: var(--pink); }
.vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Amber marker for values the client still has to supply. */
.todo { color: #9A6B14; background: #FEF3C7; border-radius: 4px; padding: 0 5px; font-weight: 600; }

/* ── announcement strip ──────────────────────────────────────────────── */

.alertbar { background: var(--ink); color: #fff; }
.alertbar__inner {
  display: block; padding: 11px 24px; font-size: 14.5px; font-weight: 600;
  text-align: center; text-wrap: pretty;
}
.alertbar svg { vertical-align: -3px; margin-right: 8px; }
.alertbar strong { color: var(--pink-light); font-weight: 800; }

/* ── site header ─────────────────────────────────────────────────────── */

.masthead { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 40; }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; min-width: 0; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 800; min-width: 0; }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand__name { font-size: 19px; letter-spacing: -0.03em; line-height: 1.1; min-width: 0; }
.brand__name small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); }
.brand__mark { flex-shrink: 0; }

.masthead__nav { display: flex; align-items: center; gap: 28px; min-width: 0; }
.masthead__nav > a { font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.masthead__nav > a:hover { color: var(--pink); }
.masthead__tel { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--ink); }
.masthead__secure { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ── buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 30px;
  border: none; border-radius: 10px;
  font-family: inherit; font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em;
  cursor: pointer; text-align: center;
  transition: background-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 10px 24px -10px rgba(236,18,123,.6); }
.btn--primary:hover { background: var(--pink-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--primary:active { transform: none; }
.btn--block { width: 100%; }
.btn--tall { min-height: 62px; font-size: 17.5px; }
.btn--ghost {
  min-height: 48px; padding: 0 22px; background: #fff; color: var(--ink);
  border: 2px solid var(--line-strong); font-size: 15px; font-weight: 700;
}
.btn--ghost:hover { border-color: var(--ink); background: var(--grey-50); text-decoration: none; }
.btn[disabled], .btn[aria-disabled="true"] { background: var(--line); color: #9AA6B2; cursor: not-allowed; box-shadow: none; transform: none; }
.btn.is-busy { opacity: .8; cursor: progress; }

/* ── form controls ───────────────────────────────────────────────────── */

.field + .field { margin-top: 16px; }
.field__label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.input {
  width: 100%; height: 56px;
  border: 2px solid var(--line); border-radius: 10px;
  background: #fff; padding: 0 16px;
  font-family: inherit; font-size: 16px; font-weight: 500; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: #9AA6B2; font-weight: 400; }
.input:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(236,18,123,.12); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.input[aria-invalid="true"]:focus { box-shadow: 0 0 0 4px rgba(220,38,38,.12); }

.error { display: none; align-items: center; gap: 7px; margin-top: 6px; font-size: 13.5px; font-weight: 600; color: var(--danger); }
.error.is-shown { display: flex; }

.formnote { display: flex; gap: 9px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.formnote svg { flex-shrink: 0; margin-top: 2px; }
.formnote p { font-size: 12.5px; line-height: 1.55; color: var(--muted); font-weight: 500; }
.formnote a { color: var(--ink-soft); text-decoration: underline; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── tick rows ───────────────────────────────────────────────────────── */

.tick { display: block; cursor: pointer; }
.tick__box {
  display: flex; align-items: flex-start; gap: 15px; padding: 18px 20px;
  border: 2px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s, background-color .15s;
}
.tick input { position: absolute; opacity: 0; width: 0; height: 0; }
.tick__mark {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
  border: 2px solid var(--line-strong); border-radius: 7px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s, border-color .15s;
}
.tick__mark svg { opacity: 0; transition: opacity .12s; }
.tick input:checked + .tick__box .tick__mark { background: var(--pink); border-color: var(--pink); }
.tick input:checked + .tick__box .tick__mark svg { opacity: 1; }
.tick input:checked + .tick__box { border-color: var(--pink); background: var(--pink-wash); }
.tick input:focus-visible + .tick__box { outline: 3px solid var(--pink); outline-offset: 2px; }
.tick:hover .tick__box { border-color: var(--line-strong); }
.tick__title { font-size: 16.5px; font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.tick__sub { font-size: 14px; line-height: 1.5; color: var(--muted); font-weight: 500; }

/* ── cards, panels, callouts ─────────────────────────────────────────── */

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.panel { background: var(--grey-50); border-radius: 12px; padding: 18px 20px; }
.panel p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); font-weight: 500; }
.panel strong { font-weight: 700; color: var(--ink); }

.callout {
  display: flex; gap: 16px; padding: 24px 26px;
  background: var(--pink-wash); border: 2px solid var(--pink-line); border-radius: 14px;
}
.callout svg { flex-shrink: 0; margin-top: 1px; }
.callout p { font-size: 15.5px; line-height: 1.6; font-weight: 500; }
.callout strong { font-weight: 800; }

.callout--amber { background: var(--orange-wash); border-color: var(--orange-line); }
.callout--amber h3 { font-size: 17px; font-weight: 800; color: #9A4A06; margin-bottom: 7px; }
.callout--amber p { font-size: 15px; line-height: 1.65; color: #9A4A06; }

.draftbar {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border-radius: 8px;
  background: #FEF3C7; border: 1px solid #FCD34D; font-size: 13px; font-weight: 700; color: #92400E;
}

/* ── disclaimer strip (load-bearing: we are not the airport) ─────────── */

.notus {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 14px 18px; margin: 0 auto;
  background: var(--grey-50); border: 1px solid var(--line); border-radius: 10px;
}
.notus svg { flex-shrink: 0; margin-top: 2px; }
.notus p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 600; }

/* ── hero ────────────────────────────────────────────────────────────── */

.hero {
  padding: 56px 0 64px;
  display: grid; align-items: start;
  grid-template-columns: minmax(0, 1fr) 440px;
  grid-template-areas: "lead card" "rest card";
  column-gap: 64px;
}
.hero__lead { grid-area: lead; max-width: 600px; }
.hero__rest { grid-area: rest; max-width: 600px; }
.hero h1 { font-size: 60px; margin-bottom: 22px; text-wrap: pretty; }
.hero__lead > p + p, .hero__rest > p + p { margin-top: 18px; }
.hero .notus { margin-top: 28px; }
.hero .claimcard { grid-area: card; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px; border-radius: 100px;
  background: var(--pink); color: #fff; margin-bottom: 22px;
  font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.trustrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; padding: 0; }
.trustrow li {
  display: flex; align-items: center; gap: 9px; padding: 11px 18px;
  background: var(--pink-wash); border: 1.5px solid var(--pink-line); border-radius: 100px;
  font-size: 14.5px; font-weight: 700; list-style: none; color: var(--ink);
}

.claimcard {
  width: 100%; min-width: 0; background: #fff;
  border: 2px solid var(--ink); border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(18,38,60,.4);
}
.claimcard__head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 16px 28px; background: var(--ink); min-width: 0; }
.claimcard__head span:nth-child(2) { font-size: 13.5px; color: #A9BACA; font-weight: 600; }
.claimcard__head .spacer { flex: 1 1 auto; }
.claimcard__body { padding: 28px; }
.claimcard__body h2 { font-size: 28px; margin-bottom: 8px; }
.claimcard__body > p { font-size: 15px; line-height: 1.55; color: var(--muted); font-weight: 500; margin-bottom: 22px; }

.pill { display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--pink); border-radius: 100px; padding: 6px 12px; }
.steps { display: flex; gap: 5px; align-items: center; }
.steps i { width: 26px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.25); display: block; }
.steps i.on { background: var(--pink); }

/* ── photo slots ─────────────────────────────────────────────────────── */

.photoband { position: relative; overflow: hidden; background: var(--navy); }
.photoband img, .photoband .photo__ph { display: block; width: 100%; height: 420px; object-fit: cover; }
.photoband__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(18,38,60,.92) 0%, rgba(18,38,60,.35) 55%, rgba(18,38,60,.15) 100%);
}
.photoband__overlay .shell { padding-bottom: 44px; width: 100%; }
.photoband h2 { color: #fff; font-size: 40px; max-width: 720px; margin-bottom: 10px; }
.photoband p { color: #D6E0E9; font-size: 17.5px; font-weight: 500; max-width: 640px; }

.photo { border-radius: var(--radius); overflow: hidden; background: var(--grey-100); }
.photo img, .photo .photo__ph { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Marked placeholder until real photography is dropped in. */
.photo__ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  min-height: 260px; color: #7C8FA0; font-size: 13.5px; font-weight: 700; text-align: center;
  background:
    repeating-linear-gradient(45deg, #EEF2F5 0 14px, #E7ECF1 14px 28px);
  border: 2px dashed var(--line-strong); border-radius: var(--radius);
}
.photoband .photo__ph { border-radius: 0; border: none; }

/* ── bands ───────────────────────────────────────────────────────────── */

.band { padding: 76px 0; }
.band--grey { background: var(--grey-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--pink { background: var(--pink); color: #fff; }
.band--dark { background: var(--ink); color: #fff; }
.band__intro { max-width: 700px; margin-bottom: 44px; }
.band h2 { font-size: 44px; margin-bottom: 16px; }

.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.datacard { border: 2px solid var(--line); border-radius: var(--radius); padding: 26px 22px 28px; background: #fff; transition: border-color .15s, transform .15s; }
.datacard:hover { border-color: var(--pink-line); transform: translateY(-2px); }
.datacard .ico { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--orange-wash); margin-bottom: 18px; }
.datacard h3 { font-size: 18px; margin-bottom: 8px; }
.datacard p { font-size: 14.5px; line-height: 1.55; color: var(--muted); font-weight: 500; }

.split { display: flex; gap: 64px; align-items: flex-start; }
.split__aside--narrow { width: 360px; min-width: 0; }
.split__aside { width: 400px; flex: 0 0 auto; min-width: 0; }
.split__aside p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); font-weight: 400; text-wrap: pretty; }
.split__main { flex: 1 1 auto; min-width: 0; }

.touchpoints { list-style: none; padding: 0; }
.touchpoints li { display: flex; align-items: center; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.touchpoints li:last-child { border-bottom: none; }
.touchpoints .num { font-size: 15px; font-weight: 800; color: var(--pink); width: 30px; flex-shrink: 0; }
.touchpoints h3 { font-size: 18px; margin-bottom: 4px; }
.touchpoints p { font-size: 15px; line-height: 1.5; color: var(--muted); font-weight: 500; }

.band--pink h2, .band--dark h2 { color: #fff; max-width: 700px; margin-bottom: 44px; }
.reasons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.reasons .rule { height: 4px; width: 44px; background: #fff; border-radius: 2px; margin-bottom: 20px; }
.band--dark .reasons .rule { background: var(--pink); }
.reasons h3 { font-size: 21px; color: #fff; margin-bottom: 12px; }
.reasons p { font-size: 15.5px; line-height: 1.65; font-weight: 500; }
.band--pink .reasons p { color: #FDE4F0; }
.band--dark .reasons p { color: #B4C4D2; }
.band--pink .todo { background: rgba(255,255,255,.9); color: #9A0F53; }
.band--dark .todo { background: rgba(254,243,199,.16); color: #FCD34D; }

.howcard { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 30px 28px 32px; }
.howcard h3 { font-size: 20px; margin-bottom: 10px; }
.howcard p { font-size: 15.5px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.numdot { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--pink); color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 20px; }

.faq { list-style: none; padding: 0; }
.faq li { padding: 24px 0; border-top: 1px solid var(--line); }
.faq li:last-child { border-bottom: 1px solid var(--line); }
.faq h3 { font-size: 19px; margin-bottom: 9px; }
.faq p { font-size: 15.5px; line-height: 1.6; color: var(--muted); font-weight: 500; max-width: 640px; }

.closing { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 72px 0; }
.closing h2 { font-size: 42px; color: #fff; margin-bottom: 12px; }
.closing p { font-size: 18px; line-height: 1.6; color: #FDE4F0; font-weight: 500; }
.closing .btn--primary { background: #fff; color: var(--pink); box-shadow: 0 12px 28px -10px rgba(0,0,0,.35); }
.closing .btn--primary:hover { background: var(--ink); color: #fff; }

/* ── footer ──────────────────────────────────────────────────────────── */

.foot { background: var(--ink); color: #B4C4D2; }
.foot__top { display: flex; justify-content: space-between; gap: 60px; padding: 56px 0 40px; border-bottom: 1px solid #2A4058; }
.foot__blurb { max-width: 320px; }
.foot__blurb p { font-size: 14px; line-height: 1.6; color: #93A7B8; font-weight: 500; margin-top: 16px; }
.foot__cols { display: flex; gap: 72px; }
.foot__col { display: flex; flex-direction: column; gap: 11px; }
.foot__col h2 { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 4px; }
.foot__col a { font-size: 15px; color: #D6E0E9; font-weight: 500; }
.foot__col a:hover { color: #fff; }
.foot__legal { padding: 28px 0 44px; display: flex; flex-direction: column; gap: 12px; }
.foot__legal p { font-size: 12.5px; line-height: 1.7; color: #7E92A4; font-weight: 500; max-width: 940px; }
.foot .brand { color: #fff; }
.foot .brand:hover { color: #fff; }
.foot .todo { background: rgba(254,243,199,.16); color: #FCD34D; }

/* ── step 2 ──────────────────────────────────────────────────────────── */

.progress { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.progress .steps i { background: var(--line); }
.progress .steps i.on { background: var(--pink); }
.progress span { font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--pink); }
.flow { padding: 40px 0 72px; }
.flow h1 { font-size: 46px; margin-bottom: 14px; text-wrap: pretty; }
.flow > p.lede { max-width: 640px; margin-bottom: 30px; }

.recap { display: flex; align-items: center; gap: 20px; padding: 18px 22px; background: var(--grey-50); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 24px; }
.recap dl { display: flex; gap: 34px; flex: 1 1 auto; margin: 0; flex-wrap: wrap; }
.recap dt { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.recap dd { margin: 0; font-size: 15.5px; font-weight: 700; word-break: break-word; }
.recap a { font-size: 14.5px; flex-shrink: 0; }

.qblock { background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 28px 28px 26px; margin-bottom: 16px; }
.qblock__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.qblock__num { font-size: 15px; font-weight: 800; color: var(--pink); }
.qblock h2 { font-size: 22px; }
.qblock__body { margin-left: 30px; }
.qblock__body > p { font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.qblock__body > .panel { margin-bottom: 16px; }

.sigwrap { border: 2px dashed var(--line-strong); border-radius: 12px; background: #fff; position: relative; overflow: hidden; }
.sigwrap.is-invalid { border-color: var(--danger); }
.sigwrap.has-ink { border-style: solid; border-color: var(--pink); }
#signature { touch-action: none; cursor: crosshair; display: block; width: 100%; height: 190px; background: #fff; }
.sighint { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; flex-direction: column; gap: 10px; font-size: 14.5px; color: #9AA6B2; font-weight: 600; transition: opacity .15s; }
.sigwrap.has-ink .sighint { opacity: 0; }
.sigmeta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.sigmeta dl { display: flex; gap: 40px; margin: 0; }
.sigmeta dt { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.sigmeta dd { margin: 0; font-size: 15px; font-weight: 700; }

.declaration { font-size: 13.5px; line-height: 1.7; color: var(--muted); font-weight: 500; margin-bottom: 20px; }
.flowfoot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; flex-wrap: wrap; }
.flowfoot a { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink-soft); }
.flowstatus { font-size: 13.5px; color: var(--faint); font-weight: 600; }

.formerror { display: none; gap: 12px; align-items: flex-start; padding: 16px 18px; margin-bottom: 20px; background: #FEF2F2; border: 2px solid #FECACA; border-radius: 10px; color: #991B1B; font-size: 15px; font-weight: 600; line-height: 1.55; }
.formerror.is-shown { display: flex; }

/* ── confirmation ────────────────────────────────────────────────────── */

.tickseal { display: flex; align-items: center; justify-content: center; width: 68px; height: 68px; border-radius: 50%; background: var(--pink); margin-bottom: 26px; }
.done h1 { font-size: 50px; margin-bottom: 16px; text-wrap: pretty; }
.refbar { display: flex; gap: 24px; align-items: center; padding: 22px 26px; background: var(--pink-wash); border: 2px solid var(--pink-line); border-radius: 14px; margin: 32px 0 44px; }
.refbar > div { flex: 1 1 0; min-width: 0; }
.refbar .sep { flex: 0 0 1px; align-self: stretch; background: var(--pink-line); }
.refbar dt { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #B33478; margin-bottom: 5px; }
.refbar .code { font-size: 22px; font-weight: 800; letter-spacing: .04em; color: var(--pink-dark); }
.refbar .addr { font-size: 16px; font-weight: 700; word-break: break-all; }

.timeline { list-style: none; padding: 0; margin-bottom: 44px; }
.timeline li { display: flex; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .dot { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; background: var(--pink); color: #fff; font-size: 16px; font-weight: 800; }
.timeline h3 { font-size: 19px; margin-bottom: 6px; }
.timeline p { font-size: 15.5px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.timeline .when { font-size: 14px; color: var(--faint); font-weight: 600; flex-shrink: 0; padding-top: 4px; }
.timeline .body { flex: 1 1 auto; }

.cancelrow { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; padding-top: 30px; border-top: 1px solid var(--line); }
.cancelrow h3 { font-size: 18px; margin-bottom: 5px; }
.cancelrow p { font-size: 15px; line-height: 1.6; color: var(--muted); font-weight: 500; }
.cancelrow > div { flex: 1 1 340px; }

/* ── legal documents ─────────────────────────────────────────────────── */

.doc { padding: 48px 0 76px; }
.doc h1 { font-size: 52px; margin-bottom: 14px; }
.doc__lede { font-size: 17px; line-height: 1.6; color: var(--ink-soft); font-weight: 400; max-width: 660px; margin-bottom: 8px; }
.doc__meta { font-size: 14.5px; color: var(--faint); font-weight: 600; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.doc__cols { display: flex; gap: 60px; align-items: flex-start; padding-top: 40px; }
.doc__toc { width: 232px; flex: 0 0 auto; position: sticky; top: 90px; display: flex; flex-direction: column; gap: 10px; }
.doc__toc h2 { font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 5px; }
.doc__toc a { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
.doc__toc a:hover { color: var(--pink); }
.doc__body { flex: 1 1 auto; max-width: 680px; min-width: 0; display: flex; flex-direction: column; gap: 38px; }
.doc__body h2 { font-size: 24px; margin-bottom: 14px; scroll-margin-top: 100px; }
.doc__body p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); font-weight: 400; }
.doc__body p + p { margin-top: 14px; }
.doc__body ul { display: flex; flex-direction: column; gap: 8px; }
.doc__body li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.doc__body strong { font-weight: 700; color: var(--ink); }

.lawtable { width: 100%; border-collapse: collapse; margin-top: 4px; }
.lawtable th { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); padding: 0 16px 12px; text-align: left; }
.lawtable td { font-size: 15px; line-height: 1.6; color: var(--ink-soft); padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.tablescroll { overflow-x: auto; }

/* ── responsive ──────────────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero { gap: 40px; }
  .hero h1 { font-size: 50px; }
  .claimcard { width: 390px; }
  .split { gap: 40px; }
  .split__aside { width: 330px; }
  .reasons { gap: 28px; }
}

@media (max-width: 920px) {
  :root { --pad: 22px; }
  .masthead { position: static; }
  /* Form first: this traffic arrives from an email opened on a phone. */
  .hero {
    padding: 32px 0 44px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "lead" "card" "rest";
    row-gap: 30px;
  }
  .hero h1 { font-size: 42px; }
  .hero__lead, .hero__rest { max-width: none; }
  .hero .notus { margin-top: 22px; }
  .band { padding: 52px 0; }
  .band h2, .closing h2 { font-size: 34px; }
  .photoband img, .photoband .photo__ph { height: 300px; }
  .photoband h2 { font-size: 30px; }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid3, .reasons { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .reasons { gap: 30px; }
  .split { flex-direction: column; }
  .split__aside { width: auto; }
  .closing { flex-direction: column; align-items: flex-start; gap: 26px; }
  .closing .btn { width: 100%; }
  .doc__cols { flex-direction: column; gap: 28px; }
  .doc__toc { position: static; width: auto; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
  .doc__toc h2 { width: 100%; margin-bottom: 0; }
  .doc h1 { font-size: 38px; }
  .foot__top { flex-direction: column; gap: 34px; }
  .foot__cols { gap: 44px; flex-wrap: wrap; }
  .masthead__nav > a:not(.masthead__tel) { display: none; }
  .alertbar__inner { font-size: 13px; padding: 9px 16px; line-height: 1.45; }
  .alertbar svg { display: none; }
  .alertbar strong { display: block; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 34px; }
  .flow h1, .done h1 { font-size: 32px; }
  .band h2, .closing h2 { font-size: 28px; }
  .claimcard__head, .claimcard__body { padding-left: 20px; padding-right: 20px; }
  .card, .qblock { padding: 22px 18px; }
  .qblock__body { margin-left: 0; }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .datacard { padding: 18px 15px 20px; }
  .photoband img, .photoband .photo__ph { height: 240px; }
  .photoband h2 { font-size: 24px; }
  .recap { flex-wrap: wrap; }
  .recap dl { gap: 16px 26px; }
  .refbar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .refbar .sep { display: none; }
  .timeline li { flex-wrap: wrap; }
  .timeline .when { width: 100%; padding-top: 0; padding-left: 58px; }
  .btn--ghost, .cancelrow .btn { width: 100%; }
  .trustrow li { font-size: 13.5px; padding: 10px 14px; }
}

/* ── phone: hit targets and legibility ───────────────────────────────── */

@media (max-width: 920px) {
  /* Anything tappable gets a 44px target. */
  .masthead__tel { min-height: 44px; }
  .foot__col { gap: 2px; }
  .foot__col a { min-height: 44px; display: flex; align-items: center; }
  .formnote p { font-size: 13.5px; line-height: 1.6; }
  .formnote a { display: inline-block; padding: 3px 0; }
  .doc__toc a { min-height: 40px; display: flex; align-items: center; }
  .brand { min-height: 44px; }
  .masthead__tel { flex-shrink: 0; }
  /* Inline links inside a sentence keep their flow but clear the 24px floor. */
  .split__aside p a, .faq p a, .doc__body p a { display: inline-block; padding: 4px 0; }
  .flowfoot a { min-height: 44px; }
  .recap a { min-height: 44px; display: flex; align-items: center; padding: 0 6px; }
  /* The "why it matters" line is the point of these cards — keep it. */
  .datacard p { display: block !important; font-size: 13.5px; line-height: 1.5; }
  .datacard { display: flex; flex-direction: column; }
  .datacard h3 { font-size: 16.5px; }
  .cancelrow a, .cancelrow .btn { min-height: 48px; }
  /* Bigger touch area for the signature pad. */
  #signature { height: 220px; }
}

@media print {
  .masthead, .alertbar, .foot, .btn, .doc__toc, .skip, .photoband { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  a { color: inherit; text-decoration: none; }
}


/* ── sticky mobile CTA ───────────────────────────────────────────────── */

.stickycta { display: none; }
@media (max-width: 920px) {
  .stickycta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.94);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    transform: translateY(110%); transition: transform .2s ease;
  }
  .stickycta[hidden] { display: block; }
  .stickycta.is-shown { transform: translateY(0); }
  /* keep the footer clear of the bar */
  body.has-stickycta { padding-bottom: 84px; }
}


/* Small phones: the brand lockup and a full phone number cannot both fit. */
@media (max-width: 400px) {
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 17px; }
  .brand__name small { font-size: 10px; letter-spacing: .08em; }
  .masthead__tel span { display: none; }
  .masthead__tel {
    width: 44px; justify-content: center;
    border: 1.5px solid var(--line); border-radius: 10px;
  }
}


/* Small phones: nothing may impose a minimum page width. */
@media (max-width: 920px) {
  .split__aside, .split__aside--narrow, .split__main,
  .claimcard, .doc__body, .doc__toc, .hero__lead, .hero__rest {
    width: auto; max-width: none; min-width: 0;
  }
  .claimcard__head .spacer { display: none; }
  .refbar > div, .recap dl { min-width: 0; }
  .lawtable { min-width: 0; }
}


/* Long unbreakable tokens (email addresses, URLs, placeholder values) set a
   min-content width that no amount of layout CSS can shrink. `anywhere` lets
   them break only when they genuinely do not fit. */
p, li, dd, dt, h1, h2, h3, .todo, .tick__sub, .tick__title, .refbar .addr {
  overflow-wrap: anywhere;
}
.doc__body, .split__aside, .foot__legal, .formnote, .faq, .panel, .callout {
  overflow-wrap: anywhere;
}
