/* ============================================================
   HEADLANDS CONSOLE — landing v3 "premium light"
   Warm paper white · deep sea-teal · ink · gold details.
   The dark control surface lives in the PRODUCT SHOTS.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* palette drawn from the Headland brand art: parchment sky, navy wordmark,
     bay blues, terracotta clouds */
  --bg:      #f5e9cc;   /* parchment */
  --bg-2:    #eeddb3;   /* deeper sand section */
  --surface: #fdf8ea;   /* cream card */
  --ink:     #1c2e49;   /* wordmark navy */
  --muted:   #5a6474;
  --faint:   #5f6878;   /* AA on parchment for small text */
  --line:    #ddcda3;
  --line-2:  #c9b88c;
  --teal:    #2e5f8e;   /* bay blue — text/links */
  --teal-br: #3a70a4;   /* buttons */
  --teal-bg: rgba(46,95,142,.08);
  --gold:    #a2511f;   /* terracotta, darkened for AA small text */
  --shadow-sm: 0 1px 2px rgba(28,46,73,.05), 0 3px 10px rgba(28,46,73,.05);
  --shadow-lg: 0 1px 3px rgba(28,46,73,.06), 0 14px 40px rgba(28,46,73,.10);
  --radius: 10px;
  --font-d: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-b: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-m: "JetBrains Mono", ui-monospace, Consolas, monospace;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 84px; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font-b); font-size: 16.5px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
::selection { background: rgba(58,112,164,.22); }
:focus-visible { outline: 2px solid var(--teal-br); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 800px; }
.center { text-align: center; }
a { color: var(--teal); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; z-index: 99; background: var(--surface); padding: 8px 14px; border-radius: 8px; box-shadow: var(--shadow-sm); }

.eyebrow {
  font-family: var(--font-m); font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
h1, h2, h3 { font-family: var(--font-d); letter-spacing: -.015em; color: var(--ink); }
.section-title { font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.12; margin-bottom: 18px; }
.lead { font-size: clamp(17px, 2vw, 19.5px); color: var(--muted); max-width: 62ch; }
.center .lead, .lead.center { margin-left: auto; margin-right: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block; border-radius: 12px; padding: 15px 30px;
  font-family: var(--font-d); font-size: 16px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .15s, border-color .15s, transform .12s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-br), var(--teal));
  color: #fff; box-shadow: 0 6px 20px rgba(46,95,142,.28);
}
.btn-primary:hover { box-shadow: 0 8px 26px rgba(46,95,142,.38); transform: translateY(-1px); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,233,204,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-name { font-family: var(--font-d); font-weight: 700; font-size: 19px; letter-spacing: -.01em; }
.brand-sub { color: var(--teal); font-weight: 700; }
.site-nav { margin-left: auto; display: flex; gap: 28px; align-items: center; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; }
.site-nav a:hover { color: var(--teal); }
.header-cta { padding: 10px 20px; font-size: 14.5px; border-radius: 10px; }
.nav-toggle, .nav-toggle-btn { display: none; }
.site-nav .nav-cta { display: none; }

@media (max-width: 860px) {
  .nav-toggle-btn {
    display: inline-flex; margin-left: auto; cursor: pointer; font-size: 20px;
    border: 1px solid var(--line-2); border-radius: 10px; padding: 5px 13px; color: var(--ink);
    background: var(--surface);
  }
  .site-nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line-2);
    padding: 8px 28px 18px; box-shadow: var(--shadow-lg);
  }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav .nav-cta { display: block; margin-top: 14px; text-align: center; border: 0; padding: 14px; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .header-cta { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  padding: 96px 0 40px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 50% -8%, rgba(58,112,164,.10), transparent 65%),
    radial-gradient(560px 360px at 88% 18%, rgba(191,101,53,.07), transparent 60%);
}
.hero > .wrap { position: relative; }
.hero-title {
  font-size: clamp(40px, 6.2vw, 68px); font-weight: 700; line-height: 1.05;
  margin-bottom: 22px; letter-spacing: -.025em;
}
.hero-title em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: clamp(17px, 2.1vw, 20.5px); color: var(--muted); max-width: 58ch; margin: 0 auto 34px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.aud-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.aud-row a {
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--teal);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 99px;
  padding: 8px 18px; box-shadow: var(--shadow-sm); transition: border-color .15s, transform .12s;
}
.aud-row a:hover { border-color: var(--teal); transform: translateY(-1px); }
.trust-line {
  margin-top: 26px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-family: var(--font-m); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint);
}

/* ---------------- The product shot ---------------- */
.shot-wrap { margin: 60px auto 0; max-width: 980px; position: relative; }
.shot-wrap::before {
  content: ""; position: absolute; inset: 8% -6% -10% -6%; pointer-events: none;
  background: radial-gradient(60% 70% at 50% 60%, rgba(16,160,140,.16), transparent 70%);
  filter: blur(18px);
}
.shot-frame {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #0b1017; border: 1px solid #22303e;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, var(--shadow-lg), 0 50px 120px rgba(14,60,54,.18);
}
.shot-chrome {
  display: flex; align-items: center; gap: 7px; padding: 12px 16px;
  background: #101823; border-bottom: 1px solid #22303e;
}
.shot-chrome span { width: 11px; height: 11px; border-radius: 50%; background: #2b3948; }
.shot-chrome span:nth-child(1) { background: #e0655f; }
.shot-chrome span:nth-child(2) { background: #e0b25f; }
.shot-chrome span:nth-child(3) { background: #58c48c; }
.shot-chrome em {
  font-style: normal; font-family: var(--font-m); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: #62717f; margin: 0 auto; padding-right: 44px;
}
.shot-crop { overflow: hidden; }
.shot-crop img { display: block; width: 119.5%; margin-left: -19.5%; }
.console-caption { margin-top: 20px; text-align: center; font-size: 14px; color: var(--muted); }

/* ---------------- Sections ---------------- */
.section { padding: 100px 0; }
.section-muted { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.pillar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm);
}
.pillar .pn { font-family: var(--font-m); font-size: 11px; letter-spacing: .18em; color: var(--teal); text-transform: uppercase; }
.pillar h3 { font-size: 21px; margin: 12px 0 8px; }
.pillar p { font-size: 15px; color: var(--muted); }

/* vertical cards */
.consoles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.vcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 0 26px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .18s, transform .15s;
}
.vcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.vcard.flagship { border-color: rgba(14,122,108,.35); box-shadow: 0 0 0 1px rgba(14,122,108,.12), var(--shadow-sm); }
.vc-shot { border-bottom: 1px solid var(--line); background: #0b1017; overflow: hidden; aspect-ratio: 16/8.4; }
.vc-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 0; }
.vc-shot.light { background: var(--bg-2); }
.vc-shot.ghosted {
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(16,160,140,.05), rgba(194,128,42,.05)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(23,34,44,.025) 14px 15px);
}
.vc-shot.ghosted p { font-family: var(--font-m); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.vcard > *:not(.vc-shot) { margin-left: 26px; margin-right: 26px; }
.vc-badge {
  align-self: flex-start; font-family: var(--font-m); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; border-radius: 7px; padding: 4px 11px;
  background: var(--teal-bg); color: var(--teal); border: 1px solid rgba(14,122,108,.25);
  margin-top: 20px;
}
.vc-badge.amber { background: rgba(194,128,42,.08); color: var(--gold); border-color: rgba(194,128,42,.3); }
.vcard h3 { font-size: 21px; }
.vcard p { font-size: 14.5px; color: var(--muted); flex: 1; }
.vcard ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 4px; margin-bottom: 8px; }
.vcard li { font-size: 14px; color: var(--muted); padding-left: 22px; position: relative; }
.vcard li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-family: var(--font-m); font-size: 12.5px; }
.vc-price { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; }
.vc-proof { font-family: var(--font-m); font-size: 11px; letter-spacing: .04em; color: var(--teal); }
.vc-links { display: flex; gap: 16px; flex-wrap: wrap; }
.vc-links a { font-size: 14px; font-weight: 600; }

/* ---------------- Article / /learn ---------------- */
.article { max-width: 760px; margin: 0 auto; padding: 40px 0 20px; }
.article .kicker { font-family: var(--font-m); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.article h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.12; margin-bottom: 20px; letter-spacing: -.02em; }
.article h2 { font-size: clamp(21px, 2.6vw, 27px); font-weight: 700; margin: 40px 0 12px; letter-spacing: -.01em; }
.article p { font-size: 17px; line-height: 1.75; color: #2c3742; margin: 0 0 18px; }
.article ol, .article ul { margin: 0 0 18px; padding-left: 24px; }
.article li { font-size: 17px; line-height: 1.7; color: #2c3742; margin: 6px 0; }
.article strong { color: var(--ink); }
.article a { color: var(--teal); font-weight: 600; }
.article .lede { font-size: 19px; color: var(--muted); }
.article table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15px; }
.article th, .article td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article th { font-family: var(--font-m); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.article tbody tr:last-child td { border-bottom: 0; }
.article .table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }
.article .fine { font-size: 14px; color: var(--faint); }
.article .cta-back { display: inline-block; margin: 28px 0 0; font-weight: 600; }
.learn-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.learn-item { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; text-decoration: none; box-shadow: var(--shadow-sm); transition: border-color .15s, transform .12s; }
.learn-item:hover { border-color: var(--teal); transform: translateY(-2px); }
.learn-item h3 { font-size: 20px; color: var(--ink); margin-bottom: 6px; }
.learn-item p { font-size: 15px; color: var(--muted); margin: 0; }

/* market strip */
.mkt-strip { margin-top: 40px; text-align: center; }
.mkt-h {
  font-family: var(--font-m); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.mkt-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 900px; margin: 0 auto; }
.mkt-list a {
  display: block; text-decoration: none; text-align: left;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 18px; box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .12s;
}
.mkt-list a:hover { border-color: var(--teal); transform: translateY(-1px); }
.mkt-list b { display: block; font-family: var(--font-d); font-size: 15px; color: var(--ink); }
.mkt-list span { font-size: 12.5px; color: var(--muted); }

/* own-it strip */
.own-strip {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 36px;
}
.own-strip li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 99px;
  padding: 12px 22px; font-size: 15px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); position: relative; padding-left: 44px;
}
.own-strip li::before {
  content: "✓"; position: absolute; left: 20px; color: var(--teal-br);
  font-family: var(--font-m); font-weight: 700;
}

/* compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.compare-col { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); }
.compare-bad { background: var(--bg-2); box-shadow: none; }
.compare-bad h3 { color: var(--muted); }
.compare-good { border-color: rgba(14,122,108,.35); box-shadow: 0 0 0 1px rgba(14,122,108,.1), var(--shadow-sm); }
.compare-good h3 { color: var(--teal); }
.compare h3 { font-size: 15px; margin-bottom: 16px; font-family: var(--font-m); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare li { font-size: 15px; color: var(--muted); padding-left: 24px; position: relative; }
.compare-bad li::before { content: "✕"; position: absolute; left: 0; color: #c05252; font-size: 12.5px; }
.compare-good li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-br); font-size: 12.5px; }

/* AI section */
.ai-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.ai-points li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; font-size: 14.5px; color: var(--muted); box-shadow: var(--shadow-sm);
}
.ai-points strong { display: block; color: var(--ink); font-family: var(--font-d); font-size: 16px; margin-bottom: 6px; }

/* story */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.story p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.story p strong { color: var(--ink); }
.story-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg);
}
.story-panel .sp-k { font-family: var(--font-m); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.story-panel ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.story-panel li { font-size: 14.5px; color: var(--muted); display: flex; gap: 12px; align-items: baseline; }
.story-panel li b { color: var(--teal); font-family: var(--font-m); font-size: 12px; font-weight: 600; flex: none; min-width: 44px; }

/* FAQ */
.faq { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 0 22px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-d);
  font-weight: 600; font-size: 16.5px; position: relative; padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--teal); font-family: var(--font-m); font-size: 18px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 18px; font-size: 15px; color: var(--muted); }

/* contact form */
.lead-form { margin: 44px auto 0; max-width: 640px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.lead-form label { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--ink); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line-2); border-radius: 11px;
  padding: 13px 15px; color: var(--ink); font: inherit; font-size: 15.5px;
  box-shadow: var(--shadow-sm); margin-top: 6px;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--teal-br); box-shadow: 0 0 0 4px rgba(16,160,140,.14);
}
.lead-form .btn { margin-top: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 13px; color: var(--faint); text-align: center; }
.form-status { text-align: center; font-family: var(--font-m); font-size: 13px; min-height: 20px; }
.form-status.ok { color: var(--teal-br); }
.form-status.err { color: #c05252; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 52px 0 46px; background: var(--bg-2); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: baseline; justify-content: space-between; }
.footer-tag { color: var(--muted); font-size: 14px; margin-top: 6px; max-width: 46ch; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.footer-fine { font-family: var(--font-m); font-size: 11.5px; letter-spacing: .05em; color: var(--faint); width: 100%; }
.footer-fine a { color: var(--muted); }

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .pillars, .consoles, .ai-points { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 24px; }
  .shot-crop img { width: 140%; margin-left: -24%; }
}

/* ============================================================
   Video-led hero: logo animation cross-fading to the console
   ============================================================ */
.hero-stage .shot-crop { position: relative; aspect-ratio: 16 / 9.4; }
.hero-stage .shot-crop img { width: 100%; height: 100%; margin: 0; object-fit: cover; object-position: top center; }
.hero-layer { position: absolute; inset: 0; }
.hero-layer.logo { display: grid; place-items: center; background: var(--bg); }
.hero-layer.logo .lk { display: flex; flex-direction: column; align-items: center; }
.hero-layer.logo svg { width: 30%; max-width: 180px; overflow: visible; }
.hero-layer.logo .wm { font-family: var(--font-d); font-weight: 700; font-size: clamp(17px, 3vw, 28px); color: var(--ink); margin-top: 12px; }
.hero-layer.logo .wm span { font-weight: 500; color: var(--muted); }
.hf-logo { animation: hfLogo 9s ease-in-out infinite; }
.hf-demo { animation: hfDemo 9s ease-in-out infinite; }
@keyframes hfLogo { 0%,32% { opacity: 1; } 44%,92% { opacity: 0; } 100% { opacity: 1; } }
@keyframes hfDemo { 0%,32% { opacity: 0; } 44%,92% { opacity: 1; } 100% { opacity: 0; } }
.hm-base { transform-box: fill-box; animation: hmBase 9s ease-in-out infinite; }
.hm-ridge { transform-box: fill-box; transform-origin: left center; animation: hmRidge 9s ease-in-out infinite; }
.hm-sun { transform-box: fill-box; animation: hmSun 9s ease-in-out infinite; }
@keyframes hmBase { 0% { transform: translateX(-26px); opacity: 0; } 6%,100% { transform: translateX(0); opacity: 1; } }
@keyframes hmRidge { 0%,3% { clip-path: inset(0 100% 0 0); } 14%,100% { clip-path: inset(0 0 0 0); } }
@keyframes hmSun { 0%,8% { transform: translateY(22px); opacity: 0; } 20%,100% { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hf-logo { opacity: 0; } .hf-demo { opacity: 1; } .hm-base,.hm-ridge,.hm-sun { animation: none; } }

/* ============================================================
   Offering page: connect/add menu, includes, add-ons, technician
   ============================================================ */
.offer-mech { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 0; }
.omcard { border: 1px dashed var(--line-2); border-radius: 12px; padding: 16px 18px; background: var(--bg-2); }
.omcard .omh { font-family: var(--font-d); font-weight: 600; font-size: 16px; }
.omcard .omtag { font-family: var(--font-m); font-size: 11px; padding: 2px 8px; border-radius: 5px; font-weight: 600; margin-left: 6px; white-space: nowrap; }
.omcard.c .omtag { background: var(--teal-bg); color: var(--teal); }
.omcard.a .omtag { background: rgba(194,128,42,.1); color: var(--gold); }
.omcard p { font-size: 14px; color: var(--muted); margin-top: 5px; }
.menu-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); margin-top: 20px; }
table.omenu { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 520px; }
table.omenu th { text-align: right; font-family: var(--font-m); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); font-weight: 600; padding: 14px 20px; border-bottom: 1px solid var(--line-2); }
table.omenu th:first-child { text-align: left; }
table.omenu td { padding: 12px 20px; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
table.omenu tr:last-child td { border-bottom: none; }
table.omenu tr:hover td { background: var(--teal-bg); }
.omenu .osys { font-weight: 600; }
.omenu .osys small { display: block; font-weight: 400; font-size: 12.5px; color: var(--faint); }
.omenu .onum { text-align: right; font-family: var(--font-m); font-size: 14px; }
.omenu .oc { color: var(--teal); }
.omenu .oq { color: var(--gold); font-style: italic; }
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.incl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.incl-card h3 { font-size: 16px; display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.incl-card h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex: none; }
.incl-card.soft h3 .dot { background: var(--gold); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13.5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 5px 11px; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.addon-card { background: linear-gradient(180deg, rgba(194,128,42,.08), transparent); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.addon-card .ak { font-family: var(--font-m); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 600; }
.addon-card h3 { font-size: 20px; margin: 4px 0 7px; }
.addon-card p { font-size: 14.5px; color: var(--muted); }
.tech-block { background: linear-gradient(180deg, var(--teal-bg), transparent); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tech-block .tbrow { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; }
.tech-block h3 { font-size: 24px; }
.tech-block .tbrate { font-family: var(--font-m); font-size: 17px; font-weight: 600; color: var(--teal); }
.tech-block .tbsay { font-family: var(--font-d); font-weight: 500; font-size: 18px; margin: 14px 0 18px; max-width: 60ch; }
.tbcan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 22px; list-style: none; }
.tbcan li { font-size: 14.5px; color: var(--muted); padding-left: 18px; position: relative; }
.tbcan li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-family: var(--font-m); font-size: 12px; }
.tbcredit { margin-top: 20px; padding: 12px 16px; background: rgba(194,128,42,.1); border-radius: 10px; font-size: 14.5px; }
@media (max-width: 720px) { .offer-mech, .incl-grid, .addon-grid { grid-template-columns: 1fr; } .tbcan { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .tbcan { grid-template-columns: 1fr; } }
