/* ==========================================================================
   CROON public landing page
   Graphite/near-black surface, CROON orange #ff9900, precise product feel.
   Flow: Hero -> Hero demo -> Comparison -> Plans -> Final CTA -> Footer
   ========================================================================== */

:root {
  color-scheme: dark;
  --ink: #060607;
  --ink-2: #0a0a0c;
  --panel: #101013;
  --panel-2: #16161a;
  --panel-3: #1c1c21;
  --text: #f6f6f5;
  --muted: #a6a5a0;
  --soft: #76756f;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #ff9900;
  --brand-2: #ff7a00;
  --brand-soft: rgba(255, 153, 0, 0.12);
  --brand-line: rgba(255, 153, 0, 0.45);
  --teal: #17b8a6;
  --teal-soft: rgba(23, 184, 166, 0.13);
  --teal-line: rgba(23, 184, 166, 0.46);
  --radius: 6px;
  --radius-lg: 6px;
  --max: 1180px;
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic",
    "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic",
    "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--brand);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ol,
ul,
dl,
dd,
dt,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
}

button {
  font: inherit;
}

.hi {
  display: inline-block;
  flex: none;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.16em;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 12px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

/* -------------------------------------------------------------------------- */
/* Layout primitives                                                          */
/* -------------------------------------------------------------------------- */

.site-header,
.hero,
.comparison,
.plans,
.final-cta,
.site-footer,
.legal-page {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 184, 166, 0.12);
  animation: blink 2.4s ease-in-out infinite;
  content: "";
}

.kicker::after {
  width: 32px;
  height: 2px;
  background: var(--brand);
  content: "";
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px clamp(26px, 5vw, 70px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(32px, 3.4vw, 48px);
}

.section-head h2 {
  margin-top: 14px;
}

.section-head h2:first-child {
  margin-top: 0;
}

.section-head .lead {
  max-width: 380px;
  margin-top: 0;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

/* Primary CTA (Chrome 拡張を追加) */
.primary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #1b1205;
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  -webkit-text-stroke: 0.25px currentColor;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}

.primary-action:hover {
  transform: translateY(-1px);
  background: #ffa51f;
}

.primary-action .hi-arrow {
  width: 1.2em;
  height: 1.2em;
  margin-left: 8px;
  stroke-width: 2.35;
}

.primary-action:focus-visible,
.nav-cta:focus-visible,
.plan-action:focus-visible,
.chap:focus-visible,
.site-header nav a:focus-visible,
.site-footer nav a:focus-visible,
.skip-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Anchor jump offset so sticky header does not cover the target */
#comparison,
#plans,
#install,
#login {
  scroll-margin-top: 84px;
}

.primary-action.large {
  min-height: 58px;
  padding: 0 34px;
  font-size: 17px;
}

.chrome-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink);
  backdrop-filter: blur(8px);
}

.site-header.simple {
  position: static;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 30px);
  color: #d6d5cf;
  font-size: 13.5px;
  font-weight: 800;
}

.site-header nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav a:not(.nav-cta):hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--brand);
  color: #1b1205;
  font-weight: 900;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-cta .hi-arrow {
  width: 1em;
  height: 1em;
  stroke-width: 2.2;
}

.nav-cta:hover {
  background: #ffa51f;
  color: #1b1205;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
  padding: clamp(36px, 6vw, 72px) 0 clamp(44px, 5vw, 72px);
}

.hero-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.4vw, 30px);
  margin-bottom: clamp(48px, 5.5vw, 72px);
}

.hero-head h1 {
  max-width: none;
}

.m-break {
  display: none;
}

/* ---- Hero demo: browser window mock ---- */

.hero-demo {
  margin: 0;
}

.browser {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #0c0c0e;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.browser-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: #161619;
}

.bt-left {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.traffic {
  display: inline-flex;
  gap: 7px;
}

.traffic i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3a3a40;
}

.traffic i:nth-child(1) {
  background: #ff5f57;
}

.traffic i:nth-child(2) {
  background: #febc2e;
}

.traffic i:nth-child(3) {
  background: #28c840;
}

/* current-provider brand, top-left of the window */
.browser-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.browser-brand b {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.bb-ic {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.bb-ic::after {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

[data-provider="youtube"] .bb-ic {
  width: 30px;
  border-radius: 7px;
  background: #ff0033;
}

[data-provider="youtube"] .bb-ic::after {
  font-size: 11px;
  content: "\25B6";
}

[data-provider="twitch"] .bb-ic {
  background: #9146ff;
}

[data-provider="twitch"] .bb-ic::after {
  font-family: var(--display);
  content: "T";
}

[data-provider="tiktok"] .bb-ic {
  background: #050507;
}

[data-provider="tiktok"] .bb-ic::after {
  content: "\266A";
}

[data-provider="x"] .bb-ic {
  background: #050507;
}

[data-provider="x"] .bb-ic::after {
  content: "X";
}

.omnibox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 440px;
  height: 30px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0d0d10;
  color: #87867f;
  font-size: 13px;
  font-weight: 600;
}

.bt-search {
  flex: none;
  width: 15px;
  height: 15px;
  color: #87867f;
  stroke-width: 2.2;
}

.browser-tools {
  display: inline-flex;
  gap: 16px;
}

.browser-tools i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #2a2a30;
}

.browser-tools i:last-child {
  border-radius: 50%;
  background: #3a3a42;
}

/* ---- The video screen + provider scene ---- */

.screen {
  position: relative;
  aspect-ratio: 16 / 6.6;
  overflow: hidden;
  background: #000;
}

.scene {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}

.scene-glow,
.scene-subject {
  position: absolute;
  display: block;
}

.scene-vignette {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

/* YouTube — speaker (from behind) facing a warm-lit audience */
[data-provider="youtube"] .scene {
  background: #160f09;
}

/* audience: dense, bright warm bokeh — a crowd of out-of-focus lights */
[data-provider="youtube"] .scene-glow {
  inset: 0;
  background: transparent;
  filter: none;
}

/* speaker silhouette: head + shoulders from behind, foreground centre-left */
[data-provider="youtube"] .scene-subject {
  left: 39%;
  bottom: 0;
  width: 30%;
  height: 40%;
  transform: translateX(-50%);
  background: #030201;
  border-radius: 46% 46% 0 0 / 72% 72% 0 0;
  filter: drop-shadow(-3px -2px 5px rgba(255, 178, 104, 0.26));
}

[data-provider="youtube"] .scene-subject::before {
  position: absolute;
  left: 50%;
  bottom: 72%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #030201;
  transform: translateX(-50%);
  content: "";
}

/* Twitch — purple live gaming */
[data-provider="twitch"] .scene {
  background: #160f29;
}

[data-provider="twitch"] .scene-subject {
  inset: 18% 16% 12%;
  border: 1px solid rgba(180, 150, 255, 0.28);
  border-radius: 10px;
  background: #241247;
}

/* TikTok — vibrant short-form */
[data-provider="tiktok"] .scene {
  background: #1a0c14;
}

[data-provider="tiktok"] .scene-subject {
  left: 50%;
  top: 50%;
  width: 26%;
  height: 80%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: #2a1020;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* X — cool news feed */
[data-provider="x"] .scene {
  background: #0c1620;
}

[data-provider="x"] .scene-subject {
  left: 14%;
  bottom: 0;
  width: 72%;
  height: 40%;
  background: #11212e;
  clip-path: polygon(0 60%, 30% 30%, 52% 48%, 74% 22%, 100% 50%, 100% 100%, 0 100%);
}

/* ---- CROON overlay panel ---- */

.croon-panel {
  position: absolute;
  top: 6%;
  right: 3.4%;
  width: min(42%, 328px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.cp-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cp-logo {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--panel);
  color: #1b1205;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 900;
}

.cp-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.cp-toggle {
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 23px;
  margin-left: auto;
  padding: 2px;
  border-radius: 999px;
  background: var(--panel);
}

.cp-toggle i {
  width: 19px;
  height: 19px;
  margin-left: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cp-lang {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cp-globe {
  width: 14px;
  height: 14px;
  color: var(--soft);
  stroke-width: 1.9;
}

.cp-select {
  display: flex;
  align-items: center;
  margin-top: 9px;
  padding: 0 13px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0c0f;
  font-size: 15.5px;
  font-weight: 800;
}

.cp-caret {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: #9b9a94;
  stroke-width: 2.35;
}

.cp-divider {
  margin: 14px 0;
  border-top: 1px solid var(--line-soft);
}

.cp-audio {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
}

.cp-eq {
  display: inline-grid;
  grid-template-columns: repeat(6, 3px);
  gap: 2.5px;
  align-items: center;
  height: 18px;
}

.cp-eq i {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: var(--teal);
  animation: pulse 1.1s ease-in-out infinite;
}

.cp-eq i:nth-child(1) { animation-delay: 0ms; }
.cp-eq i:nth-child(2) { animation-delay: 140ms; }
.cp-eq i:nth-child(3) { animation-delay: 280ms; }
.cp-eq i:nth-child(4) { animation-delay: 90ms; }
.cp-eq i:nth-child(5) { animation-delay: 230ms; }
.cp-eq i:nth-child(6) { animation-delay: 320ms; }

.cp-eq.light i {
  background: #fff;
}

.cp-audio-label {
  font-size: 14px;
  font-weight: 800;
}

.cp-info {
  width: 15px;
  height: 15px;
  color: var(--soft);
  stroke-width: 2;
}

.cp-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.4);
  cursor: pointer;
}

.cp-cursor {
  position: absolute;
  right: 2px;
  bottom: -8px;
  width: 22px;
  height: 28px;
  pointer-events: none;
}

.cp-cursor::before {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(0 0, 0 78%, 26% 60%, 42% 92%, 58% 84%, 42% 54%, 76% 54%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
  content: "";
}

/* hover affordance */
.screen::after {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Cpath d='M5 3l14 8-14 8z' fill='white'/%3E%3C/svg%3E") center / 22px no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  content: "";
}

.browser:hover .screen::after {
  opacity: 1;
}

/* ---- Player control bar ---- */

.player-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #0c0c0e;
}

.pb-track {
  order: -1;
  flex: 1 0 100%;
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.pb-track i {
  display: block;
  width: 32%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.pb-track i::after {
  position: absolute;
  top: 50%;
  left: 32%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  content: "";
}

.pb-icons {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.pb-icons.right {
  margin-left: auto;
}

.pb-icons i {
  display: block;
  width: 15px;
  height: 14px;
  background: #d9d8d2;
}

.pb-play {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pb-next {
  clip-path: polygon(0 0, 62% 50%, 0 100%, 62% 100%, 62% 50%, 62% 0, 100% 0, 100% 100%, 62% 100%);
}

.pb-mute {
  clip-path: polygon(0 32%, 38% 32%, 70% 0, 70% 100%, 38% 68%, 0 68%);
}

.pb-cc {
  border-radius: 3px;
  background: transparent;
  box-shadow: inset 0 0 0 1.4px #d9d8d2;
}

.pb-gear {
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 1.4px #d9d8d2;
}

.pb-full {
  background: transparent;
  box-shadow:
    inset 4px 0 0 -2.6px #d9d8d2, inset -4px 0 0 -2.6px #d9d8d2,
    inset 0 4px 0 -2.6px #d9d8d2, inset 0 -4px 0 -2.6px #d9d8d2;
}

.pb-time {
  color: #d9d8d2;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ---- Video meta ---- */

.video-meta {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--line-soft);
  background: #0a0a0c;
}

.vm-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.vm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
}

.vm-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.vm-channel {
  display: grid;
  line-height: 1.3;
}

.vm-channel b {
  font-size: 14px;
  font-weight: 800;
}

.vm-channel small {
  color: var(--soft);
  font-size: 12px;
}

.vm-subscribe {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f4f4f2;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.vm-actions {
  display: inline-flex;
  gap: 10px;
  margin-left: auto;
}

.vm-actions i {
  width: 46px;
  height: 32px;
  border-radius: 999px;
  background: #1a1a1e;
}

@media (max-width: 720px) {
  .vm-actions {
    display: none;
  }
}

/* ---- Chapter strip (provider switcher) ---- */

.chapters {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.chap-track {
  position: relative;
  height: 2px;
  margin: -1px 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.chap-track::after {
  display: none;
}

.chap-fill {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  z-index: 1;
}

.chap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.chap:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.chap.is-active {
  border-color: var(--brand-line);
  background: var(--brand-soft);
  color: var(--brand);
}

.chap b {
  font-size: 17px;
  font-weight: 800;
}

/* -------------------------------------------------------------------------- */
/* Comparison                                                                 */
/* -------------------------------------------------------------------------- */

.comparison {
  padding: clamp(104px, 12vw, 168px) 0 0;
}

.comparison-head {
  display: block;
}

.comparison-head h2 {
  max-width: 100%;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.ctable-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 14, 16, 0.9);
}

.crow {
  display: grid;
  grid-template-columns: 150px minmax(230px, 1.15fr) repeat(3, minmax(190px, 1fr));
  min-width: 950px;
  border-bottom: 1px solid var(--line);
}

.crow:last-child {
  border-bottom: 0;
}

.crow > span,
.crow > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  color: #9c9b94;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
}

.crow > :last-child {
  border-right: 0;
}

.crow > [role="rowheader"] {
  justify-content: flex-start;
  color: #fff;
  font-weight: 900;
  font-size: 17.5px;
  text-align: left;
}

.crow-head > span {
  flex-direction: column;
  gap: 7px;
  min-height: 108px;
  justify-content: center;
  color: #b9b8b1;
  font-weight: 800;
  text-align: center;
  font-size: 18px;
}

.crow-head small {
  display: block;
  margin-top: 0;
  color: #b9b6ad;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.crow-head sup {
  margin-left: 0.2em;
  color: var(--brand);
  font-size: 0.58em;
  font-weight: 800;
  line-height: 0;
}

.crow .cc-croon {
  justify-content: center;
  border-right-color: var(--brand-line);
  border-left: 1px solid var(--brand-line);
  background: rgba(255, 153, 0, 0.08);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.crow-head .cc-croon {
  color: var(--brand);
  border-top: 1px solid var(--brand-line);
  border-radius: 6px 6px 0 0;
}

.cc-wordmark-img {
  display: block;
  width: 148px;
  height: auto;
}

.cmp-tag {
  display: inline;
  color: #9c9b94;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.cmp-tag sup {
  margin-left: 0.18em;
  color: var(--brand);
  font-size: 0.5em;
  font-weight: 800;
  line-height: 0;
}

.tag-match {
  color: #fff;
}

.tag-muted {
  color: #8f8d86;
}

.crow:last-child .cc-croon {
  border-bottom: 1px solid var(--brand-line);
  border-radius: 0 0 6px 6px;
}

/* subtle row hover for scanability */
.crow:not(.crow-head):hover > span,
.crow:not(.crow-head):hover > strong {
  background: rgba(255, 255, 255, 0.02);
}

.crow:not(.crow-head):hover > .cc-croon {
  background: rgba(255, 153, 0, 0.12);
}

.comparison-notes {
  margin: 14px 0 0;
  color: #77756d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
}

/* -------------------------------------------------------------------------- */
/* Plans                                                                      */
/* -------------------------------------------------------------------------- */

.plans {
  padding: clamp(104px, 12vw, 168px) 0 0;
}

.plan-billing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.plan-billing button,
.plan-billing strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-billing button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.plan-billing .is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.plan-billing strong {
  color: var(--brand);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.18s ease, transform 0.18s ease;
  overflow: hidden;
}

.plan:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.plan.is-featured {
  border-color: rgba(255, 153, 0, 0.45);
  background: rgba(255, 153, 0, 0.055);
  box-shadow: none;
  z-index: 2;
}

.plan.is-featured:hover {
  border-color: var(--brand);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #1b1205;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.plan-name {
  padding-right: 88px;
  color: #f8f7f1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.plan:not(.is-featured) .plan-name {
  padding-right: 0;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 78px;
  margin-top: 18px;
}

.plan-price-value {
  color: #fff;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}

.plan.is-featured .plan-price-value {
  color: var(--brand);
}

.plan-price .cur {
  margin-right: 4px;
  font-size: 26px;
  font-weight: 800;
  vertical-align: 0.68em;
}

.plan-price .per {
  color: #c9c7bf;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.plan-cycle {
  min-height: 20px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.plan-meter {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.plan-meter span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.plan-meter strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.plan-feature-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-feature-icon.is-plus {
  color: var(--brand);
}

.plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.plan-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.plan-action .hi {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-action.solid {
  border-color: transparent;
  background: var(--brand);
  color: #1b1205;
}

.plan-action.solid:hover {
  background: #ffa51f;
}

.business-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.business-plan-main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.business-plan-main h3 {
  margin: 0;
  color: #f8f7f1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.business-plan-main p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.business-plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-plan-features li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.business-plan-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.business-plan-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.business-plan-action .hi {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* -------------------------------------------------------------------------- */
/* Final CTA                                                                  */
/* -------------------------------------------------------------------------- */

.final-cta {
  display: grid;
  justify-items: center;
  gap: 38px;
  margin-top: clamp(104px, 12vw, 168px);
  margin-bottom: clamp(48px, 6vw, 84px);
  padding: clamp(72px, 9vw, 112px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.final-cta h2 {
  max-width: 20ch;
  font-size: clamp(44px, 6vw, 82px);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line-soft);
  color: var(--soft);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  font-weight: 700;
}

.site-footer nav a {
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--brand);
}

.footer-brand img {
  width: 122px;
}

/* -------------------------------------------------------------------------- */
/* Legal pages                                                                */
/* -------------------------------------------------------------------------- */

.legal-page {
  max-width: 860px;
  padding: 72px 0 110px;
}

.legal-page .eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.legal-page h1 {
  margin-bottom: 26px;
}

.legal-page h2 {
  margin: 38px 0 12px;
  font-size: 24px;
}

.legal-page p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page a {
  color: var(--brand);
}

/* ============================== Account console ============================== */

.dashboard-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 153, 0, 0.08), transparent 360px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 88px),
    #050607;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 28px;
  height: 100vh;
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  background: rgba(7, 9, 11, 0.96);
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.dashboard-brand img {
  width: 148px;
}

.dashboard-nav {
  display: grid;
  align-content: start;
  gap: 6px;
}

.dash-nav-item,
.sidebar-foot a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.dash-nav-item:hover,
.dash-nav-item.is-active {
  border-color: var(--line-brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.sidebar-foot {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dashboard-main {
  min-width: 0;
  padding: 26px clamp(18px, 3vw, 34px) 40px;
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

.dashboard-topbar h1 {
  margin-top: 4px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
}

.mini-kicker {
  display: inline-flex;
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.topbar-pill,
.iconless-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 17, 18, 0.9);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.topbar-pill {
  border-color: var(--line-brand);
  color: var(--brand);
}

.iconless-button {
  font-family: inherit;
  cursor: pointer;
}

.dashboard-panel {
  display: grid;
  gap: 14px;
}

.dashboard-panel[hidden] {
  display: none;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.dashboard-grid.usage-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.dashboard-grid.subscription-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.dash-card,
.login-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.dash-card h2,
.login-panel h1 {
  font-size: clamp(24px, 3vw, 34px);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-head span {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.card-head b,
.card-head a,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line-teal);
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.card-head a {
  border-color: var(--line-brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.muted-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.usage-split {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.usage-ring {
  --pct: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--brand) var(--pct), rgba(255, 255, 255, 0.1) 0);
  color: var(--text);
}

.usage-ring::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #101114;
  content: "";
  transform: translate(-50%, -50%);
}

.usage-ring strong,
.usage-ring span {
  position: relative;
  z-index: 1;
}

.usage-ring strong {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1;
}

.usage-ring span {
  margin-top: -42px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.compact-metrics,
.detail-list {
  display: grid;
  gap: 8px;
}

.compact-metrics > div,
.detail-list > div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}

.compact-metrics > div:last-child,
.detail-list > div:last-child {
  border-bottom: 0;
}

.compact-metrics dt,
.detail-list dt {
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compact-metrics dd,
.detail-list dd {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 850;
}

.account-actions-row .secondary-action,
.account-button {
  width: fit-content;
}

.table-card {
  min-width: 0;
}

.table-wrap {
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.dash-table th,
.dash-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12.5px;
  text-align: left;
  white-space: nowrap;
}

.dash-table th {
  color: var(--soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-table td {
  color: var(--text);
  font-weight: 750;
}

.status-chip {
  min-height: 24px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.status-chip.is-live {
  border-color: var(--line-teal);
  background: var(--teal-soft);
  color: var(--teal);
}

.status-chip.is-done {
  border-color: rgba(95, 214, 124, 0.42);
  background: rgba(95, 214, 124, 0.1);
  color: #5fd67c;
}

.price-line {
  font-size: 34px;
  font-weight: 950;
}

.price-line span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.dash-card label,
.login-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-card input,
.login-panel input {
  width: 100%;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08090a;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.account-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.account-button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

button.secondary-action.account-button {
  border: 1px solid var(--line);
}

.account-message {
  min-height: 20px;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 13px;
}

.account-message.is-error {
  color: #ffb4a8;
}

.panel-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.92);
}

.filter-label {
  display: grid;
  gap: 6px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-label select {
  min-width: 160px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08090a;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

.usage-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 160px;
  padding: 14px 6px 4px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.42);
}

.usage-bar {
  flex: 1 1 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  align-items: end;
  min-width: 0;
  height: 160px;
}

.usage-bar-fill {
  display: block;
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brand), rgba(255, 153, 0, 0.45));
  transition: height 220ms ease;
}

.usage-bar-label {
  color: var(--soft);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}

.usage-chart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.empty-row {
  color: var(--muted) !important;
  font-weight: 800 !important;
  text-align: center;
}

.login-body {
  display: grid;
  place-items: center;
}

.login-shell {
  display: grid;
  gap: 22px;
  width: min(520px, calc(100% - 36px));
  padding: 48px 0;
}

.login-brand {
  justify-self: start;
}

.login-panel {
  padding: 28px;
}

/* -------------------------------------------------------------------------- */
/* Animations                                                                 */
/* -------------------------------------------------------------------------- */

@keyframes eq {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.45); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes routeFlow {
  from { transform: translateX(-110%); }
  to { transform: translateX(240%); }
}

/* ---- Staggered page-load reveals (one orchestrated moment) ---- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.32s; }
.reveal-4 { animation-delay: 0.46s; }

.kicker::after {
  transform-origin: left;
  animation: drawLine 0.5s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    animation: none;
  }
  .kicker::after {
    transform: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .business-plan {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .business-plan-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-plan-action {
    width: 100%;
  }

  .availability {
    grid-template-columns: 1fr;
  }

  .dashboard-grid.usage-grid,
  .dashboard-grid.subscription-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .comparison,
  .plans,
  .final-cta,
  .site-footer,
  .legal-page {
    width: calc(100% - 32px);
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-head .lead {
    max-width: none;
    margin-top: 14px;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 16px;
    backdrop-filter: none;
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
  }

  .nav-cta {
    flex: none;
  }

  .m-break {
    display: inline;
  }

  .browser-brand b {
    font-size: 13px;
  }

  .croon-panel {
    top: 4%;
    right: 3%;
    width: 56%;
    padding: 11px;
    border-radius: 11px;
  }

  .cp-logo {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .cp-name {
    font-size: 13px;
  }

  .cp-toggle {
    width: 34px;
    height: 19px;
  }

  .cp-toggle i {
    width: 15px;
    height: 15px;
  }

  .cp-lang {
    margin-top: 10px;
    font-size: 10.5px;
  }

  .cp-select {
    height: 32px;
    font-size: 12.5px;
  }

  .cp-divider {
    margin: 10px 0;
  }

  .cp-audio-label {
    font-size: 11px;
  }

  .cp-play {
    width: 32px;
    height: 32px;
  }

  .cp-info {
    display: none;
  }

  .player-bar {
    gap: 10px;
    padding: 10px 12px;
  }

  .pb-icons.right {
    display: none;
  }

  .screen {
    aspect-ratio: 16 / 10;
  }

  .final-cta {
    padding-inline: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .chap b {
    font-size: 13px;
  }

  .plan-price-value {
    font-size: 56px;
  }

  .dashboard-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .dashboard-sidebar {
    position: static;
    height: auto;
    gap: 14px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-brand img {
    width: 124px;
  }

  .dashboard-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dash-nav-item {
    flex: none;
  }

  .sidebar-foot {
    display: none;
  }

  .dashboard-main {
    padding: 20px 16px 34px;
  }

  .dashboard-topbar {
    grid-template-columns: minmax(0, 1fr);
  }

  .topbar-actions {
    justify-content: start;
  }

  .usage-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .usage-ring {
    justify-self: center;
  }

  .compact-metrics > div,
  .detail-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .client-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 12px;
  }

  .account-actions-row .primary-action,
  .account-actions-row .secondary-action {
    width: 100%;
    white-space: normal;
  }
}
