/* ==========================================================================
   CoatOps — public landing page, layout v2 ("site ledger")
   Light canvas, left index rail, ruled rows instead of card grids.
   Same product tokens. All motion is CSS-only.
   Prefix: .cv2 — cannot collide with the app or with layout v1.
   ========================================================================== */

.cv2 {
  --primary: #EA580C;
  --primary-hover: #F97316;
  --primary-deep: #C2410C;
  --primary-soft: #FFF3EA;
  --ink: #1F2937;
  --ink-deep: #111827;
  --accent: #FACC15;
  --paper: #FBFAF8;
  --paper-2: #F2F0EC;
  --line: #DED9D2;
  --text: #1F2937;
  --text-2: #6B7280;
  --text-3: #6B7280;
  --text-faint: #9CA3AF;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  font-family: "Archivo", "Inter Tight", system-ui, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}
.cv2 *, .cv2 *::before, .cv2 *::after { box-sizing: border-box; }
.cv2 h1, .cv2 h2, .cv2 h3, .cv2 h4, .cv2 p, .cv2 ul, .cv2 figure { margin: 0; }
.cv2 ul { padding: 0; list-style: none; }
.cv2 a { color: var(--primary); text-decoration: none; }
.cv2 a:hover { color: var(--primary-deep); }
.cv2 img, .cv2 video { display: block; max-width: 100%; }

/* ---- shell: fixed index rail + content column ---------------------------- */
.cv2-shell { display: grid; grid-template-columns: 58px minmax(0, 1fr); }
.cv2-rail {
  position: sticky; top: 0; align-self: start; height: 100vh;
  border-inline-end: 1px solid var(--line); background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding-block: 18px;
}
.cv2-rail-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--ink-deep); position: relative; }
.cv2-rail-mark::after { content: ""; position: absolute; inset-inline: 6px; bottom: 6px; height: 5px; border-radius: 2px; background: var(--accent); }
.cv2-rail-txt {
  writing-mode: vertical-rl; font-family: var(--mono); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--text-3);
}
.cv2-rail-dots { display: flex; flex-direction: column; gap: 7px; }
.cv2-rail-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }
.cv2-rail-dots i:first-child { background: var(--primary); }
@media (max-width: 860px) { .cv2-shell { grid-template-columns: 1fr; } .cv2-rail { display: none; } }

.cv2-pad { padding-inline: clamp(18px, 5vw, 72px); }
.cv2-sec { padding-block: clamp(52px, 7vw, 96px); border-bottom: 1px solid var(--line); }
.cv2-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3);
  display: flex; align-items: center; gap: 10px;
}
.cv2-kicker b { color: var(--primary); font-weight: 500; }
.cv2-h2 { font-size: clamp(25px, 3.2vw, 40px); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; max-width: 20ch; }
.cv2-lead { color: var(--text-2); font-size: clamp(15px, 1.2vw, 17px); max-width: 52ch; }
.cv2-note { font-family: var(--mono); font-size: 11px; color: var(--text-3); }

/* two-column: sticky heading / flowing body */
.cv2-split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(24px, 4vw, 64px); }
.cv2-split > div:first-child { position: sticky; top: 88px; align-self: start; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 900px) { .cv2-split { grid-template-columns: 1fr; } .cv2-split > div:first-child { position: static; } }

/* ---- buttons ------------------------------------------------------------ */
.cv2-btn {
  display: inline-flex; align-items: center; gap: 10px; font: inherit; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 0; padding: 13px 22px; border-radius: 4px;
  transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}
.cv2 a.cv2-btn--go, .cv2 button.cv2-btn--go { background: var(--accent); color: var(--ink); }
.cv2 a.cv2-btn--go:hover { background: #FDE047; color: var(--ink); transform: translateY(-1px); }
.cv2 a.cv2-btn--go::after { content: "→"; font-family: var(--mono); }
.cv2[dir="rtl"] a.cv2-btn--go::after { content: "←"; }
.cv2 a.cv2-btn--line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.cv2 a.cv2-btn--line:hover { box-shadow: inset 0 0 0 1px var(--ink); color: var(--ink); }
.cv2 button.cv2-btn--solid { background: var(--accent); color: var(--ink); }
.cv2 button.cv2-btn--solid:hover { background: #FDE047; }
.cv2-btn--sm { padding: 9px 16px; font-size: 14px; }

/* ---- top bar ------------------------------------------------------------ */
.cv2-top {
  position: sticky; top: 0; z-index: 40; background: rgba(251, 250, 248, .94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 18px; min-height: 62px;
}
.cv2-top-logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.cv2-top-logo img { height: 26px; width: auto; }
.cv2-nav { display: flex; gap: 20px; margin-inline: auto; }
.cv2-nav a { color: var(--text-2); font-size: 14px; font-weight: 500; white-space: nowrap; }
.cv2-nav a:hover { color: var(--ink); }
.cv2-swap { display: flex; gap: 1px; background: var(--line); border-radius: 3px; overflow: hidden; }
.cv2-swap button {
  font: inherit; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; border: 0; cursor: pointer;
  background: var(--paper); color: var(--text-2); padding: 7px 9px; transition: background .14s ease, color .14s ease;
}
.cv2-swap button:hover { color: var(--ink); }
.cv2-swap button[aria-pressed="true"] { background: var(--ink-deep); color: #fff; }
@media (max-width: 1000px) { .cv2-nav { display: none; } }

/* ---- hero: type left, tall media panel right ---------------------------- */
.cv2-hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(28px, 4vw, 60px); padding-block: clamp(44px, 6vw, 86px) clamp(36px, 5vw, 64px); align-items: end; border-bottom: 1px solid var(--line); }
.cv2-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.cv2-h1 { font-size: clamp(38px, 6.4vw, 78px); line-height: .98; font-weight: 700; letter-spacing: -0.045em; max-width: 15ch; color: var(--ink-deep); }
.cv2-hero-sub { font-size: clamp(15px, 1.4vw, 19px); color: var(--text-2); max-width: 46ch; }
.cv2-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.cv2-hero-foot { font-family: var(--mono); font-size: 11.5px; color: var(--text-3); padding-top: 18px; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .cv2-hero { grid-template-columns: 1fr; } }

/* media panel: offset yellow plate behind, tall portrait crop */
.cv2-panel { position: relative; }
.cv2-panel::before {
  content: ""; position: absolute; inset-inline-start: 18px; inset-inline-end: -18px; top: 22px; bottom: -18px;
  background: var(--accent); border-radius: 3px; animation: cv2-nudge 9s ease-in-out infinite;
}
.cv2-panel-in {
  position: relative; background: var(--ink-deep); border-radius: 3px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 39, .2);
}
.cv2-panel-bar { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.cv2-live { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; position: relative; }
.cv2-live::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid #22C55E; animation: cv2-ping 2.4s ease-out infinite; }
.cv2-panel-bar span { font-family: var(--mono); font-size: 10.5px; color: rgba(255, 255, 255, .55); }
.cv2-panel-in video, .cv2-panel-in img { width: 100%; object-fit: cover; }
.cv2-slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center;
  padding: 22px; color: rgba(255, 255, 255, .5);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 10px, rgba(255, 255, 255, .02) 10px 20px);
}
.cv2-slot b { font-family: var(--mono); font-size: 11.5px; font-weight: 500; color: rgba(255, 255, 255, .78); }
.cv2-slot code { font-family: var(--mono); font-size: 10.5px; word-break: break-all; direction: ltr; unicode-bidi: embed; }
.cv2-slot--light { background: repeating-linear-gradient(135deg, rgba(31, 41, 55, .09) 0 10px, rgba(31, 41, 55, .03) 10px 20px); color: var(--text-3); }
.cv2-slot--light b { color: var(--text-2); }
.cv2-slot--light code { color: var(--text-3); }

/* hero readout strip under the panel */
.cv2-read { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: 3px; margin-top: 22px; background: #fff; }
.cv2-read div { padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cv2-read div + div { border-inline-start: 1px solid var(--line); }
.cv2-read b { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); font-weight: 500; }
.cv2-read span { font-size: 14px; font-weight: 600; }

/* ---- ticker ------------------------------------------------------------- */
.cv2-tick { border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; padding-block: 12px; }
.cv2-tick-track { display: flex; gap: 36px; width: max-content; animation: cv2-slide 38s linear infinite; }
.cv2-tick-track span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }
.cv2-tick-track span::before { content: "◦"; color: var(--primary); margin-inline-end: 12px; }
.cv2-tick:hover .cv2-tick-track { animation-play-state: paused; }

/* ---- numbers row -------------------------------------------------------- */
.cv2-nums { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); gap: clamp(16px, 3vw, 40px); }
.cv2-num { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 2px solid var(--ink-deep); }
.cv2-num b { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.03em; }
.cv2-num span { font-size: 13px; color: var(--text-2); }
.cv2-num:nth-child(2) { border-top-color: var(--primary); }
.cv2-num:nth-child(3) { border-top-color: var(--accent); }
.cv2-num:nth-child(4) { border-top-color: var(--line); }

/* ---- ruled rows (problems, modules, compare) ---------------------------- */
.cv2-rows { display: flex; flex-direction: column; }
.cv2-row { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 16px; padding-block: 18px; border-top: 1px solid var(--line); }
.cv2-row:last-child { border-bottom: 1px solid var(--line); }
.cv2-row-n { font-family: var(--mono); font-size: 11.5px; color: var(--primary); padding-top: 3px; }
.cv2-row p { font-size: 16px; color: var(--text); max-width: 60ch; }
.cv2-quote {
  margin-top: 24px; padding: 20px 22px; background: var(--ink-deep); color: #fff; border-radius: 3px;
  font-size: clamp(15px, 1.5vw, 18px); position: relative; overflow: hidden;
}
.cv2-quote::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 4px; background: var(--accent); }

/* modules: index list, hover pulls the row right */
.cv2-mods { display: flex; flex-direction: column; }
.cv2-mod {
  display: grid; grid-template-columns: 52px minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(12px, 2vw, 28px);
  padding-block: 22px; border-top: 1px solid var(--line); align-items: baseline;
  transition: padding-inline-start .2s ease, background .2s ease;
}
.cv2-mod:last-child { border-bottom: 1px solid var(--line); }
.cv2-mod:hover { padding-inline-start: 10px; background: linear-gradient(90deg, var(--primary-soft), transparent 70%); }
.cv2-mod-n { font-family: var(--mono); font-size: 11.5px; color: var(--text-3); }
.cv2-mod h3 { font-size: clamp(17px, 1.9vw, 22px); font-weight: 700; letter-spacing: -0.02em; }
.cv2-mod p { font-size: 15px; color: var(--text-2); }
@media (max-width: 780px) { .cv2-mod { grid-template-columns: 32px minmax(0, 1fr); } .cv2-mod p { grid-column: 2; } }

/* roadmap: inline pills */
.cv2-road { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cv2-road-item { flex: 1 1 240px; padding: 16px 18px; border: 1px dashed var(--primary); border-radius: 3px; background: var(--primary-soft); }
.cv2-road-item b { display: block; font-size: 15px; margin-bottom: 4px; }
.cv2-road-item p { font-size: 13.5px; color: var(--text-2); }
.cv2-road-item span { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary-deep); }

/* ---- tour: stepped filmstrip ------------------------------------------- */
.cv2-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); gap: 18px; align-items: start; }
.cv2-frame { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #fff; }
.cv2-strip .cv2-frame:nth-child(1) { margin-top: 26px; }
.cv2-strip .cv2-frame:nth-child(3) { margin-top: 52px; }
.cv2-frame-cap { display: flex; justify-content: space-between; gap: 10px; padding: 11px 14px; border-top: 1px solid var(--line); }
.cv2-frame-cap b { font-size: 13.5px; }
.cv2-frame-cap span { font-family: var(--mono); font-size: 10.5px; color: var(--text-3); }
@media (max-width: 820px) { .cv2-strip .cv2-frame { margin-top: 0 !important; } }
.cv2-walk { margin-top: 24px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: var(--ink-deep); }

/* ---- steps: horizontal rule with big numerals -------------------------- */
.cv2-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(20px, 3vw, 44px); }
.cv2-step { position: relative; padding-top: 46px; }
.cv2-step::before {
  content: ""; position: absolute; top: 0; inset-inline: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-deep) 0 22px, transparent 22px 30px);
}
.cv2-step-n {
  position: absolute; top: 14px; inset-inline-start: 0; font-family: var(--mono); font-size: 12px; color: var(--primary);
}
.cv2-step h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.cv2-step p { font-size: 15px; color: var(--text-2); }

.cv2-assure { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr)); gap: 1px; background: var(--line); margin-top: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.cv2-assure div { background: #fff; padding: 20px; }
.cv2-assure h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cv2-assure p { font-size: 13.5px; color: var(--text-2); }
.cv2-assure div::before { content: ""; display: block; width: 22px; height: 3px; background: var(--primary); margin-bottom: 14px; animation: cv2-grow 1.4s cubic-bezier(.22, 1, .36, 1) both; }
.cv2-assure div:nth-child(2)::before { animation-delay: .1s; background: var(--accent); }
.cv2-assure div:nth-child(3)::before { animation-delay: .2s; }
.cv2-assure div:nth-child(4)::before { animation-delay: .3s; background: var(--ink-deep); }

/* ---- hazard strip: the four things that break today -------------------- */
.cv2-strike { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; margin-top: clamp(20px, 3vw, 34px); }
@media (max-width: 1000px) { .cv2-strike { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cv2-strike { grid-template-columns: 1fr; } }
.cv2-strike > div { background: #fff; padding: 20px 18px 22px; }
.cv2-strike > div::before {
  content: ""; display: block; height: 6px; border-radius: 2px; margin-bottom: 14px;
  background: repeating-linear-gradient(45deg, var(--accent) 0 7px, var(--ink-deep) 7px 14px);
  animation: cv2-hazard 2.6s linear infinite;
}
.cv2-strike b { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); font-weight: 500; display: block; margin-bottom: 8px; }
.cv2-strike p { font-size: 15px; }
.cv2-strike-fix { margin-top: 20px; font-size: clamp(16px, 1.7vw, 20px); font-weight: 700; letter-spacing: -0.02em; max-width: 52ch; }
.cv2-strike-fix mark { background: linear-gradient(transparent 62%, var(--accent) 62%); color: inherit; }

/* ---- dark step band ---------------------------------------------------- */
.cv2-dark { background: var(--ink-deep); color: #fff; border-bottom: 0; }
.cv2-dark .cv2-h2, .cv2-dark .cv2-step h3 { color: #fff; }
.cv2-dark .cv2-kicker { color: rgba(255, 255, 255, .5); }
.cv2-dark .cv2-step p { color: rgba(255, 255, 255, .72); }
.cv2-dark .cv2-step::before { background: repeating-linear-gradient(90deg, var(--accent) 0 22px, transparent 22px 30px); }
.cv2-dark .cv2-step-n { color: var(--accent); }
.cv2-dark .cv2-note { color: rgba(255, 255, 255, .45); }

/* ---- merged close: CTA copy + form on charcoal ------------------------- */
.cv2-fin { background: var(--ink-deep); color: #fff; }
.cv2-fin-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 64px); padding-block: clamp(52px, 7vw, 92px); align-items: start; }
@media (max-width: 900px) { .cv2-fin-in { grid-template-columns: 1fr; } }
.cv2-fin h2 { font-size: clamp(28px, 4.2vw, 50px); line-height: 1.03; font-weight: 700; letter-spacing: -0.04em; max-width: 20ch; }
.cv2-fin p { color: rgba(255, 255, 255, .74); font-size: clamp(15px, 1.3vw, 17px); margin-top: 14px; max-width: 44ch; }
.cv2-fin-rows { margin-top: 26px; }
.cv2-fin-rows div { display: flex; justify-content: space-between; gap: 14px; padding-block: 12px; border-bottom: 1px solid rgba(255, 255, 255, .14); font-size: 15px; }
.cv2-fin-rows b { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-weight: 500; }
.cv2-fin-note { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, .45); margin-top: 18px; }
.cv2-fin a.cv2-btn--line { color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .32); }
.cv2-fin a.cv2-btn--line:hover { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }

@keyframes cv2-hazard { from { background-position: 0 0; } to { background-position: 28px 0; } }

/* ---- comparison: plain ruled ledger ------------------------------------ */
.cv2-cmp { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cv2-cmp th, .cv2-cmp td { padding: 14px 14px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: top; }
.cv2-cmp thead th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); border-bottom: 2px solid var(--ink-deep); }
.cv2-cmp thead th.cv2-own { color: var(--primary); }
.cv2-cmp tbody th { font-weight: 600; }
.cv2-cmp td.cv2-own { font-weight: 600; color: var(--ink); background: var(--primary-soft); }
.cv2-cmp td:not(.cv2-own) span { font-family: var(--mono); font-size: 12px; color: var(--text-2); }
.cv2-cmp td.cv2-own, .cv2-cmp td.cv2-own span { font: inherit; font-weight: 600; color: var(--ink); }
.cv2-cmp-wrap { overflow-x: auto; }
.cv2-take { margin-top: 22px; font-size: clamp(16px, 1.8vw, 21px); font-weight: 700; letter-spacing: -0.02em; max-width: 40ch; }
.cv2-take mark { background: linear-gradient(transparent 60%, var(--accent) 60%); color: inherit; }

/* ---- pricing: one ledger, plans as columns ----------------------------- */
.cv2-price-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
.cv2-price { width: 100%; border-collapse: collapse; min-width: 640px; }
.cv2-price th, .cv2-price td { padding: 18px 20px; text-align: start; border-bottom: 1px solid var(--line); }
.cv2-price thead th { vertical-align: top; }
.cv2-price thead th.cv2-hot { background: var(--ink-deep); color: #fff; }
.cv2-price-name { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.cv2-price-name i { font-family: var(--mono); font-size: 9.5px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; background: var(--accent); color: var(--ink); padding: 3px 7px; border-radius: 2px; }
.cv2-price-amt { font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; margin-top: 10px; }
.cv2-price-per { font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.cv2-price thead th.cv2-hot .cv2-price-per { color: rgba(255, 255, 255, .6); }
.cv2-price-desc { font-size: 13.5px; font-weight: 400; color: var(--text-2); margin-top: 8px; max-width: 30ch; }
.cv2-price thead th.cv2-hot .cv2-price-desc { color: rgba(255, 255, 255, .75); }
.cv2-price tbody td { font-size: 14.5px; color: var(--text-2); }
.cv2-price tbody td::before { content: "—"; color: var(--primary); margin-inline-end: 8px; }
.cv2-price tbody tr:last-child td { border-bottom: 0; }
.cv2-price tbody tr:last-child td::before { content: none; }
.cv2-price tbody td.cv2-price-blank::before { content: none; }
.cv2-price-blank { width: 120px; background: var(--paper-2); }

/* ---- FAQ: two columns of ruled details --------------------------------- */
.cv2-faq { columns: 2; column-gap: clamp(24px, 4vw, 56px); }
@media (max-width: 820px) { .cv2-faq { columns: 1; } }
.cv2-faq details { break-inside: avoid; border-bottom: 1px solid var(--line); }
.cv2-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px; padding: 16px 0; font-size: 16px; font-weight: 600; }
.cv2-faq summary::-webkit-details-marker { display: none; }
.cv2-faq summary::after { content: "+"; font-family: var(--mono); color: var(--primary); transition: transform .2s ease; }
.cv2-faq details[open] summary::after { transform: rotate(45deg); }
.cv2-faq details p { padding-bottom: 18px; font-size: 14.5px; color: var(--text-2); animation: cv2-fade .26s ease both; }

/* ---- contact ------------------------------------------------------------ */
.cv2-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 60px); }
@media (max-width: 900px) { .cv2-contact { grid-template-columns: 1fr; } }
.cv2-rows2 { margin-top: 22px; }
.cv2-rows2 div { display: flex; justify-content: space-between; gap: 14px; padding-block: 13px; border-bottom: 1px solid var(--line); font-size: 15px; }
.cv2-rows2 b { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.cv2-form { display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 24px; }
.cv2-form h3 { font-size: 17px; font-weight: 700; }
.cv2-f { display: flex; flex-direction: column; gap: 5px; }
.cv2-f label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.cv2-f input, .cv2-f textarea {
  font: inherit; font-size: 15px; color: var(--text); background: var(--paper);
  border: 1px solid var(--line); border-radius: 3px; padding: 11px 13px; width: 100%;
}
.cv2-f textarea { min-height: 92px; resize: vertical; }
.cv2-f input:focus, .cv2-f textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(234, 88, 12, .12); }
.cv2-f2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 14px; }
.cv2-thanks { padding: 15px 17px; border-radius: 3px; background: rgba(22, 163, 74, .1); color: #15803D; font-size: 15px; font-weight: 600; animation: cv2-fade .3s ease both; }

/* ---- closing band + footer --------------------------------------------- */
.cv2-close { background: var(--ink-deep); color: #fff; }
.cv2-close-in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 4vw, 56px); align-items: end; padding-block: clamp(56px, 8vw, 96px); }
.cv2-close h2 { font-size: clamp(28px, 4.4vw, 52px); line-height: 1.02; font-weight: 700; letter-spacing: -0.04em; max-width: 22ch; }
.cv2-close h2 em { font-style: normal; color: var(--accent); }
.cv2-close p { color: rgba(255, 255, 255, .74); font-size: clamp(15px, 1.3vw, 17px); margin-top: 16px; max-width: 46ch; }
.cv2-close a.cv2-btn--go, .cv2-close a.cv2-btn--go:hover { background: var(--accent); color: var(--ink); }
.cv2-close a.cv2-btn--go:hover { background: #FDE047; }
.cv2-close a.cv2-btn--line { color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3); }
.cv2-close a.cv2-btn--line:hover { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.cv2-close-note { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, .5); margin-top: 16px; }
@media (max-width: 900px) { .cv2-close-in { grid-template-columns: 1fr; } }

.cv2-ftr { background: var(--ink-deep); color: rgba(255, 255, 255, .6); border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 38px 24px; }
.cv2-ftr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 26px; }
.cv2-ftr h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .42); margin-bottom: 11px; }
.cv2-ftr ul { display: flex; flex-direction: column; gap: 7px; }
.cv2-ftr a { color: rgba(255, 255, 255, .72); font-size: 14px; }
.cv2-ftr a:hover { color: var(--accent); }
.cv2-ftr-brand { display: flex; flex-direction: column; gap: 10px; font-size: 14px; max-width: 32ch; }
.cv2-ftr-brand img { height: 26px; width: auto; align-self: flex-start; object-fit: contain; background: #fff; border-radius: 3px; padding: 5px 8px; }
.cv2-ftr-btm { margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, .42); }

/* ---- animations (CSS only) --------------------------------------------- */
@keyframes cv2-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes cv2-ping { 0% { transform: scale(.7); opacity: .9; } 80%, 100% { transform: scale(1.9); opacity: 0; } }
@keyframes cv2-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cv2-nudge { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-6px, -6px); } }
@keyframes cv2-grow { from { width: 0; } to { width: 22px; } }
.cv2-in { animation: cv2-fade .7s cubic-bezier(.22, 1, .36, 1) both; }
.cv2-in-2 { animation-delay: .1s; }

.cv2[dir="rtl"] .cv2-tick-track { animation-direction: reverse; }
@media (prefers-reduced-motion: reduce) {
  .cv2 *, .cv2 *::before, .cv2 *::after { animation: none !important; transition-duration: .01ms !important; }
  .cv2-assure div::before { width: 22px; }
}
