:root {
  /* ---- Base palette ---- */
  --gp-badge-navy: #14213D;   /* dominant brand color: backgrounds, headlines */
  --gp-duty-slate: #3A4A6B;   /* secondary panels, subheads, borders */
  --gp-signal-amber: #FCA311; /* accent: CTAs, path line, highlights (~10% of a layout) */
  --gp-rollcall-white: #F7F8FA; /* page backgrounds */
  --gp-graphite: #1A1F2B;     /* body text */
  --gp-steel: #C9CED8;        /* dividers, disabled states */
  --gp-alert-red: #C1272D;    /* errors and critical flags only */
  --gp-go-green: #1F8A5B;     /* success / positive delta (functional only) */

  /* Tints/shades for UI depth (derived, use sparingly) */
  --gp-navy-800: #0C1220;     /* deepest, product surfaces */
  --gp-navy-700: #111c30;
  --gp-navy-600: #16233b;
  --gp-slate-300: #9aa4bd;    /* muted text on navy */
  --gp-white: #FFFFFF;
  --gp-cloud: #EEF1F5;        /* subtle panel fill on white */

  /* ---- Semantic aliases ---- */
  --text-heading: var(--gp-badge-navy);
  --text-body: var(--gp-graphite);
  --text-muted: var(--gp-duty-slate);
  --text-on-dark: var(--gp-rollcall-white);
  --text-on-dark-muted: var(--gp-slate-300);
  --text-accent: var(--gp-signal-amber);

  --surface-page: var(--gp-rollcall-white);
  --surface-card: var(--gp-white);
  --surface-panel: var(--gp-cloud);
  --surface-dark: var(--gp-badge-navy);
  --surface-darkest: var(--gp-navy-800);

  --border-default: var(--gp-steel);
  --border-dark: var(--gp-duty-slate);

  --accent: var(--gp-signal-amber);
  --accent-ink: var(--gp-badge-navy); /* text/icon color that sits on amber */

  --success: var(--gp-go-green);
  --danger: var(--gp-alert-red);
}

:root {
  /* ---- Families ---- */
  --font-display: "Barlow Condensed", "Archivo Black", system-ui, sans-serif; /* headlines */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;                 /* body + data */
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;                /* metadata, code */

  /* ---- Weights ---- */
  --fw-regular: 400;   /* @kind font */
  --fw-medium: 500;    /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold: 700;      /* @kind font */
  --fw-extrabold: 800; /* @kind font */

  /* ---- Display scale (Barlow Condensed, uppercase for H1) ---- */
  --text-h1: 700 clamp(44px, 6vw, 78px)/0.95 var(--font-display);
  --text-h2: 600 clamp(30px, 4vw, 44px)/1.05 var(--font-display);
  --text-h3: 600 24px/1.1 var(--font-display);
  --text-eyebrow: 600 14px/1.2 var(--font-display); /* uppercase, tracked */

  /* ---- Body scale (Inter) ---- */
  --text-lead: 400 19px/1.6 var(--font-body);
  --text-base: 400 16px/1.6 var(--font-body);
  --text-sm: 400 14px/1.55 var(--font-body);
  --text-xs: 500 12px/1.4 var(--font-body);

  /* ---- Data / hero numbers (Inter Bold, oversized) ---- */
  --text-stat: 800 clamp(44px, 5vw, 64px)/1 var(--font-body);
  --text-stat-sm: 800 30px/1 var(--font-body);

  /* ---- Tracking ---- */
  --track-wordmark: 2.5px;
  --track-eyebrow: 2px;
  --track-label: 1.5px;
}

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ---- Section rhythm ---- */
  --section-pad-y: clamp(64px, 9vw, 96px);
  --section-pad-x: clamp(24px, 5vw, 64px);
  --container-max: 1200px;

  /* ---- Radii (2px on buttons, 4px on cards — hard brand limit) ---- */
  --radius-button: 2px;
  --radius-card: 4px;
  --radius-panel: 6px;
  --radius-pill: 100px;
}

:root {
  /* ---- Shadows (nothing heavier than 2px blur on cards — brand rule) ---- */
  --shadow-card: 0 1px 2px rgba(20, 33, 61, 0.06);
  --shadow-raised: 0 2px 2px rgba(20, 33, 61, 0.10);
  --shadow-panel: 0 24px 60px rgba(12, 18, 32, 0.22); /* modals / floating product panels only */

  /* ---- Borders ---- */
  --border-hairline: 1px solid var(--border-default);
  --border-accent-left: 6px solid var(--accent); /* confidentiality band */

  /* ---- The path line ---- */
  --pathline-weight: 3px;
  --pathline-color: var(--accent);
  --pathline-track: var(--gp-duty-slate);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-reveal: 0.7s; /* @kind other */
  --dur-draw: 2.4s; /* @kind other */

  /* ---- Focus ring ---- */
  --focus-ring: 0 0 0 3px rgba(252, 163, 17, 0.45);
}

/* Guardian Path Design System — global entry point.
   Consumers link this one file. Keep it @import lines only. */
/* Webfonts. Barlow Condensed (display) + Inter (body/data).
   Sourced from Google Fonts. If you have licensed binaries, swap these
   @import lines for local @font-face rules pointing at assets/fonts/. */
/* vietnamese */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/0c2f504d-e730-42c9-ae29-b9d585d3b147.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/5e6b9d9a-ee50-4414-8612-5afb42a727aa.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/eda42706-cec7-41ca-b8c5-6ce889572169.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/f71a03f5-7fd5-45d1-8888-b088bfcafd40.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/fb13a3ee-5ac6-45a0-af47-f585baaec670.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/badf3467-0d92-4317-b8d2-5b1869369220.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/86fc3136-3587-45bd-96f8-833a24fd262b.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/2c0face4-f019-4b44-9c69-6dd1eac4d105.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/5125ab05-3198-4694-ade6-55af893234a3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/4c701f28-c0e2-4072-8976-ebea6285c284.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/c956b28c-8f3a-453e-98bd-364cd5b5be09.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/a86378af-55ca-40e0-a975-e2db12d30ffc.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/9fe77338-ea36-491e-9f50-cebfd77e2b79.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/4e07d868-b04a-4222-87fe-5862cbf5860c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/053bf1c0-23bc-4b66-b7c2-9c7b8fe14e29.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/08830819-ee3e-4294-b648-d231a31f9e73.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/4c701f28-c0e2-4072-8976-ebea6285c284.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/c956b28c-8f3a-453e-98bd-364cd5b5be09.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/a86378af-55ca-40e0-a975-e2db12d30ffc.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/9fe77338-ea36-491e-9f50-cebfd77e2b79.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/4e07d868-b04a-4222-87fe-5862cbf5860c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/053bf1c0-23bc-4b66-b7c2-9c7b8fe14e29.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/08830819-ee3e-4294-b648-d231a31f9e73.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/4c701f28-c0e2-4072-8976-ebea6285c284.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/c956b28c-8f3a-453e-98bd-364cd5b5be09.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/a86378af-55ca-40e0-a975-e2db12d30ffc.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/9fe77338-ea36-491e-9f50-cebfd77e2b79.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/4e07d868-b04a-4222-87fe-5862cbf5860c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/053bf1c0-23bc-4b66-b7c2-9c7b8fe14e29.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/08830819-ee3e-4294-b648-d231a31f9e73.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/4c701f28-c0e2-4072-8976-ebea6285c284.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/c956b28c-8f3a-453e-98bd-364cd5b5be09.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/a86378af-55ca-40e0-a975-e2db12d30ffc.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/9fe77338-ea36-491e-9f50-cebfd77e2b79.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/4e07d868-b04a-4222-87fe-5862cbf5860c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/053bf1c0-23bc-4b66-b7c2-9c7b8fe14e29.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/08830819-ee3e-4294-b648-d231a31f9e73.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/4c701f28-c0e2-4072-8976-ebea6285c284.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/c956b28c-8f3a-453e-98bd-364cd5b5be09.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/a86378af-55ca-40e0-a975-e2db12d30ffc.woff2") format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/9fe77338-ea36-491e-9f50-cebfd77e2b79.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/4e07d868-b04a-4222-87fe-5862cbf5860c.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/053bf1c0-23bc-4b66-b7c2-9c7b8fe14e29.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/08830819-ee3e-4294-b648-d231a31f9e73.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  /* ---- Base palette ---- */
  --gp-badge-navy: #14213D;   /* dominant brand color: backgrounds, headlines */
  --gp-duty-slate: #3A4A6B;   /* secondary panels, subheads, borders */
  --gp-signal-amber: #FCA311; /* accent: CTAs, path line, highlights (~10% of a layout) */
  --gp-rollcall-white: #F7F8FA; /* page backgrounds */
  --gp-graphite: #1A1F2B;     /* body text */
  --gp-steel: #C9CED8;        /* dividers, disabled states */
  --gp-alert-red: #C1272D;    /* errors and critical flags only */
  --gp-go-green: #1F8A5B;     /* success / positive delta (functional only) */

  /* Tints/shades for UI depth (derived, use sparingly) */
  --gp-navy-800: #0C1220;     /* deepest, product surfaces */
  --gp-navy-700: #111c30;
  --gp-navy-600: #16233b;
  --gp-slate-300: #9aa4bd;    /* muted text on navy */
  --gp-white: #FFFFFF;
  --gp-cloud: #EEF1F5;        /* subtle panel fill on white */

  /* ---- Semantic aliases ---- */
  --text-heading: var(--gp-badge-navy);
  --text-body: var(--gp-graphite);
  --text-muted: var(--gp-duty-slate);
  --text-on-dark: var(--gp-rollcall-white);
  --text-on-dark-muted: var(--gp-slate-300);
  --text-accent: var(--gp-signal-amber);

  --surface-page: var(--gp-rollcall-white);
  --surface-card: var(--gp-white);
  --surface-panel: var(--gp-cloud);
  --surface-dark: var(--gp-badge-navy);
  --surface-darkest: var(--gp-navy-800);

  --border-default: var(--gp-steel);
  --border-dark: var(--gp-duty-slate);

  --accent: var(--gp-signal-amber);
  --accent-ink: var(--gp-badge-navy); /* text/icon color that sits on amber */

  --success: var(--gp-go-green);
  --danger: var(--gp-alert-red);
}

:root {
  /* ---- Families ---- */
  --font-display: "Barlow Condensed", "Archivo Black", system-ui, sans-serif; /* headlines */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;                 /* body + data */
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;                /* metadata, code */

  /* ---- Weights ---- */
  --fw-regular: 400;   /* @kind font */
  --fw-medium: 500;    /* @kind font */
  --fw-semibold: 600;  /* @kind font */
  --fw-bold: 700;      /* @kind font */
  --fw-extrabold: 800; /* @kind font */

  /* ---- Display scale (Barlow Condensed, uppercase for H1) ---- */
  --text-h1: 700 clamp(44px, 6vw, 78px)/0.95 var(--font-display);
  --text-h2: 600 clamp(30px, 4vw, 44px)/1.05 var(--font-display);
  --text-h3: 600 24px/1.1 var(--font-display);
  --text-eyebrow: 600 14px/1.2 var(--font-display); /* uppercase, tracked */

  /* ---- Body scale (Inter) ---- */
  --text-lead: 400 19px/1.6 var(--font-body);
  --text-base: 400 16px/1.6 var(--font-body);
  --text-sm: 400 14px/1.55 var(--font-body);
  --text-xs: 500 12px/1.4 var(--font-body);

  /* ---- Data / hero numbers (Inter Bold, oversized) ---- */
  --text-stat: 800 clamp(44px, 5vw, 64px)/1 var(--font-body);
  --text-stat-sm: 800 30px/1 var(--font-body);

  /* ---- Tracking ---- */
  --track-wordmark: 2.5px;
  --track-eyebrow: 2px;
  --track-label: 1.5px;
}

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* ---- Section rhythm ---- */
  --section-pad-y: clamp(64px, 9vw, 96px);
  --section-pad-x: clamp(24px, 5vw, 64px);
  --container-max: 1200px;

  /* ---- Radii (2px on buttons, 4px on cards — hard brand limit) ---- */
  --radius-button: 2px;
  --radius-card: 4px;
  --radius-panel: 6px;
  --radius-pill: 100px;
}

:root {
  /* ---- Shadows (nothing heavier than 2px blur on cards — brand rule) ---- */
  --shadow-card: 0 1px 2px rgba(20, 33, 61, 0.06);
  --shadow-raised: 0 2px 2px rgba(20, 33, 61, 0.10);
  --shadow-panel: 0 24px 60px rgba(12, 18, 32, 0.22); /* modals / floating product panels only */

  /* ---- Borders ---- */
  --border-hairline: 1px solid var(--border-default);
  --border-accent-left: 6px solid var(--accent); /* confidentiality band */

  /* ---- The path line ---- */
  --pathline-weight: 3px;
  --pathline-color: var(--accent);
  --pathline-track: var(--gp-duty-slate);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --dur-reveal: 0.7s; /* @kind other */
  --dur-draw: 2.4s; /* @kind other */

  /* ---- Focus ring ---- */
  --focus-ring: 0 0 0 3px rgba(252, 163, 17, 0.45);
}

