/* ==========================================================================
   CrewSite — marketing site stylesheet
   Edit colors/spacing here; everything keys off the variables below.
   ========================================================================== */

:root {
  /* Palette: charcoal + bone + safety orange */
  --ink: #101418;          /* near-black */
  --ink-2: #171d23;        /* raised dark surface */
  --ink-3: #1f272f;        /* borders on dark */
  --bone: #f5f2ec;         /* warm off-white */
  --bone-2: #ebe6dc;       /* darker paper */
  --orange: #ff6b1a;       /* safety orange accent */
  --orange-deep: #e35407;
  --steel: #9aa7b2;        /* muted text on dark */
  --slate: #4d5a66;        /* muted text on light */
  --line: rgba(16, 20, 24, 0.12);

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --radius: 10px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-pad: clamp(72px, 10vw, 128px);
  --shadow-lift: 0 18px 40px -18px rgba(16, 20, 24, 0.35);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip; /* the tilted trades strip intentionally bleeds past the viewport */
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; }
p { margin: 0 0 1em; }

::selection { background: var(--orange); color: #fff; }

.wrap { max-width: 1180px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--orange); color: #fff; padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 14px; color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--orange);
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); margin: 12px 0 14px; }
.section-head p { font-size: 18px; color: var(--slate); margin: 0; }
.on-dark .section-head p { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 17px;
  padding: 15px 28px; border-radius: 6px; border: 2px solid transparent;
  text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px -10px rgba(255, 107, 26, 0.65);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink-3); color: var(--bone); background: transparent; }
.btn-ghost:hover { border-color: var(--bone); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--bone); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 20, 24, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-3);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--bone);
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand em { font-style: normal; color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--steel); text-decoration: none; font-weight: 600; font-size: 15px;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--bone); }
.nav-cta { padding: 10px 18px; font-size: 15px; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; color: var(--bone);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-3);
    display: none; padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px var(--gutter); font-size: 17px; }
  .nav-links .nav-cta { margin: 10px var(--gutter) 0; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--bone);
  padding: clamp(84px, 12vw, 150px) 0 clamp(72px, 9vw, 120px);
}
/* blueprint grid */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 242, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 236, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
}
/* orange glow */
.hero::after {
  content: ""; position: absolute; pointer-events: none;
  width: 720px; height: 720px; right: -260px; top: -260px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.16) 0%, transparent 65%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--ink-3); border-radius: 999px;
  padding: 7px 16px; font-size: 14px; font-weight: 600; color: var(--steel);
  margin-bottom: 28px; background: rgba(23, 29, 35, 0.6);
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.2);
}
.hero h1 {
  font-size: clamp(48px, 8.5vw, 112px);
  max-width: 15ch;
}
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--orange); }
.hero-price {
  margin: 26px 0 10px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: clamp(20px, 3vw, 28px);
}
.hero-price strong { color: var(--orange); font-weight: 800; }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px); color: var(--steel);
  max-width: 54ch; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  list-style: none; margin: 0; padding: 0;
  font-size: 15px; font-weight: 600; color: var(--steel);
}
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 16px; height: 16px; color: var(--orange); flex: none; }

/* ---------- Trades marquee strip ---------- */
.trades-strip {
  background: var(--orange); color: var(--ink);
  overflow: hidden; padding: 13px 0;
  transform: rotate(-1deg) scale(1.02);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.trades-track {
  display: flex; width: max-content; gap: 0;
  animation: marquee 32s linear infinite;
}
.trades-track span {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 17px; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.trades-track span::after { content: "▸"; margin: 0 22px; opacity: 0.55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trades-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  html { scroll-behavior: auto; }
}

/* ---------- Value props ---------- */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--bone); }
.section-paper { background: var(--bone-2); }
.section-dark { background: var(--ink); color: var(--bone); }

.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 1020px) { .props-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .props-grid { grid-template-columns: 1fr; } }

.prop-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 28px; position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.prop-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(-45deg, var(--orange) 0 12px, var(--ink) 12px 24px);
  opacity: 0; transition: opacity 0.2s ease;
}
.prop-card:hover::before { opacity: 1; }
.prop-num {
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  letter-spacing: 0.12em; color: var(--orange); margin-bottom: 16px;
}
.prop-card h3 { font-size: 26px; margin-bottom: 10px; }
.prop-card p { color: var(--slate); font-size: 16px; margin: 0; }

/* ---------- Demos ---------- */
.demos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .demos-grid { grid-template-columns: 1fr; } }

.demo-card {
  display: block; text-decoration: none; color: var(--bone);
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.demo-card:hover {
  transform: translateY(-6px); border-color: var(--orange);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.6);
}
.demo-thumb {
  aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative;
  border-bottom: 1px solid var(--ink-3);
}
.demo-thumb svg { width: 64px; height: 64px; opacity: 0.9; }
.demo-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
}
.demo-thumb .badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 12px; color: var(--ink);
  background: var(--bone); border-radius: 4px; padding: 4px 10px;
}
.demo-thumb-epoxy { background: linear-gradient(140deg, #1e3a4f, #0f1e2a 70%); }
.demo-thumb-roof { background: linear-gradient(140deg, #4f2a1e, #241009 70%); }
.demo-thumb-lawn { background: linear-gradient(140deg, #1e4f30, #0a2415 70%); }
.demo-body { padding: 22px 24px 24px; }
.demo-body h3 { font-size: 24px; margin-bottom: 6px; }
.demo-body p { color: var(--steel); font-size: 15px; margin: 0 0 14px; }
.demo-link {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 15px; color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
}
.demo-card:hover .demo-link svg { transform: translateX(4px); }
.demo-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 1020px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px 26px;
}
.step-num {
  width: 46px; height: 46px; border-radius: 8px; display: grid; place-items: center;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  margin-bottom: 18px;
}
.step:nth-child(4) .step-num { background: var(--orange); color: #fff; }
.step h3 { font-size: 24px; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 16px; margin: 0; }
.steps-note {
  margin-top: 28px; font-size: 16px; color: var(--slate);
  display: flex; align-items: center; gap: 10px; font-weight: 600;
}
.steps-note svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px; max-width: 920px; margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 14px;
  padding: 36px 32px 32px; display: flex; flex-direction: column;
  position: relative;
}
.plan-featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), 0 30px 60px -30px rgba(255, 107, 26, 0.4); }
.plan-flag {
  position: absolute; top: -14px; left: 28px;
  background: var(--orange); color: #fff; border-radius: 4px; padding: 4px 12px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 13px;
}
.plan-name { font-size: 30px; letter-spacing: 0.04em; }
.plan-for { color: var(--steel); font-size: 15px; margin: 6px 0 22px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.plan-price .amount {
  font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 1;
}
.plan-price .period { color: var(--steel); font-weight: 600; }
.plan-features { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 12px; }
.plan-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.plan-features svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 4px; }
.plan-features .lead-in { color: var(--steel); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 0.08em; }
.plan .btn { margin-top: auto; }

.pricing-terms {
  max-width: 920px; margin: 26px auto 0;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  list-style: none; padding: 0;
  color: var(--steel); font-size: 15px; font-weight: 600;
}
.pricing-terms li { display: inline-flex; align-items: center; gap: 8px; }
.pricing-terms svg { width: 16px; height: 16px; color: var(--orange); flex: none; }

/* ---------- ROI band ---------- */
.roi { position: relative; overflow: hidden; }
.roi::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(16,20,24,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,24,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}
.roi .wrap { position: relative; }
.roi-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .roi-inner { grid-template-columns: 1fr; } }
.roi h2 { font-size: clamp(40px, 6vw, 72px); max-width: 12ch; }
.roi h2 em { font-style: normal; color: var(--orange); }
.roi-copy { font-size: 18px; color: var(--slate); max-width: 46ch; }
.roi-math {
  background: var(--ink); color: var(--bone); border-radius: 14px;
  padding: 32px 30px; box-shadow: var(--shadow-lift);
}
.roi-math dl { margin: 0; display: grid; gap: 18px; }
.roi-math .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px dashed var(--ink-3); padding-bottom: 14px; }
.roi-math .row:last-child { border-bottom: 0; padding-bottom: 0; }
.roi-math dt { font-size: 15px; color: var(--steel); font-weight: 600; margin: 0; }
.roi-math dd { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 30px; white-space: nowrap; }
.roi-math .total dd { color: var(--orange); font-size: 36px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 21px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 22px; height: 22px; flex: none; color: var(--orange);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .answer { padding: 0 24px 24px; color: var(--slate); font-size: 16.5px; max-width: 68ch; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- Signup / final CTA ---------- */
.signup .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
@media (max-width: 940px) { .signup .wrap { grid-template-columns: 1fr; } }
.signup h2 { font-size: clamp(40px, 6vw, 68px); }
.signup .lede { font-size: 18px; color: var(--steel); margin: 16px 0 28px; max-width: 44ch; }
.signup-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.signup-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--bone); }
.signup-points svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 4px; }
.signup-alt { margin-top: 28px; color: var(--steel); font-size: 15px; }
.signup-alt a { color: var(--orange); font-weight: 700; text-decoration: none; }
.signup-alt a:hover { text-decoration: underline; }

.form-card {
  background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--steel); margin-bottom: 7px;
}
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: 7px;
  border: 1px solid var(--ink-3); background: var(--ink); color: var(--bone);
  font: inherit; font-size: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.25);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa7b2' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-card .btn { margin-top: 20px; }
.form-note { margin: 14px 0 0; font-size: 13.5px; color: var(--steel); }
.form-status { margin: 16px 0 0; font-weight: 600; font-size: 15.5px; display: none; }
.form-status.ok { display: block; color: #6fdc8c; }
.form-status.err { display: block; color: #ff9d66; }
.form-status a { color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0b0e11; color: var(--steel);
  border-top: 3px solid var(--orange);
  padding: 56px 0 40px; font-size: 15px;
}
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px 64px; justify-content: space-between; margin-bottom: 36px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { font-size: 24px; margin-bottom: 14px; }
.footer-brand p { margin: 0 0 10px; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 14px; color: var(--bone); margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--steel); text-decoration: none; }
.footer-col a:hover { color: var(--bone); }
.footer-legal {
  border-top: 1px solid var(--ink-3); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 13.5px;
}
.footer-address { font-size: 13.5px; color: #5c6a76; }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--ink); color: var(--bone); padding: clamp(56px, 8vw, 96px) 0; }
.legal-hero h1 { font-size: clamp(40px, 6vw, 64px); }
.legal-hero p { color: var(--steel); margin: 14px 0 0; }
.legal-body { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 80px) var(--gutter); }
.legal-body h2 { font-size: 28px; margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #2b333b; font-size: 16.5px; }
.legal-body ul { padding-left: 22px; }
.legal-updated { font-size: 14px; color: var(--slate); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.plan-paylink { margin-top: 0.75rem; text-align: center; font-size: 0.9rem; opacity: 0.85; }
.plan-paylink a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
