/*
Theme Name: Beacon Maritime Theme
Theme URI: https://beaconmaritime.com/
Author: Butterfly Digital
Author URI: https://butterflydigital.com/
Description: A custom WordPress theme for Beacon Maritime Training.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beacon-theme
*/

/* ==================== WORDPRESS EDITOR UTILITIES ==================== */
.has-beacon-color { color: var(--beacon) !important; }
.has-beacon-background-color { background-color: var(--beacon) !important; }
.has-signal-color { color: var(--signal) !important; }
.has-signal-background-color { background-color: var(--signal) !important; }
.has-ink-color { color: var(--ink) !important; }
.has-ink-background-color { background-color: var(--ink) !important; }
.has-paper-warm-background-color { background-color: var(--paper-warm) !important; }

.has-mega-font-size { font-size: var(--h-mega) !important; font-family: var(--f-display) !important; font-weight: 600; }
.has-huge-font-size { font-size: var(--h-1) !important; font-family: var(--f-display) !important; font-weight: 600; }
.has-xlarge-font-size { font-size: var(--h-2) !important; font-family: var(--f-display) !important; font-weight: 600; }
.has-micro-font-size { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* Styles for register_block_style */
.is-style-primary .wp-block-button__link { background: var(--signal); color: var(--ink); border-radius: 6px; font-weight: 600; }
.is-style-ghost .wp-block-button__link { background: transparent; color: white; border: 1px solid rgba(255,255,255,.3); }
.is-style-paper-warm { background-color: var(--paper-warm); padding: 96px 0; }
.is-style-ink-section { background-color: var(--ink); color: white; padding: 96px 0; }

/* --- CSS from index.html --- */
:root {
  /* PALETTE — Beacon brand blue #0071C1 sampled from logo */
  --beacon:        #0071C1;
  --beacon-deep:   #005594;
  --beacon-darker: #003F70;
  --beacon-50:     #E8F1F8;
  --beacon-100:    #D2E5F2;
  --beacon-tint:   #F4F9FC;

  /* Dark — used selectively for premium contrast */
  --ink:           #0A1626;
  --abyss:         #050D17;
  --hull:          #15293F;
  --steel:         #2C4259;
  --waterline:     #5A7591;

  /* Light */
  --paper:         #FAFAF7;
  --paper-warm:    #F2EFE7;

  /* Signal — CTA only */
  --signal:        #F2A024;
  --signal-hot:    #DE8B14;

  /* Type — only Inter + Montserrat + Poppins (no cursive, no decorative) */
  --f-display: 'Montserrat', ui-sans-serif, system-ui, sans-serif;
  --f-serif:   'Poppins', ui-sans-serif, system-ui, sans-serif;
  --f-body:    'Inter', ui-sans-serif, system-ui, sans-serif;
  --f-mono:    'Inter', ui-monospace, 'SF Mono', monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--beacon); color: white; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* TYPE */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.h-mega { font-size: clamp(40px, 6.4vw, 96px); }
.h-1    { font-size: clamp(32px, 5.4vw, 72px); }
.h-2    { font-size: clamp(26px, 3.8vw, 48px); }
.h-3    { font-size: clamp(22px, 2.4vw, 30px); }

.micro {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: 6px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--signal);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255,255,255,.45) inset,
    0 -1px 0 rgba(176,99,17,.4) inset,
    0 8px 22px -10px rgba(242,160,36,.55);
}
.btn--primary:hover {
  background: var(--signal-hot);
  box-shadow:
    0 1px 0 rgba(255,255,255,.45) inset,
    0 -1px 0 rgba(176,99,17,.4) inset,
    0 14px 30px -12px rgba(242,160,36,.7);
}
.btn--brand {
  background: var(--beacon);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 8px 22px -10px rgba(0,113,193,.6);
}
.btn--brand:hover { background: var(--beacon-deep); }
.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.6); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10,22,38,.22);
}
.btn--ghost-dark:hover { background: rgba(10,22,38,.04); border-color: var(--ink); }
.btn--lg { padding: 20px 28px; font-size: 16px; }

/* SECTION LABELS */
.sec-label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 32px;
}
.sec-label .sym { color: var(--beacon); font-weight: 600; }
.sec-label .num { color: var(--ink); font-weight: 600; }
.sec-label .rule { flex: 1; height: 1px; background: currentColor; opacity: .3; max-width: 200px; }
.sec-label.dark { color: rgba(255,255,255,.6); }
.sec-label.dark .num { color: white; }
.sec-label.dark .sym { color: var(--signal); }

section { padding: 96px 0; position: relative; }
@media (min-width: 880px) { section { padding: 128px 0; } }

/* Section header — headline left, lede right at desktop */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.section-head h2 {
  color: var(--ink);
  max-width: 18ch;
}
.section-head h2 .serif { color: var(--beacon); }
.section-head p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.6;
  max-width: 38ch;
}

/* ==================== HEADER ==================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10,22,38,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand img.logo { height: 44px; width: auto; }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--steel);
  transition: color .18s var(--ease);
  position: relative;
  font-weight: 500;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  height: 2px;
  width: 0;
  background: var(--beacon);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: none;
  align-items: center;
  gap: 16px;
}
.nav-right .phone {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--steel);
}
.nav-right .phone strong { color: var(--ink); font-weight: 600; }

/* Mobile burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .15s var(--ease);
}
.burger:hover { background: rgba(10,22,38,.05); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-right { display: inline-flex; }
  .burger { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-head img { height: 40px; filter: brightness(0) invert(1); }
.menu-close {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 4px;
  transition: background .15s var(--ease);
}
.menu-close:hover { background: rgba(255,255,255,.06); }

.mobile-menu-body {
  flex: 1;
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu-body a.mlink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .15s var(--ease), padding-left .2s var(--ease);
}
.mobile-menu-body a.mlink:hover { color: var(--signal); padding-left: 8px; }
.mobile-menu-body a.mlink .num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.4);
}

.mobile-menu-foot {
  padding: 24px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-foot .phone {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-bottom: 4px;
}
.mobile-menu-foot .phone strong { color: white; font-size: 18px; display: block; margin-top: 2px; letter-spacing: 0.04em; }
.mobile-menu-foot .btn { width: 100%; justify-content: center; }
/* ==================== PAGE-SPECIFIC COMPONENTS ==================== */

/* Image Split & Frames */
.img-split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
@media (min-width: 880px) { .img-split { grid-template-columns: 1fr 1fr; gap: 48px; } .img-split.flip .img-frame { order: 2; } }
.img-frame { position: relative; border-radius: 10px; overflow: hidden; min-height: 360px; background: var(--ink); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.img-frame:hover img { transform: scale(1.04); }

/* Curriculum Grid */
.curr-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 56px; }
@media (min-width: 720px) { .curr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .curr-grid { grid-template-columns: repeat(3, 1fr); } }
.curr-card { background: white; border: 1px solid rgba(10,22,38,.1); border-radius: 8px; padding: 32px; transition: transform .2s var(--ease); }
.curr-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -10px rgba(10,22,38,.12); }
.curr-card h4 { font-family: var(--f-display); font-weight: 700; font-size: 20px; margin-bottom: 12px; }

/* Travel Tax Calculator */
.calc-section { background: var(--paper-warm); }
.calc { display: grid; grid-template-columns: 1fr; gap: 40px; background: white; padding: 40px; border-radius: 12px; border: 1px solid rgba(10,22,38,.1); margin-top: 48px; }
@media (min-width: 880px) { .calc { grid-template-columns: 1fr 1fr; } }
.calc-total { background: var(--beacon); color: white; padding: 32px; border-radius: 8px; text-align: center; }
.calc-total span { display: block; font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; margin-bottom: 8px; opacity: .8; }
.calc-total .v { font-family: var(--f-display); font-size: 48px; font-weight: 700; opacity: 1; }

/* Enrollment Card */
.enroll-card { background: white; border: 1px solid rgba(10,22,38,.12); border-radius: 12px; padding: 48px; display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; overflow: hidden; }
@media (min-width: 880px) { .enroll-card { grid-template-columns: 1fr auto; } }
.enroll-card::after { content: 'USCG APPROVED'; position: absolute; top: 20px; right: -40px; background: var(--signal); color: var(--ink); padding: 8px 60px; font-family: var(--f-mono); font-size: 10px; font-weight: 700; transform: rotate(45deg); }

/* Stage / How It Works */
.stage-block { padding: 72px 0; border-bottom: 1px solid rgba(10,22,38,.1); }
.stage-num { font-family: var(--f-display); font-weight: 700; font-size: clamp(72px, 10vw, 120px); letter-spacing: -0.04em; color: var(--beacon-50); -webkit-text-stroke: 1px var(--beacon); line-height: .85; }
.stage-tag { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--beacon); font-weight: 600; }

/* Form Elements */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; font-weight: 600; color: var(--steel); }
.form-field input[type="range"] { -webkit-appearance: none; height: 6px; background: var(--beacon-100); border-radius: 3px; }
.form-field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; background: var(--beacon); border-radius: 50%; border: 3px solid white; cursor: pointer; }

/* Pain Cards (Fleet) */
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain-card { background: white; border: 1px solid rgba(10,22,38,.1); border-left: 3px solid #B33A11; border-radius: 6px; padding: 28px; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  color: white;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(580px, 78vh, 740px);
  display: flex;
  align-items: stretch;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--beacon-darker));
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.6) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10,22,38,.95) 0%, rgba(10,22,38,.78) 40%, rgba(0,63,112,.65) 100%),
    linear-gradient(180deg, rgba(10,22,38,.5) 0%, transparent 30%, rgba(10,22,38,.7) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 95%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter) 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 12px;
}
.hero-top .right { display: inline-flex; gap: 22px; flex-wrap: wrap; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 80px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--signal);
}
h1.hero-headline {
  color: white;
  max-width: 18ch;
}
h1.hero-headline .row { display: block; }
h1.hero-headline .strike {
  position: relative;
  display: inline-block;
  color: rgba(255,255,255,.65);
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--signal);
  text-underline-offset: 0;
  -webkit-text-decoration: line-through 4px var(--signal);
}
h1.hero-headline .accent {
  color: var(--signal);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-lede {
  margin-top: 28px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 50ch;
}
.hero-lede strong { color: white; font-weight: 500; }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.hero-cta .btn { width: 100%; justify-content: center; }
@media (min-width: 560px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
  .hero-cta .btn { width: auto; }
}

/* ==================== DATA PLATE ==================== */
.data-plate {
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10,22,38,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 28px 24px;
  border-radius: 4px;
}
.data-plate::before {
  content: '';
  position: absolute;
  top: -1px; left: 28px;
  width: 56px; height: 6px;
  background: var(--signal);
}
.dp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.dp-head .doc { color: white; font-weight: 600; }
.dp-rows { display: flex; flex-direction: column; gap: 14px; }
.dp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 13px;
}
.dp-row .lbl {
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  position: relative;
  padding-left: 12px;
  font-weight: 500;
}
.dp-row .lbl::before {
  content: '';
  position: absolute;
  top: 9px; left: 0;
  width: 5px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.dp-row .val { color: white; font-weight: 500; text-align: right; letter-spacing: 0.01em; font-size: 13px; }
.dp-row .val.amber { color: var(--signal); font-weight: 600; }
.dp-foot {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.dp-foot .stamp {
  border: 1px solid var(--signal);
  color: var(--signal);
  padding: 5px 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* Trust strip */
.trust {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}
@media (min-width: 720px) { .trust { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.trust-item { display: flex; align-items: center; gap: 14px; }
@media (min-width: 720px) {
  .trust-item { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.12); }
  .trust-item:first-child { padding-left: 0; border-left: 0; }
}
.trust-item .ti-icon {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--signal);
}
.trust-item .ti-text {
  font-family: var(--f-mono);
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.trust-item .ti-text strong { color: white; font-weight: 600; display: block; }

/* ==================== COMPARISON ==================== */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare-col-head {
  padding: 20px 28px;
  background: var(--paper);
  border-bottom: 1px solid rgba(10,22,38,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.compare-col-head h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.compare-col-head .tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.compare-col.trad .compare-col-head .tag { color: #B33A11; }
.compare-col.bmt .compare-col-head { background: var(--beacon-50); }
.compare-col.bmt .compare-col-head .tag { color: var(--beacon-deep); }
@media (min-width: 800px) {
  .compare-col.bmt .compare-col-head { border-left: 1px solid rgba(10,22,38,.15); }
}
.compare-col { display: flex; flex-direction: column; }
.compare-row {
  padding: 28px;
  border-bottom: 1px solid rgba(10,22,38,.1);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  background: var(--paper);
}
.compare-col.bmt .compare-row { background: var(--beacon-tint); }
@media (min-width: 800px) {
  .compare-col.bmt .compare-row { border-left: 1px solid rgba(10,22,38,.15); }
}
.compare-row:last-child { border-bottom: 0; }
.compare-row .icon {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
}
