/* ConsoleMeNow landing page: "ice console".
   Self-contained (does not load styles.css). Light and dark themes via [data-theme]. */

@font-face { font-family: "CMN Display"; src: url("/fonts/cmn-display-bold.woff") format("woff"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "CMN Display"; src: url("/fonts/cmn-display-regular.woff") format("woff"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --bg: #eef2f6;
  --surface: #ffffff;
  --surface-2: #f4f6f8;
  --surface-3: #fafbfc;
  --ink: #10212f;
  --on-ink: #ffffff;
  --steel: #52667a;
  --faint: #7b8d9d;
  --line: #d3dbe3;
  --line-strong: #aebccb;
  --tape: #f5c400;
  --tape-ink: #1d1600;
  --blue: #2c5f86;
  --track: #e3e9ef;
  --label-bg: #10212f;
  --label-ink: #f1f5f9;
  --pop-bg: #10212f;
  --pop-ink: #f1f5f9;
  --pop-line: #27425a;
  --warn-bg: #fff2bf;
  --warn-line: #e6cf6a;
  --warn-ink: #5c4600;
  --danger: #b42318;
  --danger-bg: #fde4e1;
  --foot-bg: #10212f;
  --foot-ink: #c5d2de;
  --shadow: 0 2px 0 rgba(16, 33, 47, .03), 0 70px 120px -50px rgba(16, 33, 47, .45), 0 20px 40px -24px rgba(16, 33, 47, .25);
  --shadow-sm: 0 30px 60px -36px rgba(16, 33, 47, .4);

  --geo: "CMN Display", "Avenir Next", "Century Gothic", "Trebuchet MS", system-ui, sans-serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #0a141e;
  --surface: #101e2b;
  --surface-2: #152636;
  --surface-3: #12212f;
  --ink: #e7edf3;
  --on-ink: #0a141e;
  --steel: #92a5b8;
  --faint: #6b7f92;
  --line: #21364a;
  --line-strong: #37506a;
  --blue: #8fb3cf;
  --track: #1b2f42;
  --label-bg: #e7edf3;
  --label-ink: #0a141e;
  --pop-bg: #152636;
  --pop-ink: #e7edf3;
  --pop-line: #37506a;
  --warn-bg: #3d3208;
  --warn-line: #6b5a12;
  --warn-ink: #ffe07a;
  --danger: #ffb4a9;
  --danger-bg: #3a1512;
  --foot-bg: #060e15;
  --foot-ink: #92a5b8;
  --shadow: 0 2px 0 rgba(0, 0, 0, .2), 0 70px 120px -50px rgba(0, 0, 0, .9), 0 20px 40px -24px rgba(0, 0, 0, .6);
  --shadow-sm: 0 30px 60px -36px rgba(0, 0, 0, .8);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
img, svg { max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
:root[data-theme="dark"] :focus-visible { outline-color: var(--tape); }

.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--ink); color: var(--on-ink); padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }
.wrap { width: min(1200px, 100% - 40px); margin-inline: auto; position: relative; }

/* ---------- header ---------- */
.topbar { display: flex; align-items: center; min-height: 84px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--geo); font-weight: 700; font-size: 19px; letter-spacing: -.02em; text-decoration: none; color: inherit; }
.brand svg { width: 30px; height: 30px; flex: none; }
.links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 38px; font-size: 15px; }
.links a { color: var(--steel); text-decoration: none; }
.links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); display: inline-grid; place-items: center; cursor: pointer; }
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-sun { display: none; }
:root[data-theme="dark"] .icon-sun { display: block; }
:root[data-theme="dark"] .icon-moon { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 44px; padding: 0 22px; border-radius: 999px; font-family: var(--sans); font-weight: 700; font-size: 15px; text-decoration: none; border: 1px solid transparent; cursor: pointer; line-height: 1.1; }
.btn-sm { min-height: 40px; padding: 0 18px; }
.btn-lg { min-height: 56px; padding: 0 30px; font-size: 16.5px; }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { opacity: .9; }
.btn-google { background: #fff; color: #10212f; border-color: var(--line-strong); padding: 0 28px 0 24px; }
.btn-google:hover { background: #f6f8fa; }
.btn-google svg { width: 21px; height: 21px; flex: none; }

/* ---------- hero ---------- */
.hero { padding: 70px 0 0; text-align: center; }
h1 { font-family: var(--geo); font-weight: 700; font-size: clamp(2.4rem, 9vw, 6rem); line-height: .98; letter-spacing: -.06em; text-wrap: balance; max-width: 15em; margin-inline: auto; }
.lede { margin: 30px auto 0; max-width: 34em; font-size: clamp(1.05rem, 2.2vw, 1.25rem); line-height: 1.55; color: var(--steel); }
.cta-row { margin-top: 36px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.fine { margin: 22px auto 0; max-width: 40em; font-size: 14px; color: var(--steel); }
.error-banner { margin: 22px auto 0; max-width: 34em; padding: 12px 16px; border-radius: 12px; background: var(--danger-bg); color: var(--danger); font-weight: 600; }

/* ---------- floating window ---------- */
.stage { position: relative; margin: 68px auto 0; width: min(1120px, 100%); padding-bottom: 150px; text-align: left; }
.win { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.wbar { height: 60px; display: flex; align-items: center; gap: 30px; padding: 0 24px; border-bottom: 1px solid var(--line); background: var(--surface-3); }
.wbrand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--geo); font-weight: 700; font-size: 15.5px; letter-spacing: -.02em; }
.wbrand svg { width: 24px; height: 24px; }
.tabs { display: flex; gap: 24px; font-weight: 700; font-size: 14.5px; color: var(--steel); align-self: stretch; }
.tabs span { display: flex; align-items: center; border-bottom: 3px solid transparent; margin-bottom: -1px; }
.tabs .on { color: var(--ink); border-color: var(--tape); }
.add { margin-left: auto; background: var(--tape); color: var(--tape-ink); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 8px; white-space: nowrap; }
.tool { display: flex; gap: 12px; padding: 20px 24px 16px; }
.search { flex: 1; min-width: 0; height: 42px; border: 1px solid var(--line-strong); border-radius: 10px; display: flex; align-items: center; padding: 0 14px; font-size: 14.5px; color: var(--faint); gap: 10px; overflow: hidden; white-space: nowrap; }
.search svg { width: 16px; height: 16px; flex: none; }
.sel { height: 42px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 0 14px; display: flex; align-items: center; font-size: 14px; gap: 8px; white-space: nowrap; }
.sel small { color: var(--steel); font-size: 12.5px; }
.sum { display: flex; gap: 26px; padding: 6px 24px 16px; font-size: 14.5px; color: var(--steel); flex-wrap: wrap; }
.sum b { color: var(--ink); }
.win table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.win th { text-align: left; font-size: 13px; color: var(--steel); font-weight: 700; padding: 11px 24px; background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); white-space: nowrap; }
.win td { padding: 14px 24px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.win tbody tr:last-child td { border-bottom: 0; }
.win .r { text-align: right; }
.win td b { display: block; font-size: 15px; font-weight: 700; }
.win td small { display: block; color: var(--steel); font-size: 12.5px; margin-top: 1px; }
.tape { display: inline-flex; gap: 6px; align-items: center; background: var(--label-bg); color: var(--label-ink); font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 2px; white-space: nowrap; }
.tape i { font-style: normal; opacity: .5; font-weight: 400; }
.badge { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 2px 10px; border-radius: 999px; border: 1px solid var(--line-strong); white-space: nowrap; }
.badge.warn { background: var(--warn-bg); border-color: var(--warn-line); color: var(--warn-ink); }
.badge.muted { color: var(--steel); }
.none { color: var(--faint); }

.pop { position: absolute; right: -56px; bottom: 0; width: 430px; background: var(--pop-bg); color: var(--pop-ink); border-radius: 14px; padding: 22px 24px 24px; box-shadow: 0 50px 80px -30px rgba(0, 0, 0, .55); border: 1px solid var(--pop-line); text-align: left; }
.pop-h { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12.5px; opacity: .75; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--tape); box-shadow: 0 0 0 4px rgba(245, 196, 0, .18); }
.pop p { margin-top: 12px; font-family: var(--geo); font-weight: 400; font-size: 21px; line-height: 1.3; letter-spacing: -.02em; }
.tape-y { margin-top: 16px; display: inline-flex; background: var(--tape); color: var(--tape-ink); font-family: var(--mono); font-weight: 700; font-size: 12.5px; padding: 4px 10px; border-radius: 2px; }

/* ---------- yellow price band ---------- */
.band { margin-top: 64px; background: var(--tape); color: var(--tape-ink); }
.band :focus-visible { outline-color: #10212f; }
.band-grid { display: grid; grid-template-columns: auto 1fr; gap: 88px; align-items: center; padding: 82px 0 84px; }
.big { font-family: var(--geo); font-weight: 700; font-size: clamp(9rem, 19vw, 15.6rem); line-height: .8; letter-spacing: -.08em; }
.big small { display: block; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -.02em; font-weight: 400; margin-top: 18px; }
.band h2 { font-family: var(--geo); font-size: clamp(2rem, 4.4vw, 2.75rem); line-height: 1.04; letter-spacing: -.045em; font-weight: 700; }
.band .sub { margin-top: 14px; font-size: 18px; max-width: 30em; color: #3a3000; }
.band ul { list-style: none; margin-top: 28px; max-width: 560px; }
.band li { padding: 12px 0; border-top: 1px solid rgba(29, 22, 0, .28); font-size: 17.5px; font-weight: 700; }
.band li:last-child { border-bottom: 1px solid rgba(29, 22, 0, .28); }
.btn-band { margin-top: 30px; display: inline-flex; min-height: 56px; align-items: center; padding: 0 32px; border-radius: 999px; background: #10212f; color: #fff; font-weight: 700; font-size: 17px; text-decoration: none; }
.btn-band:hover { background: #1a3247; }
.band .note { margin-top: 14px; font-size: 14px; color: #3a3000; }
.band .biz { margin-top: 26px; max-width: 560px; padding: 16px 0 0; border-top: 2px solid #10212f; font-size: 16.5px; line-height: 1.5; color: #1d1600; }
.band .biz a { color: #10212f; font-weight: 700; text-underline-offset: 3px; }
.band .biz + .btn-band { margin-top: 22px; }
.biz-line { margin-top: 14px; }
.biz-line strong { color: var(--ink); }
.biz-line a { color: var(--ink); text-underline-offset: 3px; }

/* ---------- content sections ---------- */
.sec { padding: 84px 0 0; }
.t { font-family: var(--geo); font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; letter-spacing: -.055em; max-width: 12em; text-wrap: balance; }
.ss { margin-top: 18px; color: var(--steel); font-size: 18px; max-width: 32em; }
.fl { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; border-bottom: 1px solid var(--line-strong); }
.f { padding: 26px 0 28px; border-top: 1px solid var(--line-strong); }
.f h3 { font-family: var(--geo); font-size: 1.5rem; letter-spacing: -.035em; font-weight: 700; }
.f p { margin-top: 8px; color: var(--steel); font-size: 16.5px; line-height: 1.55; max-width: 31em; }

.ins { margin-top: 54px; display: grid; grid-template-columns: 1fr 470px; gap: 72px; align-items: start; }
.im { padding: 24px 0; border-top: 1px solid var(--line-strong); font-family: var(--geo); font-weight: 400; font-size: clamp(1.25rem, 2.4vw, 1.625rem); line-height: 1.24; letter-spacing: -.035em; }
.im:last-child { border-bottom: 1px solid var(--line-strong); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 26px 24px; box-shadow: var(--shadow-sm); }
.ph { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; }
.ph span { color: var(--steel); font-weight: 400; }
.bar-row, .bar { display: grid; grid-template-columns: 90px 1fr 56px; gap: 12px; align-items: center; margin-top: 18px; font-size: 14px; }
.bar .v { text-align: right; font-weight: 700; }
.tr { height: 12px; background: var(--track); border-radius: 2px; position: relative; overflow: hidden; }
.tr i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--blue); }
.tr i.top { background: var(--tape); }

.faq { margin-top: 48px; max-width: 900px; border-bottom: 1px solid var(--line-strong); }
.faq details { border-top: 1px solid var(--line-strong); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--geo); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.375rem); letter-spacing: -.03em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 400; font-size: 26px; line-height: 1; color: var(--steel); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 24px; max-width: 40em; color: var(--steel); font-size: 16.5px; line-height: 1.55; }
.faq a { color: var(--ink); text-underline-offset: 3px; }

/* ---------- footer ---------- */
.foot { margin-top: 96px; background: var(--foot-bg); color: var(--foot-ink); font-size: 14.5px; }
.foot .wrap { min-height: 96px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px 28px; padding: 24px 0; }
.foot .brand { color: #fff; font-size: 17px; }
.foot a { color: var(--foot-ink); }
.foot .brand { color: #fff; }
.foot a:hover { color: #fff; }
.foot .grow { flex: 1; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .pop { right: -12px; }
  .links { gap: 26px; }
}
@media (max-width: 1000px) {
  .links { display: none; }
  .band-grid { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 68px; }
  .ins { grid-template-columns: 1fr; gap: 36px; }
  .hide-md { display: none; }
}
@media (max-width: 760px) {
  .topbar { min-height: 68px; }
  .hero { padding-top: 44px; }
  .stage { margin-top: 44px; padding-bottom: 0; }
  .pop { position: relative; right: auto; bottom: auto; width: auto; margin: 16px 0 0; }
  .hide-sm { display: none; }
  .wbar { gap: 14px; padding: 0 16px; }
  .wbrand { display: none; }
  .tool { padding: 16px 16px 12px; }
  .sum { padding: 4px 16px 12px; gap: 6px 18px; }
  .win th, .win td { padding: 12px 8px; }
  .win th:first-child, .win td:first-child { padding-left: 16px; }
  .win th:last-child, .win td:last-child { padding-right: 16px; }
  .fl { grid-template-columns: 1fr; }
  .sec { padding-top: 64px; }
  .foot { margin-top: 72px; }
}
@media (max-width: 560px) {
  .hide-xs, .tape .sep, .tape .loc2 { display: none; }
  .add { display: none; }
  .tabs { gap: 18px; }
  .win td b { font-size: 14px; }
  .win td small { display: none; }
  .tape { font-size: 10.5px; padding: 3px 6px; gap: 4px; }
}
@media (max-width: 420px) {
  .btn-lg { width: 100%; }
}

/* ---------- roadmap ---------- */
.road-sec { padding-bottom: 12px; }
.road { position: relative; margin-top: 60px; }
.road-track { position: absolute; left: 0; right: 0; top: 28px; height: 44px; background: var(--ink); border-radius: 999px; }
.road-track::before { content: ""; position: absolute; left: 110px; right: 84px; top: 50%; height: 4px; transform: translateY(-50%); background: repeating-linear-gradient(90deg, var(--tape) 0 26px, transparent 26px 48px); }
.road-track .end { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-weight: 700; font-size: 18px; color: var(--tape); }
:root[data-theme="dark"] .road-track { background: var(--surface-2); border: 1px solid var(--line-strong); }
.stops { position: relative; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stop { position: relative; padding-top: 112px; }
.pin { position: absolute; top: 0; left: 0; z-index: 2; width: 88px; height: 88px; border-radius: 50%; background: var(--tape); color: var(--tape-ink); border: 7px solid var(--bg); display: grid; place-items: center; box-shadow: 0 14px 30px -14px rgba(16, 33, 47, .5); }
.pin svg { width: 38px; height: 38px; }
.stop.more .pin { background: var(--bg); color: var(--ink); border: 3px dashed var(--ink); box-shadow: none; }
.tag { display: inline-flex; font-family: var(--mono); font-size: 12.5px; font-weight: 700; padding: 3px 10px; border-radius: 2px; background: var(--label-bg); color: var(--label-ink); }
.stop.more .tag { background: var(--tape); color: var(--tape-ink); }
.stop h3 { margin-top: 14px; font-family: var(--geo); font-weight: 700; font-size: 1.6rem; line-height: 1.08; letter-spacing: -.04em; }
.stop p { margin-top: 10px; color: var(--steel); font-size: 16.5px; line-height: 1.55; max-width: 24em; }
.stop p a { color: var(--ink); font-weight: 700; text-underline-offset: 3px; }

/* narrower screens: the road runs down the left side and each stop sits beside it */
@media (max-width: 1000px) {
  .road { margin-top: 44px; }
  .road-track { display: none; }
  .stops { grid-template-columns: 1fr; row-gap: 40px; }
  .stop { padding: 0 0 0 112px; min-height: 96px; }
  .stop p { max-width: 34em; }
  .pin { width: 78px; height: 78px; }
  .pin svg { width: 34px; height: 34px; }
  .stop:not(:last-child)::before { content: ""; position: absolute; z-index: 0; left: 17px; width: 44px; top: 39px; bottom: -79px; background: var(--ink); }
  .stop:not(:last-child)::after { content: ""; position: absolute; z-index: 1; left: 37px; width: 4px; top: 39px; bottom: -79px; background: repeating-linear-gradient(180deg, var(--tape) 0 22px, transparent 22px 40px); }
  :root[data-theme="dark"] .stop:not(:last-child)::before { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--line-strong); }
}
