

:root {
  --frost: #f2f7fb;
  --frost-deep: #dfeaf3;
  --frost-edge: #c9dceb;
  --ice: #a9cbe0;
  --glacier: #2d6a8e;
  --glacier-deep: #1d4d69;
  --ink: #12303f;
  --ink-quiet: #4d6a79;
  --paper: #ffffff;
  --ember: #c9482e;
  --ember-deep: #a4351f;
  --ember-mist: #f6e2dc;
  --hairline: #d6e3ec;
  --shell: min(92%, 1180px);
}


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

* {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  background: var(--frost);
  color: var(--ink);
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
}

h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.1rem);
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.08rem;
}

p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--glacier);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ember);
  text-decoration: underline;
}


.area-body p a,
.area-body li a,
.pay-note a,
.field-note a,
.consent-line a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}



.tick {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glacier);
}

.figure-mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}



.primary-action {
  --action-face: var(--ember);
  --action-ink: #ffffff;
  --action-pad: 0.85rem 1.7rem;

  display: inline-block;
  background: var(--action-face);
  color: var(--action-ink);
  border: none;
  border-radius: 10px;
  padding: var(--action-pad);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(18, 48, 63, 0.28);
  transition: 0.1s;
}

.primary-action:hover {
  --action-face: var(--ember-deep);
  color: #ffffff;
  text-decoration: none;
}

.primary-action:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(18, 48, 63, 0.28);
}

.prominent-action {
  --action-pad: 1.05rem 2.3rem;
  font-size: 1.08rem;
  width: 100%;
}

.quiet-action {
  --action-face: var(--paper);
  --action-ink: var(--ink);
  display: inline-block;
  background: var(--action-face);
  color: var(--action-ink);
  border: 1px solid var(--frost-edge);
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(18, 48, 63, 0.12);
  transition: 0.1s;
}

.quiet-action:hover {
  --action-ink: var(--glacier-deep);
  text-decoration: none;
}

.quiet-action:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(18, 48, 63, 0.12);
}



.input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.text-field {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--frost-edge);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.text-field:focus {
  outline: none;
  border-color: var(--glacier);
  box-shadow: 0 0 0 3px rgba(45, 106, 142, 0.25);
}

.validation-message {
  color: var(--ember-deep);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
}

.field-note {
  font-size: 0.85rem;
  color: var(--ink-quiet);
  margin: 0.5rem 0 0;
}



.price-now {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
}

.price-was {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: var(--ink-quiet);
  text-decoration: line-through;
  margin-left: 0.75rem;
}

.cut-flag {
  display: inline-block;
  background: var(--ember-mist);
  color: var(--ember-deep);
  border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stock-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--glacier-deep);
}

.stock-mark::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f8f5b;
}
