/* Goldiware — AI-powered ISO management software */

:root {
  --navy-975: #041027;
  --navy-950: #071a38;
  --navy-900: #0b244b;
  --navy-850: #10305f;
  --navy-800: #12396f;
  --blue-700: #1653a0;
  --blue-600: #1d66bc;
  --blue-100: #eaf2fb;
  --gold-700: #9e7420;
  --gold-600: #bc8d2d;
  --gold-500: #ddb449;
  --gold-300: #f1d789;
  --gold-100: #fbf4df;
  --red: #b31942;
  --ink: #14223a;
  --muted: #5c6d85;
  --soft: #f5f8fc;
  --line: #dbe4ee;
  --white: #ffffff;
  --green: #36b66f;
  --shadow-sm: 0 12px 35px rgba(7, 26, 56, .08);
  --shadow: 0 28px 85px rgba(7, 26, 56, .15);
  --radius: 22px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -70px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy-975);
  background: var(--gold-500);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.flag-line {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 5px;
}

.flag-line span:nth-child(1) { background: #0a3161; }
.flag-line span:nth-child(2) { background: #ffffff; }
.flag-line span:nth-child(3) { background: var(--red); }


.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(7, 26, 56, .09);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--gold-600);
}

.brand-mark svg {
  width: 43px;
  height: 43px;
}

.brand strong {
  display: block;
  font-size: 1.17rem;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #33455f;
  font-size: .89rem;
  font-weight: 600;
}

.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn):focus-visible {
  color: var(--blue-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: .2s ease;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: var(--blue-700);
  box-shadow: 0 11px 25px rgba(22, 83, 160, .22);
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  color: white;
  background: var(--navy-800);
  box-shadow: 0 16px 32px rgba(22, 83, 160, .28);
}

.btn-small {
  min-height: 43px;
  padding: 0 17px;
}

.btn-gold {
  color: var(--navy-975);
  background: var(--gold-500);
  box-shadow: 0 11px 25px rgba(221, 180, 73, .2);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  color: var(--navy-975);
  background: var(--gold-300);
}

.btn-full {
  width: 100%;
}

.text-link {
  color: var(--navy-900);
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
  color: var(--gold-700);
}

.eyebrow,
.kicker {
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .145em;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 14px;
}

.kicker.light {
  color: var(--gold-300);
}

.star {
  color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 84% 10%, rgba(221, 180, 73, .2), transparent 22%),
    radial-gradient(circle at 7% 93%, rgba(22, 83, 160, .09), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 53%, #faf6ea 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -180px;
  bottom: -220px;
  border: 66px solid rgba(22, 83, 160, .045);
  border-radius: 50%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(7, 26, 56, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 56, .035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy-975);
  font-size: clamp(3.05rem, 5.2vw, 5.35rem);
  line-height: .99;
  letter-spacing: -.057em;
}

h1 span {
  color: var(--blue-700);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #4b5e78;
  font-size: 1.11rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: .96rem;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.45;
}

.hero-product {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  color: white;
  background: var(--navy-900);
  box-shadow: 0 36px 90px rgba(4, 16, 39, .27);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.product-topbar {
  min-height: 48px;
  display: grid;
  grid-template-columns: 94px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #d3ddeb;
  font-size: .7rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.window-dots i:nth-child(1) { background: #b31942; }
.window-dots i:nth-child(2) { background: var(--gold-500); }
.window-dots i:nth-child(3) { background: #4abc78; }

.status-pill {
  padding: 5px 8px;
  border-radius: 100px;
  color: #d5f5e1;
  background: rgba(54,182,111,.12);
  font-size: .62rem;
  font-weight: 700;
}

.status-pill i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
}

.product-shell {
  min-height: 510px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.product-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 17px 0;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.08);
}

.side-brand {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 8px;
  color: var(--navy-975);
  background: var(--gold-500);
  font-weight: 800;
}

.product-sidebar i {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 5px;
}

.product-sidebar i.active {
  border-color: var(--gold-500);
  background: rgba(221,180,73,.16);
}

.product-main {
  padding: 23px;
  background:
    radial-gradient(circle at 90% 8%, rgba(29,102,188,.15), transparent 26%),
    var(--navy-900);
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.product-heading small {
  color: #8ea3c0;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.product-heading h2 {
  margin: 3px 0 0;
  color: white;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.product-heading button,
.ai-message button {
  border: 0;
  border-radius: 7px;
  color: var(--navy-975);
  background: var(--gold-500);
  font-size: .63rem;
  font-weight: 700;
  padding: 8px 10px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  gap: 12px;
}

.dashboard-grid article {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
}

.readiness-card {
  grid-row: span 2;
  padding: 17px;
}

.score-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #d9e3ef;
  font-size: .67rem;
}

.score-label b {
  color: #8096b4;
  font-size: .56rem;
  font-weight: 500;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  align-items: center;
  margin: 13px 0 3px;
}

.score-row strong {
  color: var(--gold-300);
  font-size: 3rem;
  line-height: 1;
}

.readiness-card p {
  margin: 0;
  color: #99aac1;
  font-size: .62rem;
}

.metric-card {
  min-height: 112px;
  padding: 15px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: #94a7c1;
  font-size: .61rem;
}

.metric-card strong {
  display: block;
  margin: 9px 0 4px;
  color: white;
  font-size: 1.55rem;
  line-height: 1;
}

.activity-card {
  grid-column: span 2;
  padding: 16px;
}

.card-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.card-title h3 {
  margin: 0;
  color: white;
  font-size: .76rem;
}

.card-title span {
  color: var(--gold-300);
  font-size: .55rem;
}

.workflow-row {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.workflow-row i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #8da1bd;
  font-size: .56rem;
  font-style: normal;
}

.workflow-row i.done {
  color: var(--navy-975);
  border-color: var(--green);
  background: var(--green);
}

.workflow-row i.progress {
  color: var(--navy-975);
  border-color: var(--gold-500);
  background: var(--gold-500);
}

.workflow-row p {
  margin: 0;
}

.workflow-row b,
.workflow-row small {
  display: block;
}

.workflow-row b {
  color: #dbe4f0;
  font-size: .62rem;
}

.workflow-row small {
  color: #8196b3;
  font-size: .52rem;
}

.assistant-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 11px;
  padding: 14px;
  border-color: rgba(221,180,73,.25) !important;
  background: linear-gradient(135deg, rgba(221,180,73,.13), rgba(255,255,255,.035)) !important;
}

.assistant-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221,180,73,.5);
  border-radius: 10px;
  color: var(--gold-300);
  font-size: .75rem;
  font-weight: 800;
}

.assistant-card span {
  color: var(--gold-300);
  font-size: .61rem;
  font-weight: 700;
}

.assistant-card p {
  margin: 3px 0 7px;
  color: #d8e0eb;
  font-size: .63rem;
}

.assistant-card button {
  padding: 0;
  border: 0;
  color: white;
  background: transparent;
  font-size: .56rem;
  font-weight: 700;
}

.trust-strip {
  color: white;
  background: var(--navy-975);
}

.trust-items {
  min-height: 73px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  color: #d6e1ee;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .095em;
  text-align: center;
  text-transform: uppercase;
}

.trust-items span + span {
  border-left: 1px solid rgba(255,255,255,.13);
}

.section {
  padding: 110px 0;
}

.intro-section {
  padding-bottom: 50px;
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.ai-copy h2,
.readiness-panel h2,
.training-copy h2,
.standards-heading h2,
.offerings-heading h2,
.company-copy h2,
.faq-heading h2,
.cta-section h2 {
  margin: 0;
  color: var(--navy-975);
  font-size: clamp(2.3rem, 4vw, 3.95rem);
  line-height: 1.07;
  letter-spacing: -.047em;
}

.intro-copy p,
.section-heading > p,
.offerings-heading > p {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 75px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin-bottom: 4px;
}

.platform-section {
  background: linear-gradient(to bottom, white, var(--soft));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.feature-card {
  min-height: 470px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 25px rgba(7,26,56,.025);
  transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22,83,160,.25);
  box-shadow: var(--shadow-sm);
}

.feature-card.featured {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 3%, rgba(221,180,73,.24), transparent 24%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.feature-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--blue-100);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.featured .feature-icon {
  color: var(--navy-975);
  background: var(--gold-500);
}

.feature-label {
  color: var(--gold-700);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured .feature-label {
  color: var(--gold-300);
}

.feature-card h3 {
  margin: 10px 0 13px;
  color: var(--navy-900);
  font-size: 1.33rem;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.featured h3 {
  color: white;
}

.feature-card p {
  color: var(--muted);
  font-size: .88rem;
}

.featured p {
  color: #c5d2e3;
}

.feature-card ul,
.offering-grid ul {
  margin: 23px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured ul {
  border-color: rgba(255,255,255,.12);
}

.feature-card li,
.offering-grid li {
  position: relative;
  margin: 9px 0;
  padding-left: 19px;
  color: #41536d;
  font-size: .79rem;
}

.featured li {
  color: #e1e8f2;
}

.feature-card li::before,
.offering-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.ai-section {
  color: white;
  background:
    radial-gradient(circle at 10% 15%, rgba(29,102,188,.3), transparent 25%),
    linear-gradient(135deg, var(--navy-975), var(--navy-800));
}

.ai-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 82px;
  align-items: center;
}

.ai-copy h2,
.readiness-panel h2,
.cta-section h2 {
  color: white;
}

.ai-copy > p:not(.kicker) {
  margin: 24px 0 30px;
  color: #c8d4e4;
  font-size: 1rem;
}

.ai-principles {
  display: grid;
  gap: 8px;
}

.ai-principles article {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.ai-principles article > span {
  color: var(--gold-300);
  font-size: .73rem;
  font-weight: 700;
}

.ai-principles h3 {
  margin: 0 0 5px;
  color: white;
  font-size: .99rem;
}

.ai-principles p {
  margin: 0;
  color: #aebed2;
  font-size: .79rem;
}

.ai-console {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}

.console-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.console-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--navy-975);
  background: var(--gold-500);
  font-weight: 800;
}

.console-head b,
.console-head small {
  display: block;
}

.console-head b {
  font-size: .86rem;
}

.console-head small {
  color: #9fb0c7;
  font-size: .65rem;
}

.message {
  margin-top: 17px;
  padding: 16px;
  border-radius: 14px;
}

.message > span {
  display: block;
  margin-bottom: 5px;
  font-size: .65rem;
  font-weight: 700;
}

.message p {
  margin: 0;
  font-size: .81rem;
}

.user-message {
  margin-left: 70px;
  color: var(--navy-975);
  background: var(--gold-100);
}

.user-message > span {
  color: var(--gold-700);
}

.ai-message {
  margin-right: 30px;
  border: 1px solid rgba(255,255,255,.1);
  color: #e0e8f2;
  background: rgba(255,255,255,.055);
}

.ai-message > span {
  color: var(--gold-300);
}

.draft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}

.draft-grid div {
  padding: 10px;
  border-radius: 8px;
  background: rgba(0,0,0,.15);
}

.draft-grid small,
.draft-grid b {
  display: block;
}

.draft-grid small {
  color: #8da2bd;
  font-size: .56rem;
}

.draft-grid b {
  margin-top: 2px;
  color: white;
  font-size: .68rem;
}

.console-note {
  margin: 16px 0 0;
  color: #849ab7;
  font-size: .61rem;
  text-align: center;
}

.workflow-section {
  background: var(--soft);
}

.workflow-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.workflow-stage {
  position: relative;
  min-height: 240px;
  padding: 24px 18px;
  border-radius: 14px;
  background: #f8fafd;
}

.stage-number {
  position: absolute;
  right: 12px;
  top: 10px;
  color: #c6d1de;
  font-size: .68rem;
  font-weight: 700;
}

.stage-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 10px;
  color: var(--navy-975);
  background: var(--gold-500);
  font-size: .8rem;
  font-weight: 800;
}

.workflow-stage h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 1.06rem;
}

.workflow-stage p {
  color: var(--muted);
  font-size: .76rem;
}

.workflow-stage small {
  display: block;
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--blue-700);
  font-size: .64rem;
  font-weight: 600;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  padding: 0 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 22px;
}

.automation-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.automation-grid span {
  color: var(--gold-700);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.automation-grid h3 {
  margin: 8px 0 9px;
  color: var(--navy-900);
  font-size: 1rem;
}

.automation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
}

.readiness-section {
  padding-top: 0;
  background: var(--soft);
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.readiness-panel,
.disclaimer-card {
  border-radius: 25px;
}

.readiness-panel {
  padding: 45px;
  color: white;
  background:
    radial-gradient(circle at 93% 3%, rgba(221,180,73,.2), transparent 24%),
    var(--navy-900);
}

.readiness-panel > p:not(.kicker) {
  max-width: 670px;
  margin: 23px 0;
  color: #c5d2e2;
}

.readiness-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.readiness-checks span {
  position: relative;
  padding: 11px 12px 11px 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  color: #e3eaf3;
  background: rgba(255,255,255,.04);
  font-size: .75rem;
}

.readiness-checks span::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--gold-300);
  font-weight: 800;
}

.disclaimer-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-content: start;
  padding: 42px;
  border: 1px solid #ead9a6;
  background: var(--gold-100);
}

.disclaimer-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-975);
  background: var(--gold-500);
  font-size: 1.25rem;
  font-weight: 800;
}

.disclaimer-card h3 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 1.65rem;
  line-height: 1.18;
}

.disclaimer-card p:not(.kicker) {
  margin: 0;
  color: #536178;
  font-size: .87rem;
}

.training-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 84px;
  align-items: center;
}

.training-visual {
  position: relative;
  padding: 37px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 15%, rgba(221,180,73,.21), transparent 22%),
    linear-gradient(145deg, var(--navy-950), var(--blue-700));
}

.training-visual::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 110px;
  height: 110px;
  border: 23px solid rgba(179,25,66,.11);
  border-radius: 50%;
}

.course-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.course-nav {
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  color: white;
  background: var(--navy-975);
  font-size: .7rem;
  font-weight: 700;
}

.course-nav span {
  margin-right: auto;
}

.course-nav i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.course-body {
  padding: 25px;
}

.course-progress {
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.course-progress span,
.course-progress strong,
.course-progress small {
  display: block;
}

.course-progress span {
  color: var(--gold-700);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.course-progress strong {
  margin: 8px 0 14px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.course-progress > div {
  height: 7px;
  overflow: hidden;
  border-radius: 20px;
  background: #e9eef5;
}

.course-progress > div i {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-700);
}

.course-progress small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .6rem;
}

.lesson-list {
  padding-top: 13px;
}

.lesson-list p {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding: 11px 0;
  color: #718097;
  border-bottom: 1px solid #edf1f6;
  font-size: .7rem;
}

.lesson-list b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #8c9aae;
  font-size: .62rem;
}

.lesson-list .complete b {
  color: white;
  border-color: var(--green);
  background: var(--green);
}

.lesson-list .active {
  color: var(--navy-900);
  font-weight: 700;
}

.lesson-list .active b {
  color: var(--navy-975);
  border-color: var(--gold-500);
  background: var(--gold-500);
}

.training-copy > p:not(.kicker) {
  margin: 24px 0 28px;
  color: var(--muted);
}

.training-list {
  margin-bottom: 26px;
}

.training-list article {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.training-list article > span {
  color: var(--gold-700);
  font-size: .72rem;
  font-weight: 700;
}

.training-list h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 1rem;
}

.training-list p {
  margin: 0;
  color: var(--muted);
  font-size: .79rem;
}

.standards-section {
  color: white;
  background:
    radial-gradient(circle at 95% 5%, rgba(221,180,73,.2), transparent 19%),
    linear-gradient(135deg, var(--navy-975), var(--navy-800));
}

.standards-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.standards-heading h2 {
  color: white;
}

.standards-heading > p {
  margin: 0;
  color: #c2d0e1;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.standard-grid article {
  display: grid;
  grid-template-columns: 118px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}

.standard-grid article > span {
  grid-row: 1 / 3;
  color: var(--gold-300);
  font-size: .77rem;
  font-weight: 800;
}

.standard-grid h3 {
  margin: 0 0 4px;
  color: white;
  font-size: .98rem;
}

.standard-grid p {
  margin: 0;
  color: #afbed2;
  font-size: .75rem;
}

.customers-section {
  background: var(--soft);
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.customer-grid article {
  min-height: 300px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}



.customer-grid h3 {
  margin-top: 0;
  margin-bottom: 11px;
  color: var(--navy-900);
  font-size: 1.12rem;
  line-height: 1.25;
}

.customer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.offerings-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.offerings-heading > p {
  margin-top: 20px;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.offering-grid article {
  min-height: 410px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-sm);
}

.offering-grid article:nth-child(1) {
  border-top: 5px solid var(--blue-700);
}

.offering-grid article:nth-child(2) {
  border-top: 5px solid var(--gold-500);
}

.offering-grid article:nth-child(3) {
  border-top: 5px solid var(--navy-800);
}

.offering-type {
  color: var(--gold-700);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.offering-grid h3 {
  margin: 15px 0 13px;
  color: var(--navy-900);
  font-size: 1.38rem;
}

.offering-grid p {
  color: var(--muted);
  font-size: .87rem;
}

.company-section {
  background: var(--soft);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 75px;
  align-items: center;
}

.company-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: .95rem;
}

.company-copy h2 {
  margin-bottom: 26px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.metrics div {
  padding-top: 18px;
  border-top: 3px solid var(--gold-500);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--navy-900);
  font-size: 1.9rem;
  line-height: 1;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .7rem;
}

.company-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 27px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(221,180,73,.21), transparent 23%),
    var(--blue-700);
  box-shadow: var(--shadow);
}

.company-card-label {
  display: inline-block;
  margin-bottom: 23px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: var(--gold-300);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.company-card h3 {
  margin-bottom: 22px;
  font-size: 1.9rem;
  letter-spacing: -.03em;
}

.profile-list {
  margin-bottom: 24px;
}

.profile-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .74rem;
}

.profile-list span {
  color: #c1d5ed;
}

.profile-list b {
  max-width: 55%;
  text-align: right;
}

.company-card > p {
  margin: 0;
  color: #d4e2f2;
  font-size: .8rem;
}

.faq-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.faq-list details {
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.faq-list summary {
  position: relative;
  padding: 20px 30px 20px 0;
  color: var(--navy-900);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 15px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 1.05rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 0 21px;
  color: var(--muted);
  font-size: .8rem;
}

.cta-section {
  padding: 105px 0;
  color: white;
  background:
    linear-gradient(115deg, rgba(7,26,56,.98), rgba(18,57,111,.95)),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(255,255,255,.03) 36px 37px);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: center;
}

.cta-section > .container > div > p:not(.kicker) {
  max-width: 690px;
  margin: 23px 0 28px;
  color: #c5d3e4;
  font-size: 1rem;
}






.contact-card {
  padding: 32px;
  border-radius: 22px;
  color: var(--ink);
  background: white;
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.contact-label {
  color: var(--gold-700);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 8px 0 18px;
  color: var(--navy-900);
  font-size: 1.45rem;
}

.contact-card address {
  margin-bottom: 19px;
  color: #4d5e75;
  font-size: .88rem;
  font-style: normal;
}

.contact-lines {
  margin-bottom: 23px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.contact-lines a {
  display: block;
  margin: 4px 0;
  color: var(--blue-700);
  font-size: .85rem;
  font-weight: 700;
}

.legal-notice {
  color: #c8d5e5;
  background: #06152f;
}

.legal-notice-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.legal-notice strong {
  color: var(--gold-300);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 0;
  font-size: .72rem;
}

.site-footer {
  padding: 56px 0 20px;
  color: #c2cfdf;
  background: #030d1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: .9fr 1.35fr .7fr;
  gap: 55px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand {
  color: white;
}

.footer-brand small {
  color: #7f91aa;
}

.footer-description p,
.footer-description address {
  margin: 0;
  color: #8fa0b6;
  font-size: .79rem;
  font-style: normal;
}

.footer-description address {
  margin-top: 10px;
}

.footer-links {
  display: grid;
  gap: 7px;
  justify-content: end;
  font-size: .79rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #73859e;
  font-size: .69rem;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 17px;
    font-size: .83rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero-product {
    max-width: 820px;
    transform: none;
  }

  .feature-grid,
  .offering-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-grid,
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-board {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-stage {
    min-height: 260px;
  }

  .cta-grid {
    grid-template-columns: 1fr 385px;
    gap: 50px;
  }
}

@media (max-width: 880px) {

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro-grid,
  .section-heading,
  .ai-grid,
  .readiness-grid,
  .training-grid,
  .standards-heading,
  .company-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading,
  .ai-grid,
  .training-grid,
  .standards-heading,
  .company-grid,
  .cta-grid {
    gap: 42px;
  }

  .section-heading,
  .standards-heading {
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    min-height: 445px;
  }

  .workflow-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-stage {
    min-height: auto;
  }

  .standard-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .standard-grid article {
    grid-template-columns: 118px 1fr;
  }

  .cta-grid .contact-card {
    max-width: 540px;
  }

  .footer-links {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 0;
  }

  .main-nav {
    left: 14px;
    right: 14px;
    top: 88px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 62px 0 54px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof,
  .feature-grid,
  .automation-grid,
  .readiness-checks,
  .customer-grid,
  .offering-grid,
  .metrics,
  .workflow-board {
    grid-template-columns: 1fr;
  }

  .product-topbar {
    grid-template-columns: 70px 1fr;
  }

  .product-topbar > span:nth-child(2) {
    display: none;
  }

  .product-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-sidebar {
    display: none;
  }

  .product-main {
    padding: 15px;
  }

  .product-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .readiness-card,
  .activity-card,
  .assistant-card {
    grid-column: 1 / -1;
  }

  .readiness-card {
    grid-row: auto;
  }

  .section {
    padding: 80px 0;
  }

  .intro-section {
    padding-bottom: 38px;
  }

  .intro-grid h2,
  .section-heading h2,
  .ai-copy h2,
  .readiness-panel h2,
  .training-copy h2,
  .standards-heading h2,
  .offerings-heading h2,
  .company-copy h2,
  .faq-heading h2,
  .cta-section h2 {
    font-size: 2.42rem;
  }

  .feature-card {
    min-height: auto;
  }

  .readiness-panel,
  .disclaimer-card,
  .company-card {
    padding: 29px 24px;
  }

  .disclaimer-card {
    grid-template-columns: 1fr;
  }

  .training-visual {
    padding: 19px;
  }

  .standard-grid article {
    grid-template-columns: 1fr;
  }

  .standard-grid article > span {
    grid-row: auto;
    margin-bottom: 5px;
  }

  .customer-grid article {
    min-height: auto;
  }

  .profile-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .profile-list b {
    max-width: none;
    text-align: left;
  }

  .legal-notice-inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

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


/* Layered automated-harvesting protection */
.protected-contact {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.protected-contact:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}




.protected-contact.is-revealed [data-contact-output] {
  color: var(--gold-300);
}

.protected-contact.is-busy {
  cursor: wait;
  opacity: .78;
}

.protected-contact.is-blocked {
  cursor: not-allowed;
  opacity: .65;
}










@media (max-width: 650px) {

  .footer-protected i {
    display: none;
  }
}




/* Brand assets and centred footer */
.brand-mark-image {
  width: 52px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}


.footer-centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-brand-large {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.footer-logo-image {
  width: min(100%, 470px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.footer-centered .footer-description {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.footer-centered .footer-description p,
.footer-centered .footer-description address {
  margin-inline: auto;
  text-align: center;
}

.footer-centered .footer-description address {
  margin-top: 10px;
}

.footer-centered .footer-links {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  text-align: center;
}

.footer-centered .footer-links a {
  display: inline-flex;
  justify-content: center;
}

.footer-bottom-centered {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 880px) {

  .footer-logo-image {
    width: min(100%, 390px);
  }
}

@media (max-width: 650px) {
  .brand-mark-image {
    width: 46px;
    height: 46px;
  }

  .footer-logo-image {
    width: min(100%, 320px);
  }

  .footer-centered .footer-links {
    gap: 10px 20px;
  }
}


/* Terms & Privacy Policy */
.legal-page {
  background: #f7f9fc;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 72px;
  color: white;
  background:
    radial-gradient(circle at 82% 15%, rgba(221,180,73,.22), transparent 23%),
    linear-gradient(135deg, var(--navy-975), var(--navy-800));
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to right, transparent, black 50%, black);
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 75px;
  align-items: center;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: white;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.058em;
}

.legal-hero-lead {
  max-width: 760px;
  margin: 0;
  color: #cad7e7;
  font-size: 1.08rem;
  line-height: 1.75;
}

.legal-meta-card {
  padding: 27px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 25px 65px rgba(0,0,0,.18);
}

.legal-meta-card div {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.legal-meta-card div:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-meta-card span,
.legal-meta-card strong {
  display: block;
}

.legal-meta-card span {
  color: #94aac6;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-meta-card strong {
  margin-top: 4px;
  color: white;
  font-size: .82rem;
  line-height: 1.55;
}

.legal-summary {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-summary article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.legal-summary article > span {
  color: var(--gold-700);
  font-size: .7rem;
  font-weight: 800;
}

.legal-summary h2 {
  margin: 8px 0 9px;
  color: var(--navy-900);
  font-size: 1.16rem;
}

.legal-summary p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.legal-content-section {
  padding-top: 70px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 105px;
  max-height: calc(100vh - 130px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.legal-toc > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  padding: 7px 0;
  color: #617188;
  border-top: 1px solid #edf1f5;
  font-size: .69rem;
  line-height: 1.35;
}

.legal-toc a:first-child {
  border-top: 0;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--blue-700);
}

.legal-document {
  min-width: 0;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.legal-intro-notice,
.legal-warning {
  padding: 22px;
  border: 1px solid #ead69b;
  border-radius: 13px;
  background: var(--gold-100);
}

.legal-intro-notice {
  margin-bottom: 48px;
}

.legal-intro-notice strong,
.legal-warning strong {
  color: var(--navy-900);
}

.legal-intro-notice p,
.legal-warning p {
  margin: 6px 0 0;
  color: #56647a;
  font-size: .85rem;
}

.legal-part-heading {
  margin: 70px 0 15px;
  padding: 34px;
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 95% 0%, rgba(221,180,73,.22), transparent 25%),
    var(--navy-900);
}

.legal-part-heading:first-of-type {
  margin-top: 0;
}

.legal-part-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  letter-spacing: -.045em;
}

.legal-part-heading .kicker {
  color: var(--gold-300);
}

.privacy-part {
  background:
    radial-gradient(circle at 95% 0%, rgba(221,180,73,.22), transparent 25%),
    var(--blue-700);
}

.legal-section {
  padding: 34px 0 12px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 115px;
}

.legal-part-heading + .legal-section {
  border-top: 0;
}

.legal-section h2 {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 17px;
  color: var(--navy-900);
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.legal-section h2 > span {
  flex: none;
  color: var(--gold-700);
  font-size: .78rem;
  font-weight: 800;
}

.legal-section h3 {
  margin: 25px 0 8px;
  color: var(--navy-900);
  font-size: 1rem;
}

.legal-section p,
.legal-section li {
  color: #53637a;
  font-size: .86rem;
  line-height: 1.75;
}

.legal-section p {
  margin-bottom: 14px;
}

.legal-section ul {
  margin: 14px 0 19px;
  padding-left: 22px;
}

.legal-section li {
  margin: 8px 0;
}

.legal-section strong {
  color: #2e405b;
}

.legal-uppercase p,
.legal-uppercase {
  letter-spacing: .01em;
}

.legal-warning {
  margin-bottom: 22px;
  border-color: #e9c95f;
}

.legal-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.legal-data-grid article {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8fafd;
}

.legal-data-grid h3 {
  margin: 0 0 6px;
  font-size: .88rem;
}

.legal-data-grid p {
  margin: 0;
  font-size: .75rem;
  line-height: 1.55;
}

.legal-contact-section address {
  margin: 20px 0;
  padding: 22px;
  border-left: 4px solid var(--gold-500);
  color: #42536c;
  background: var(--gold-100);
  font-size: .9rem;
  font-style: normal;
  line-height: 1.7;
}

.legal-page .footer-links a[aria-current="page"] {
  color: var(--gold-300);
}

@media (max-width: 980px) {
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid {
    gap: 38px;
  }

  .legal-meta-card {
    max-width: 520px;
  }

  .legal-toc {
    position: static;
    max-height: none;
  }

  .legal-toc nav {
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
}

@media (max-width: 700px) {
  .legal-hero {
    padding: 66px 0 58px;
  }

  .legal-summary-grid,
  .legal-data-grid,
  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 27px 21px;
    border-radius: 18px;
  }

  .legal-part-heading {
    padding: 25px 21px;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-summary {
    margin-top: 18px;
  }
}

@media print {
  .flag-line,
  .site-header,
  .legal-summary,
  .legal-toc,
  .site-footer {
    display: none !important;
  }

  .legal-hero {
    padding: 0 0 28px;
    color: black;
    background: white;
  }

  .legal-hero h1,
  .legal-part-heading h2 {
    color: black;
  }

  .legal-hero-lead,
  .legal-meta-card strong,
  .legal-meta-card span {
    color: #333;
  }

  .legal-meta-card,
  .legal-document {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .legal-layout {
    display: block;
  }

  .legal-part-heading {
    padding: 20px 0;
    color: black;
    background: white;
    border-top: 3px solid #111;
    border-bottom: 1px solid #aaa;
    border-radius: 0;
  }

  .legal-section {
    break-inside: avoid-page;
  }
}


/* Encrypted click-to-reveal contact details */
.restored-contact-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.restored-protected-contact {
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #f8fafd;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.restored-protected-contact:hover {
  transform: translateY(-1px);
  border-color: rgba(22,83,160,.28);
  background: #f2f6fb;
}

.restored-protected-contact:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}

.restored-protected-contact span {
  color: #7b899c;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.restored-protected-contact strong {
  color: var(--blue-700);
  font-size: .85rem;
  word-break: break-word;
}

.restored-protected-contact.is-unlocked strong {
  color: var(--navy-900);
}

.restored-protected-contact.is-busy {
  cursor: wait;
  opacity: .76;
}

.restored-contact-noscript {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .7rem;
}

@media (max-width: 650px) {
  .restored-protected-contact {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
