/* ==========================================================================
   Adora Innovations — landing page
   Mobile-first. Brand palette sampled from the logo.
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #01184A;
  --navy-deep:   #00113C;
  --navy-soft:   #0A2461;
  --blue:        #0E59F2;
  --blue-dark:   #0440B8;
  --blue-light:  #1898F1;

  /* Neutrals */
  --ink:         #0C1730;
  --ink-2:       #40506E;
  --ink-3:       #6B7A96;
  --line:        #E2E7F0;
  --line-soft:   #EEF2F8;
  --surface:     #FFFFFF;
  --surface-2:   #F6F8FC;

  /* On dark */
  --on-dark:      #FFFFFF;
  --on-dark-2:    #B9C6E4;
  --on-dark-line: rgba(255, 255, 255, .14);

  --ok:   #0F9D6E;
  --warn: #D9822B;

  --radius:    14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(1, 24, 74, .06), 0 2px 8px rgba(1, 24, 74, .05);
  --shadow-md: 0 4px 12px rgba(1, 24, 74, .07), 0 16px 40px rgba(1, 24, 74, .09);
  --shadow-lg: 0 8px 24px rgba(1, 24, 74, .10), 0 30px 70px rgba(1, 24, 74, .14);

  --wrap:   1120px;
  --gut:    20px;
  --sect-y: 64px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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

h1, h2, h3 { margin: 0; line-height: 1.14; letter-spacing: -.022em; font-weight: 800; }
p  { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { left: 8px; }

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 16px rgba(1, 24, 74, .05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.brand img { width: auto; height: 27px; flex: none; }
.brand:hover { text-decoration: none; }

.brand-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.022em;
  color: var(--blue);
  white-space: nowrap;
}
.brand-name b { font-weight: 800; color: var(--navy); }

@media (max-width: 359px) {
  .brand-name { display: none; }
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  --btn-bg: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 10px;
  background: var(--btn-bg);
  color: #fff;
  font: inherit;
  font-weight: 650;
  font-size: 16px;
  letter-spacing: -.006em;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(1, 24, 74, .18), 0 6px 18px rgba(14, 89, 242, .26);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.btn:hover {
  background: #0B4CD8;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(1, 24, 74, .2), 0 10px 26px rgba(14, 89, 242, .32);
}
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .62; cursor: not-allowed; transform: none; }

.btn-sm    { padding: 9px 15px; font-size: 14.5px; border-radius: 9px; }
.btn-lg    { padding: 16px 30px; font-size: 17px; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 6px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 16px;
}
.btn-ghost:hover { color: var(--navy); text-decoration: none; }
.btn-ghost::after { content: " →"; margin-left: 6px; transition: transform .16s ease; }
.btn-ghost:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  padding-block: 52px 60px;
  background:
    radial-gradient(58rem 34rem at 78% -12%, rgba(14, 89, 242, .10), transparent 62%),
    radial-gradient(44rem 30rem at 4% 8%,   rgba(24, 152, 241, .09), transparent 60%),
    linear-gradient(180deg, #FBFCFE 0%, #FFFFFF 62%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-soft);
}

.hero-grid { display: grid; gap: 44px; }

.eyebrow {
  position: relative;
  margin-bottom: 20px;
  padding-left: 26px;
  color: var(--blue-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.45;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 17px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
}

.hero h1 {
  font-size: clamp(2.05rem, 7.4vw, 3.7rem);
  letter-spacing: -.032em;
  color: var(--navy);
  text-wrap: pretty;
}
.hero h1 .hl {
  color: var(--blue);
  white-space: nowrap;
}

.lede {
  margin-top: 20px;
  max-width: 34em;
  font-size: clamp(1.0625rem, 2.6vw, 1.235rem);
  line-height: 1.58;
  color: var(--ink-2);
  text-wrap: pretty;
}

.credibility {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding-left: 15px;
  border-left: 2px solid rgba(14, 89, 242, .3);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.credibility span:last-child { color: var(--ink-3); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
  margin-top: 32px;
}

.hero-note {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--ink-3);
}

/* Hero visual — illustrative report preview */

.hero-visual { position: relative; }

.report-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.report-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #FCFDFF, #F7F9FD);
}
.report-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 89, 242, .13);
  flex: none;
}
.report-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.008em;
}
.report-time {
  margin-left: auto;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.report-rows { padding: 14px 16px 6px; display: grid; gap: 12px; }

.report-row {
  display: grid;
  gap: 8px;
  padding: 12px 13px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #FCFDFF;
}
.report-row.is-best {
  border-color: rgba(15, 157, 110, .3);
  background: rgba(15, 157, 110, .045);
}

.rr-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.rr-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.rr-score {
  font-size: 15px;
  font-weight: 750;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.rr-score small { font-size: 10.5px; font-weight: 600; opacity: .65; }
.is-best .rr-score { color: var(--ok); }

.rr-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
}
.fact {
  position: relative;
  padding-left: 15px;
  font-size: 11.5px;
  font-weight: 550;
  line-height: 1.5;
  color: var(--ink-2);
  white-space: nowrap;
}
.fact::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: currentColor;
  opacity: .9;
}
.fact.ok   { color: var(--ok); }
.fact.warn { color: var(--warn); }
.fact.bad  { color: #C9453C; }

.rr-tag {
  justify-self: start;
  font-size: 11.5px;
  font-weight: 650;
  color: var(--ink-3);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 9px;
}
.rr-tag.tag-good { color: var(--ok);   background: rgba(15, 157, 110, .08); border-color: rgba(15, 157, 110, .22); }
.rr-tag.tag-warn { color: var(--warn); background: rgba(217, 130, 43, .08);  border-color: rgba(217, 130, 43, .24); }

.report-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 14px 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}
.rf-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.rf-value {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.02em;
  color: #fff;
}
.rf-badge {
  flex: none;
  font-size: 11.5px;
  font-weight: 650;
  color: #fff;
  border: 1px solid var(--on-dark-line);
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: 5px 11px;
}

.visual-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* ------------------------------------------------------------- section -- */

.section-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

.statements {
  display: grid;
  gap: 22px;
  max-width: 46rem;
  margin-top: 26px;
}
.statements p {
  font-size: clamp(1.125rem, 3.2vw, 1.4rem);
  line-height: 1.52;
  letter-spacing: -.014em;
  text-wrap: pretty;
}

/* Section 2 — Problem (dark) */

.problem {
  padding-block: var(--sect-y);
  background:
    radial-gradient(46rem 26rem at 88% 4%, rgba(14, 89, 242, .2), transparent 60%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-dark);
}
.problem .section-label { color: var(--blue-light); }
.problem .statements p { color: var(--on-dark-2); font-weight: 400; }
.problem .statements p strong { color: #fff; font-weight: 700; }
.problem .statement-punch {
  position: relative;
  margin-top: 6px;
  padding-left: 20px;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -.02em;
}
.problem .statement-punch::before {
  content: "";
  position: absolute;
  left: 0; top: .22em; bottom: .22em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
}

/* Section 3 — Solution */

.solution { padding-block: var(--sect-y); background: var(--surface); }
.solution .statements p { color: var(--ink); }

.compare {
  display: grid;
  gap: 14px;
  margin-top: 40px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #FAFBFE, #F4F7FC);
  text-align: center;
}
.compare-item { display: grid; gap: 2px; }
.compare-value {
  font-size: clamp(1.75rem, 6.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.compare-value.was {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(107, 122, 150, .5);
}
.compare-value.now { color: var(--blue); }
.compare-label {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-3);
  order: -1;
}
.compare-arrow {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  transform: rotate(90deg);
}
.compare-arrow svg { width: 17px; height: 17px; }

/* Section 4 — How it works */

.steps { padding-block: var(--sect-y); background: var(--surface-2); border-top: 1px solid var(--line-soft); }
.steps h2 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 5.6vw, 2.35rem);
  color: var(--navy);
}

.section-lede {
  max-width: 38em;
  margin-top: 12px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.step-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.step {
  position: relative;
  padding: 26px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.step:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 89, 242, .28);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 16px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px rgba(14, 89, 242, .3);
}
.step h3 {
  font-size: 1.155rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.018em;
}
.step p {
  margin-top: 9px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* Founder note */

.founder {
  padding-block: var(--sect-y);
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.founder-inner { max-width: 44rem; }

.founder blockquote {
  margin: 22px 0 0;
  padding-left: 20px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--blue-light), rgba(14, 89, 242, .12)) 1;
  display: grid;
  gap: 16px;
}
.founder blockquote p {
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--ink-2);
  text-wrap: pretty;
}
.founder .founder-punch {
  font-weight: 650;
  color: var(--navy);
  letter-spacing: -.012em;
}

.founder-sign {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding-left: 22px;
}
.founder-sign img { width: auto; height: 30px; flex: none; }
.founder-sign span {
  display: grid;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-3);
}
.founder-sign b {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}

/* Section 5 — Early access */

.cta {
  padding-block: var(--sect-y);
  background:
    radial-gradient(40rem 26rem at 10% 0%, rgba(24, 152, 241, .18), transparent 60%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #062A73 100%);
  color: var(--on-dark);
}
.cta-grid { display: grid; gap: 34px; }

.cta-copy h2 {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: #fff;
}
.cta-copy > p {
  margin-top: 14px;
  max-width: 32em;
  font-size: 1.0625rem;
  color: var(--on-dark-2);
  text-wrap: pretty;
}
.cta-points {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}
.cta-points li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--on-dark-2);
}
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .34em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(24, 152, 241, .2) no-repeat center /11px 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2359B4FF' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* Form card */

.form-card {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.004em;
  color: var(--navy);
}
.field input {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font: inherit;
  font-size: 16px; /* keeps iOS from zooming on focus */
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input::placeholder { color: #9BA8C0; }
.field input:hover { border-color: #CBD5E6; }
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 89, 242, .14);
}
.field input[aria-invalid="true"] {
  border-color: #D93B3B;
  box-shadow: 0 0 0 4px rgba(217, 59, 59, .12);
}
.field-error {
  margin-top: 7px;
  font-size: 13.5px;
  font-weight: 550;
  color: #C42B2B;
}

/* Honeypot — hidden from people, reachable by bots */
.hp {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

#submit-btn { margin-top: 4px; position: relative; }

.spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2.5px solid rgba(255, 255, 255, .38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
#submit-btn.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

.form-status { display: none; }
.form-status.is-visible {
  display: block;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 11px;
  font-size: 15px;
  line-height: 1.5;
}
.form-status.is-error {
  background: #FDF1F1;
  border: 1px solid #F3C9C9;
  color: #A32424;
}
.form-status.is-error a { color: #A32424; font-weight: 650; text-decoration: underline; }

/* Success replaces the whole form */
.form-card.is-done form,
.form-card.is-done .form-note { display: none; }

.success {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 18px 4px 10px;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: rgba(15, 157, 110, .1);
  color: var(--ok);
}
.success-icon svg { width: 26px; height: 26px; }
.success h3 { font-size: 1.32rem; color: var(--navy); }
.success p { font-size: 15.5px; color: var(--ink-2); max-width: 30em; text-wrap: pretty; }

/* -------------------------------------------------------------- footer -- */

.site-footer {
  padding-block: 34px;
  background: var(--navy-deep);
  color: var(--on-dark-2);
  border-top: 1px solid var(--on-dark-line);
}
.footer-inner {
  display: grid;
  gap: 8px;
  text-align: center;
}
.footer-brand {
  font-size: 15px;
  font-weight: 650;
  color: #fff;
  letter-spacing: -.008em;
  text-wrap: balance;
}
.footer-contact a { color: var(--blue-light); font-size: 15px; font-weight: 550; }
.footer-legal { font-size: 13.5px; color: #8698BE; }

/* ---------------------------------------------------------- responsive -- */

@media (min-width: 600px) {
  :root { --gut: 28px; --sect-y: 84px; }

  /* wide enough for the row's tag to sit beside the facts rather than under */
  .report-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 14px;
  }
  .rr-head  { grid-column: 1 / -1; }
  .rr-facts { grid-column: 1; }
  .rr-tag   { grid-column: 2; justify-self: end; }

  .compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;
    padding: 34px 30px;
  }
  .compare-arrow { transform: none; }

  .step-list { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .form-card { padding: 32px 30px; }
}

@media (min-width: 900px) {
  :root { --gut: 32px; --sect-y: 104px; }

  html { scroll-padding-top: 96px; }
  body { font-size: 17.5px; }

  .header-inner { min-height: 76px; }
  .brand { gap: 11px; }
  .brand img { height: 31px; }
  .brand-name { font-size: 19px; }

  .hero { padding-block: 76px 96px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    align-items: center;
    gap: 60px;
  }
  .hero-visual { justify-self: end; width: 100%; max-width: 460px; }

  .statements { margin-top: 30px; gap: 26px; }
  .step { padding: 30px 26px 28px; }
  .step-list { gap: 24px; }

  .cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    align-items: center;
    gap: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    gap: 6px 24px;
  }
  .footer-contact { grid-column: 2; grid-row: 1; text-align: right; }
  .footer-legal   { grid-column: 1; }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 3.55rem; }
}

/* ----------------------------------------------------------- niceties -- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .hero-visual, .btn, .btn-ghost, .form-card { display: none !important; }
  body { color: #000; }
  .problem, .cta, .site-footer { background: #fff !important; color: #000 !important; }
}
