@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  color-scheme: dark;
  --navy: #071624;
  --navy-2: #0b2032;
  --panel: #0e283d;
  --panel-soft: #102d44;
  --line: rgba(144, 194, 223, 0.18);
  --text: #f5f8fb;
  --muted: #92a9ba;
  --gold: #f4b753;
  --gold-2: #ffd184;
  --cyan: #50c7ed;
  --green: #43d7a0;
  --ink: #06111a;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--text);
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--navy); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}

.site-header.scrolled {
  background: rgba(6, 18, 29, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.brand img { width: 30px; height: 30px; }
.brand strong { color: var(--gold); }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b3c5d2;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: color .2s;
}
.desktop-nav button:hover { color: white; }
.account-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  background: rgba(6,16,25,.38);
  color: #c8d6df;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.account-button:hover { border-color: rgba(255,255,255,.35); color: white; }
.account-dot { width: 7px; height: 7px; border-radius: 50%; background: #6d8798; }
.account-button.signed-in .account-dot { background: var(--green); box-shadow: 0 0 9px rgba(67,215,160,.65); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 38px; padding: 0 17px; }
.button-primary { background: var(--gold); color: #15202a; box-shadow: 0 8px 30px rgba(244, 183, 83, .18); }
.button-primary:hover { background: var(--gold-2); }
.button-secondary { border-color: rgba(255,255,255,.24); color: white; background: rgba(6,16,25,.44); }
.button-secondary:hover { border-color: rgba(255,255,255,.48); }
.download-icon { font-size: 22px; line-height: 1; }

.hero {
  min-height: 850px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: 58px;
  padding: 128px max(24px, calc((100vw - 1240px) / 2)) 80px;
  overflow: hidden;
  background: #081726;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(transparent, rgba(3,12,19,.75));
  pointer-events: none;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: .44;
  background:
    linear-gradient(90deg, #071624 0%, rgba(7,22,36,.96) 25%, rgba(7,22,36,.5) 67%, #071624 100%),
    linear-gradient(0deg, #071624 0%, transparent 60%),
    url("/assets/champion-hero.jpg") center 20% / cover no-repeat;
  filter: saturate(.72);
}
.hero-content, .product-stage { position: relative; z-index: 2; min-width: 0; }
.hero-content { max-width: 590px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--cyan); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--gold); }
.hero h1 { max-width: 700px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 5.1vw, 82px); line-height: .98; font-weight: 500; }
.hero-tagline { max-width: 720px; margin: 12px 0 0; font-family: "Source Serif 4", Georgia, serif; font-size: 34px; font-weight: 500; line-height: 1.12; color: #dce7ed; }
.hero-copy { max-width: 610px; margin: 28px 0 32px; color: #b7cad7; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.download-meta { margin: 15px 0 0; color: #7791a4; font-size: 12px; }
.download-meta span { margin: 0 7px; color: #496477; }

.product-stage { transform: perspective(1200px) rotateY(-3deg); transform-origin: right center; }
.app-window { width: 720px; max-width: 100%; border: 1px solid rgba(89,180,220,.42); border-radius: 8px; overflow: hidden; background: #0a1d2e; box-shadow: 0 32px 90px rgba(0,0,0,.53), 0 0 0 1px rgba(255,255,255,.02) inset; }
.window-bar { height: 50px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; background: #0b1b2a; border-bottom: 1px solid var(--line); }
.window-brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; }
.window-brand img { width: 23px; height: 23px; }
.window-controls { display: flex; gap: 12px; }
.window-controls i { width: 9px; height: 9px; border: 1px solid #50728a; border-radius: 50%; }
.app-body { display: grid; grid-template-columns: 180px 1fr; min-height: 430px; }
.app-body aside { position: relative; padding: 27px 14px 18px; background: #081725; border-right: 1px solid var(--line); }
.app-body aside > p { margin: 0 11px 17px; color: #4c738d; font-size: 9px; font-weight: 800; }
.app-body aside button { width: 100%; height: 42px; display: flex; gap: 10px; align-items: center; margin: 3px 0; padding: 0 12px; border: 0; border-radius: 4px; color: #7290a5; background: transparent; font: inherit; font-size: 11px; text-align: left; }
.app-body aside button.active { color: white; background: #102b41; box-shadow: inset 2px 0 var(--gold); }
.app-body aside button span { color: var(--cyan); font-size: 14px; }
.client-status { position: absolute; left: 14px; right: 14px; bottom: 15px; display: flex; align-items: center; gap: 9px; padding: 11px; background: #0d263a; border: 1px solid var(--line); border-radius: 5px; }
.client-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.client-status div { display: flex; flex-direction: column; gap: 2px; }
.client-status strong { font-size: 9px; }
.client-status small { color: #6f8da2; font-size: 8px; }
.draft-panel { padding: 30px; background: linear-gradient(135deg, #0b2133, #0a1a29); }
.draft-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.draft-heading p { margin: 0 0 6px; color: var(--cyan); font-size: 9px; font-weight: 800; }
.draft-heading h2 { margin: 0; font-family: Georgia, serif; font-weight: 500; font-size: 27px; }
.ready-pill { padding: 6px 9px; border: 1px solid rgba(67,215,160,.35); color: var(--green); background: rgba(67,215,160,.08); border-radius: 3px; font-size: 8px; font-weight: 800; }
.role-grid { display: grid; gap: 10px; }
.role-grid article { display: grid; grid-template-columns: 45px 50px 1fr 30px; align-items: center; min-height: 68px; padding: 9px 12px; background: #102b40; border: 1px solid rgba(108,164,196,.2); border-radius: 5px; }
.role-grid .role { color: #63879f; font-size: 9px; font-weight: 800; }
.role-grid img { width: 45px; height: 45px; object-fit: cover; border-radius: 3px; }
.role-grid div { display: flex; flex-direction: column; gap: 4px; padding-left: 13px; }
.role-grid strong { font-size: 12px; }
.role-grid small { color: #67869b; font-size: 9px; }
.role-grid b { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #35556b; border-radius: 3px; color: #7192a8; font-size: 9px; }
.automation-strip { display: flex; align-items: center; gap: 11px; margin-top: 21px; padding-top: 19px; border-top: 1px solid var(--line); }
.automation-strip .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(67,215,160,.08); }
.automation-strip div { display: flex; flex-direction: column; gap: 3px; }
.automation-strip strong { font-size: 10px; }
.automation-strip small { color: #6f8ea3; font-size: 8px; }
.automation-strip span { margin-left: auto; color: var(--green); font-size: 8px; font-weight: 800; }

.trust-strip { min-height: 82px; display: flex; align-items: center; justify-content: center; gap: 55px; padding: 20px 24px; background: #06111a; border-bottom: 1px solid var(--line); color: #8ca4b5; font-size: 12px; }
.trust-strip p { color: white; font-family: Georgia, serif; font-size: 18px; }
.trust-strip div { display: flex; align-items: center; gap: 7px; }
.trust-strip span { color: var(--green); }
.section { padding: 120px max(24px, calc((100vw - 1140px) / 2)); }
.section-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading .eyebrow { justify-content: center; }
.section-heading.left .eyebrow { justify-content: flex-start; }
.section-heading h2, .premium-copy h2, .support-section h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 4vw, 58px); line-height: 1.07; font-weight: 500; }
.section-heading > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-section { background: #f2f4f4; color: #0b1b27; }
.feature-section .eyebrow { color: #157ca3; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature { min-height: 285px; padding: 30px; position: relative; overflow: hidden; border: 1px solid #d8e0e3; border-radius: 7px; background: #fff; }
.feature-wide { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 30px; }
.feature-number { color: #8ca0ac; font-size: 11px; font-weight: 800; }
.feature h3 { margin: 16px 0 10px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.feature p { margin: 0; color: #687d8a; line-height: 1.65; }
.mini-draft { display: grid; gap: 8px; padding: 14px; background: #0a2031; border-radius: 6px; }
.mini-draft > div { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 12px; padding: 9px; background: #102d43; border: 1px solid #1a415c; border-radius: 4px; }
.mini-draft img { width: 45px; height: 45px; object-fit: cover; border-radius: 3px; }
.mini-draft span { display: flex; flex-direction: column; }
.mini-draft small { color: #69a8c7; font-size: 8px; }
.mini-draft strong { color: white; font-size: 12px; }
.mini-draft b { color: var(--green); font-size: 9px; }
.role-row { display: flex; gap: 8px; margin-top: 48px; }
.role-row i { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid #d6e0e4; color: #738996; background: #f4f7f8; border-radius: 4px; font-style: normal; font-weight: 800; font-size: 11px; }
.role-row i.selected { border-color: #d29b3b; background: #fff5df; color: #9c6811; }
.rank-card { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; margin-top: 42px; padding: 16px; border: 1px solid #d9e4e7; background: #f6f9fa; border-radius: 5px; }
.rank-card > span { color: #31a5cf; font-size: 26px; }
.rank-card div { display: flex; flex-direction: column; }
.rank-card small { color: #82949f; font-size: 8px; }
.rank-card strong { font-size: 13px; }
.rank-card b { color: #1789ad; font-size: 11px; }
.analysis-card { padding: 20px; border: 1px solid #d9e3e6; background: #f7f9f9; border-radius: 6px; }
.analysis-top { display: flex; justify-content: space-between; font-size: 11px; }
.analysis-top span { color: #8498a3; }
.bars { display: grid; gap: 8px; margin: 23px 0; }
.bars i { width: var(--w); height: 7px; border-radius: 2px; background: linear-gradient(90deg, #23a4cf, #63cfe9); }
.analysis-card p { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding-top: 16px; border-top: 1px solid #dce5e7; }
.analysis-card p span { font-size: 9px; }
.analysis-card p strong { grid-row: 2; color: #132936; font-size: 14px; }
.analysis-card p b { grid-column: 2; grid-row: 1 / 3; align-self: center; color: #15966e; font-size: 9px; }

.premium-section { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr); gap: 75px; align-items: center; overflow: hidden; background: radial-gradient(circle at 90% 20%, rgba(244,183,83,.1), transparent 24%), #092033; }
.premium-section::after { content: ""; position: absolute; right: -180px; bottom: -260px; width: 540px; height: 540px; border: 1px solid rgba(80,199,237,.1); border-radius: 50%; box-shadow: 0 0 0 60px rgba(244,183,83,.018), 0 0 0 120px rgba(80,199,237,.014); }
.premium-copy { position: relative; z-index: 1; }
.premium-copy > p:not(.eyebrow) { max-width: 650px; color: #9db3c3; font-size: 16px; line-height: 1.7; }
.premium-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 24px; margin: 34px 0 0; padding: 0; list-style: none; color: #d8e3e9; font-size: 13px; }
.premium-copy li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; min-height: 66px; padding: 12px; border: 1px solid rgba(132,180,207,.13); border-radius: 6px; background: rgba(7,24,37,.25); }
.premium-copy li > svg { width: 23px; height: 23px; padding: 5px; border-radius: 50%; background: rgba(67,215,160,.11); color: var(--green); }
.premium-copy li span { display: grid; gap: 3px; }
.premium-copy li strong { color: #e7eff3; font-size: 12px; }
.premium-copy li small { color: #7e99aa; font-size: 9px; line-height: 1.45; }
.premium-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(132,180,207,.16); }
.premium-trust span { display: flex; align-items: center; gap: 7px; color: #87a1b2; font-size: 10px; font-weight: 700; }
.premium-trust svg { width: 15px; height: 15px; color: var(--gold); }
.public-pricing { position: relative; z-index: 1; padding: 28px; border: 1px solid rgba(244,183,83,.34); border-radius: 8px; background: rgba(13,42,64,.94); box-shadow: 0 28px 70px rgba(0,0,0,.25); }
.public-pricing-heading { display: grid; gap: 5px; margin-bottom: 20px; }
.public-pricing-heading > span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.public-pricing-heading > strong { font-family: "Source Serif 4", Georgia, serif; font-size: 25px; font-weight: 600; }
.public-pricing-heading > small { color: #819cad; font-size: 10px; }
.public-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.public-plan-grid article { position: relative; min-width: 0; display: grid; grid-template-rows: auto auto 1fr auto; gap: 10px; padding: 19px; border: 1px solid #35566c; border-radius: 7px; background: #0a2234; transition: transform .18s ease, border-color .18s ease; }
.public-plan-grid article:hover { transform: translateY(-2px); border-color: #4b7187; }
.public-plan-grid article > span { color: #7894a6; font-size: 9px; font-weight: 800; letter-spacing: .06em; }
.public-plan-grid article > p { margin: 0; color: #7690a2; font-size: 9px; line-height: 1.45; }
.public-plan-grid .button { width: 100%; min-height: 42px; padding: 0 11px; font-size: 11px; }
.public-plan-featured { border-color: rgba(244,183,83,.58) !important; background: linear-gradient(145deg, rgba(244,183,83,.08), #0a2234 48%) !important; }
.public-plan-featured em { position: absolute; top: 13px; right: 13px; padding: 4px 6px; border-radius: 3px; background: var(--gold); color: #071624; font-size: 7px; font-style: normal; font-weight: 800; letter-spacing: .05em; }
.public-price { display: flex; align-items: flex-start; margin: 4px 0; }
.public-price b { margin-top: 5px; color: var(--gold); font-size: 14px; }
.public-price strong { font-family: "Source Serif 4", Georgia, serif; font-size: 37px; line-height: .9; font-weight: 600; }
.public-price small { align-self: flex-end; margin-left: 4px; color: #7894a6; font-size: 9px; }
.public-payment-note { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; margin-top: 15px; padding: 13px; border: 1px solid rgba(67,215,160,.16); border-radius: 6px; background: rgba(67,215,160,.035); }
.public-payment-note > svg { width: 20px; color: var(--green); }
.public-payment-note div { display: grid; gap: 3px; }
.public-payment-note strong { font-size: 10px; }
.public-payment-note span { color: #7590a1; font-size: 8px; line-height: 1.45; }
.public-pricing > small { display: block; margin-top: 13px; color: #6f8a9d; font-size: 9px; text-align: center; }

.faq-section { background: #eff2f2; color: #0c1b26; }
.faq-section .eyebrow { color: #147fa6; }
.faq-list { border-top: 1px solid #cad5d9; }
.faq-list details { border-bottom: 1px solid #cad5d9; }
.faq-list summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 21px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; color: #4d6f81; font-family: system-ui; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: -5px 0 24px; color: #637984; line-height: 1.7; }
.support-section { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; background: radial-gradient(circle at 82% 18%, rgba(80,199,237,.07), transparent 23%), #071927; border-top: 1px solid var(--line); }
.support-section > div:first-child { max-width: 650px; }
.support-copy > p:last-child { color: #8da6b7; line-height: 1.7; }
.support-direct-button { margin-top: 18px; }
.support-privacy { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; margin-top: 28px; padding: 15px; border: 1px solid rgba(67,215,160,.16); border-radius: 7px; background: rgba(67,215,160,.035); }
.support-privacy > svg { width: 25px; color: var(--green); }
.support-privacy div { display: grid; gap: 4px; }
.support-privacy strong { font-size: 11px; }
.support-privacy span { color: #7893a4; font-size: 9px; line-height: 1.5; }
.support-chat { overflow: hidden; border: 1px solid #31536a; border-radius: 20px; background: linear-gradient(180deg, #0d2435 0%, #091b29 100%); box-shadow: 0 24px 65px rgba(0,0,0,.22); }
.support-chat-header { min-height: 74px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #29485d; background: linear-gradient(180deg, rgba(18,50,72,.95), rgba(11,35,52,.95)); }
.support-agent { display: flex; align-items: center; gap: 12px; }
.support-agent-avatar { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(244,183,83,.34); border-radius: 50%; background: linear-gradient(145deg, rgba(244,183,83,.18), rgba(244,183,83,.06)); color: var(--gold); }
.support-agent-avatar svg { width: 20px; }
.support-agent div { display: grid; gap: 4px; }
.support-agent strong { font-size: 12px; }
.support-agent div span { color: #7792a4; font-size: 9px; }
.support-presence-dot { width: 10px; height: 10px; border-radius: 50%; background: #637786; box-shadow: 0 0 0 4px rgba(99,119,134,.1); }
.support-presence-dot.online { background: var(--green); box-shadow: 0 0 0 4px rgba(67,215,160,.11); }
.support-chat-messages { height: 360px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; padding: 18px; scrollbar-color: #315069 transparent; background: linear-gradient(180deg, rgba(5,18,29,.18), transparent); }
.chat-message { max-width: 84%; display: grid; grid-template-columns: 31px minmax(0, 1fr); gap: 9px; align-items: start; animation: page-enter .2s ease-out both; }
.chat-message > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #17374c; color: var(--cyan); font-size: 8px; font-weight: 800; }
.chat-message > div { padding: 11px 13px; border: 1px solid #2b4b60; border-radius: 6px 14px 14px 14px; background: rgba(13,41,61,.96); }
.chat-message strong { display: block; margin-bottom: 4px; color: #9db2c0; font-size: 8px; }
.chat-message p { margin: 0; color: #d9e4e9; font-size: 11px; line-height: 1.55; white-space: pre-wrap; }
.chat-message.user { align-self: flex-end; grid-template-columns: minmax(0, 1fr) 31px; }
.chat-message.user > span { grid-column: 2; grid-row: 1; background: rgba(244,183,83,.13); color: var(--gold); font-size: 7px; }
.chat-message.user > div { grid-column: 1; grid-row: 1; border-color: rgba(244,183,83,.25); border-radius: 14px 6px 14px 14px; background: linear-gradient(145deg, #18374d, #132c40); }
.chat-message.admin > div { border-color: rgba(67,215,160,.24); }
.support-quick-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 14px; border-top: 1px solid rgba(41,72,93,.6); background: linear-gradient(180deg, rgba(10,34,52,.45), rgba(7,27,41,.92)); }
.support-quick-actions button { min-height: 34px; padding: 0 12px; border: 1px solid #2f4d62; border-radius: 999px; background: rgba(12,32,47,.95); color: #d9e4e9; font: inherit; font-size: 10px; font-weight: 700; cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease; }
.support-quick-actions button:hover { transform: translateY(-1px); border-color: rgba(244,183,83,.5); background: #12324a; color: white; }
.support-quick-actions button[data-support-human] { border-color: rgba(244,183,83,.45); background: rgba(244,183,83,.09); color: var(--gold); }
.support-chat-form { padding: 14px; border-top: 1px solid #29485d; background: linear-gradient(180deg, rgba(10,34,52,.98), rgba(7,27,41,.98)); }
.support-email-field { display: grid; gap: 6px; margin-bottom: 10px; color: #91a9b9; font-size: 9px; font-weight: 700; }
.support-email-field input { width: 100%; height: 40px; padding: 0 11px; border: 1px solid #315069; border-radius: 5px; outline: 0; background: #071a29; color: white; font: inherit; font-size: 11px; }
.support-chat-compose { display: grid; grid-template-columns: 1fr 46px; gap: 10px; align-items: end; }
.support-chat-compose textarea { width: 100%; min-height: 43px; height: 43px; max-height: 110px; resize: none; overflow: hidden; padding: 12px; border: 1px solid #315069; border-radius: 12px; outline: 0; background: #071a29; color: white; font: inherit; font-size: 11px; line-height: 1.5; }
.support-chat-compose textarea::-webkit-scrollbar { display: none; }
.support-chat-compose textarea:focus, .support-email-field input:focus { border-color: var(--gold); }
.support-chat-compose button { width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 14px; background: linear-gradient(145deg, #f4b753, #dc9d35); color: #071624; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.support-chat-compose button:hover { transform: translateY(-1px); }
.support-chat-compose button svg { width: 18px; }
.support-chat-form .form-status { margin-top: 7px; }
.support-section { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: auto; display: block; padding: 0; overflow: visible; border: 0; background: transparent; }
.support-section::after, .support-copy { display: none; }
.support-section .support-chat { position: absolute; right: 0; bottom: 76px; width: min(400px, calc(100vw - 32px)); opacity: 0; visibility: hidden; transform: translateY(16px) scale(.98); transform-origin: right bottom; pointer-events: none; transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.support-section .support-chat.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.support-chat-controls { display: flex; align-items: center; gap: 10px; }
.support-chat-controls button { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #315069; border-radius: 5px; background: #091e2e; color: #8da7b7; cursor: pointer; }
.support-chat-controls button:hover { color: white; border-color: #4a6e84; }
.support-chat-controls button svg { width: 15px; height: 15px; }
.support-chat-closed { display: grid; gap: 12px; padding: 14px; border-top: 1px solid #29485d; background: linear-gradient(180deg, rgba(10,34,52,.98), rgba(7,27,41,.98)); }
.support-chat-closed p { margin: 0; color: #9db3c2; font-size: 11px; }
.support-chat-closed .button { width: 100%; }
.support-launcher { min-width: 220px; height: 60px; display: grid; grid-template-columns: 44px 1fr 18px; align-items: center; gap: 12px; padding: 0 16px 0 8px; border: 1px solid #385b72; border-radius: 999px; background: rgba(13,42,64,.97); color: white; box-shadow: 0 14px 42px rgba(0,0,0,.32); font: inherit; text-align: left; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.support-launcher:hover { transform: translateY(-2px); border-color: rgba(244,183,83,.6); background: #12344c; }
.support-launcher-icon { position: relative; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #f4b753, #d7932e); color: #071624; box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.support-launcher-icon > svg { width: 21px; height: 21px; }
.support-launcher-icon b { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px; border: 2px solid #0d2a40; border-radius: 50%; background: #8498a5; }
.support-launcher-icon b.online { background: var(--green); }
.support-launcher-copy { min-width: 0; display: grid; gap: 2px; }
.support-launcher-copy strong { font-size: 13px; }
.support-launcher-copy small { color: #7f9aab; font-size: 9px; white-space: nowrap; }
.support-launcher > svg { width: 16px; height: 16px; color: #7f9aaa; transition: transform .2s ease; }
.support-launcher.chat-open > svg { transform: rotate(180deg); }
.support-form { display: grid; gap: 15px; padding: 26px; border: 1px solid rgba(120,175,205,.25); border-radius: 7px; background: #0b2539; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.support-form label, .auth-form label { display: grid; gap: 7px; color: #9db3c2; font-size: 11px; font-weight: 700; }
.support-form input, .support-form select, .support-form textarea,
.auth-form input {
  width: 100%;
  border: 1px solid #315069;
  border-radius: 5px;
  outline: 0;
  background: #071a29;
  color: white;
  font: inherit;
  font-size: 13px;
}
.support-form input, .support-form select, .auth-form input { height: 45px; padding: 0 12px; }
.support-form textarea { min-height: 118px; resize: vertical; padding: 12px; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus,
.auth-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(244,183,83,.1); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-status { min-height: 17px; margin: 0; color: #e77c76; font-size: 11px; line-height: 1.45; }
.form-status.success { color: var(--green); }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }

.modal-shell { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; }
.modal-shell[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,8,13,.78); backdrop-filter: blur(8px); }
.account-modal { position: relative; width: min(440px, 100%); padding: 34px; border: 1px solid #31516a; border-radius: 8px; background: #0a1f31; box-shadow: 0 28px 100px rgba(0,0,0,.58); }
.account-modal.console-open { width: min(1180px, calc(100vw - 40px)); height: min(780px, calc(100vh - 40px)); padding: 0; overflow: hidden; }
.account-modal.console-open > .modal-brand { display: none; }
.support-handoff-modal { width: min(560px, calc(100vw - 28px)); padding: 32px; border-radius: 18px; background: linear-gradient(180deg, #0d2436, #091a29); }
.support-handoff-head { display: grid; gap: 10px; margin-bottom: 24px; }
.support-handoff-badge { width: fit-content; padding: 6px 10px; border: 1px solid rgba(244,183,83,.3); border-radius: 999px; background: rgba(244,183,83,.08); color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.support-handoff-form { display: grid; gap: 16px; }
.support-handoff-form label { display: grid; gap: 7px; color: #9db3c2; font-size: 11px; font-weight: 700; }
.support-handoff-form input,
.support-handoff-form textarea { width: 100%; border: 1px solid #315069; border-radius: 12px; outline: 0; background: #071a29; color: white; font: inherit; font-size: 13px; }
.support-handoff-form input { height: 48px; padding: 0 14px; }
.support-handoff-form textarea { min-height: 132px; resize: none; padding: 14px; }
.support-handoff-form input:focus,
.support-handoff-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(244,183,83,.1); }
.modal-close { position: absolute; z-index: 5; top: 13px; right: 13px; width: 34px; height: 34px; border: 0; background: transparent; color: #7893a5; font-size: 25px; cursor: pointer; }
.modal-brand { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid rgba(244,183,83,.28); border-radius: 7px; background: rgba(244,183,83,.08); }
.modal-brand img { width: 34px; height: 34px; }
.account-modal h2 { margin: 0; font-family: Georgia, serif; font-size: 36px; font-weight: 500; overflow-wrap: anywhere; }
.modal-intro { margin: 10px 0 23px; color: #8fa8b8; font-size: 13px; line-height: 1.6; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 20px; border-bottom: 1px solid #29465d; }
.auth-tabs button { padding: 12px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #718b9d; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.auth-tabs button.active { border-color: var(--gold); color: white; }
.auth-form { display: grid; gap: 14px; }
.auth-form .button { width: 100%; margin-top: 2px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 19px 0 14px; color: #6f8a9d; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: #29465d; }
.google-auth-button { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid #39576d; border-radius: 6px; background: #f8fafc; color: #17212b; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.google-auth-button:hover { transform: translateY(-1px); background: white; box-shadow: 0 10px 25px rgba(0,0,0,.22); }
.google-auth-button svg { width: 20px; height: 20px; }
.text-button { border: 0; background: transparent; color: #72c7e8; font: inherit; font-size: 12px; cursor: pointer; }
.code-input { text-align: center; font-family: Consolas, monospace !important; font-size: 24px !important; letter-spacing: 6px; }
.account-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.account-summary div { display: grid; gap: 6px; padding: 15px; border: 1px solid #29475d; border-radius: 5px; background: #0c2940; }
.account-summary span { color: #7894a6; font-size: 9px; text-transform: uppercase; }
.account-summary strong { font-size: 13px; text-transform: capitalize; }
.account-modal [data-auth-view="account"] > .button { width: 100%; margin-bottom: 13px; }
.account-console { height: 100%; display: grid; grid-template-columns: 245px minmax(0, 1fr); }
.console-sidebar { display: flex; flex-direction: column; min-width: 0; padding: 22px 14px; border-right: 1px solid #223d51; background: #071724; }
.console-identity { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 11px; padding: 7px 8px 20px; border-bottom: 1px solid #20384a; }
.console-avatar, .large-avatar { display: grid; place-items: center; border: 1px solid rgba(244,183,83,.36); border-radius: 6px; background: rgba(244,183,83,.1); color: var(--gold); font-weight: 800; }
.console-avatar { width: 42px; height: 42px; font-size: 12px; }
.console-identity div:last-child { min-width: 0; display: grid; gap: 3px; }
.console-identity strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.console-identity small { overflow: hidden; text-overflow: ellipsis; color: #668398; font-size: 9px; }
.console-nav { display: grid; gap: 4px; padding: 20px 0; }
.console-nav button { width: 100%; height: 42px; display: flex; align-items: center; gap: 11px; padding: 0 12px; border: 0; border-left: 2px solid transparent; border-radius: 4px; background: transparent; color: #7894a6; font: inherit; font-size: 11px; font-weight: 700; text-align: left; cursor: pointer; }
.console-nav button span { width: 18px; color: #58bddd; text-align: center; font-size: 13px; }
.console-nav button:hover { color: white; background: #0b2538; }
.console-nav button.active { border-left-color: var(--gold); background: #102b40; color: white; }
.console-nav .admin-nav { margin-top: 12px; border-top: 1px solid #20384a; border-radius: 0 0 4px 4px; }
.console-links { display: grid; gap: 1px; margin-top: auto; padding-top: 14px; border-top: 1px solid #20384a; }
.console-links a, .console-links button { padding: 8px 12px; border: 0; background: transparent; color: #6f899a; font: inherit; font-size: 10px; text-align: left; cursor: pointer; }
.console-links a:hover, .console-links button:hover { color: white; }
.console-links .signout-link { color: #e27d76; }
.console-main { min-width: 0; overflow: auto; background: #0a1d2c; }
.console-header { position: sticky; z-index: 2; top: 0; min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 16px 62px 16px 28px; border-bottom: 1px solid #233f54; background: rgba(10,29,44,.96); backdrop-filter: blur(12px); }
.console-header p { margin: 0 0 3px; color: #4eb8dd; font-size: 8px; font-weight: 800; }
.console-header h2 { font-family: inherit; font-size: 18px; font-weight: 750; }
.console-plan { padding: 6px 9px; border: 1px solid rgba(244,183,83,.3); border-radius: 3px; background: rgba(244,183,83,.08); color: var(--gold); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.console-page { display: none; padding: 24px 28px 38px; }
.console-page.active { display: block; }
.account-hero { min-height: 145px; display: flex; align-items: center; gap: 17px; padding: 25px; border: 1px solid #2c4b61; border-radius: 7px; background: linear-gradient(115deg, #0d334a, #0b2539); }
.large-avatar { width: 66px; height: 66px; border-radius: 50%; font-size: 17px; }
.account-hero > div:nth-child(2) { min-width: 0; }
.account-hero p { margin: 0 0 6px; color: #50bde2; font-size: 8px; font-weight: 800; }
.account-hero h3 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; overflow-wrap: anywhere; }
.account-hero div span { color: #7896a9; font-size: 11px; }
.verified-badge { margin-left: auto; padding: 7px 10px; border: 1px solid rgba(67,215,160,.32); border-radius: 4px; color: var(--green); background: rgba(67,215,160,.07); font-size: 9px; font-weight: 800; }
.console-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 14px 0; }
.console-stats article { min-width: 0; display: grid; gap: 6px; padding: 18px; border: 1px solid #28465b; border-radius: 6px; background: #0d2639; }
.console-stats span { color: #718da0; font-size: 9px; text-transform: uppercase; }
.console-stats strong { overflow: hidden; text-overflow: ellipsis; font-size: 20px; }
.console-stats small { color: #5c7789; font-size: 9px; }
.console-panel { margin-top: 14px; padding: 20px; border: 1px solid #28465b; border-radius: 6px; background: #0c2538; }
.panel-heading { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 18px; }
.panel-heading h3 { margin: 0 0 4px; font-size: 14px; }
.panel-heading p { margin: 0; color: #718c9e; font-size: 10px; }
.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.quick-actions button, .quick-actions a { min-width: 0; min-height: 94px; display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; column-gap: 10px; align-content: center; padding: 14px; border: 1px solid #29485e; border-radius: 5px; background: #0a2031; color: white; text-align: left; cursor: pointer; }
.quick-actions span { grid-row: 1 / 3; align-self: center; color: var(--gold); font-size: 18px; }
.quick-actions strong { font-size: 11px; }
.quick-actions small { color: #668397; font-size: 8px; line-height: 1.45; }
.dashboard-form { display: grid; gap: 13px; }
.dashboard-form label { display: grid; gap: 7px; color: #8da6b7; font-size: 10px; font-weight: 700; }
.dashboard-form input, .dashboard-form textarea { width: 100%; border: 1px solid #315069; border-radius: 5px; outline: 0; background: #071a29; color: white; font: inherit; font-size: 12px; }
.dashboard-form input { height: 43px; padding: 0 12px; }
.dashboard-form textarea { min-height: 95px; padding: 12px; resize: vertical; }
.dashboard-form input:focus, .dashboard-form textarea:focus { border-color: var(--gold); }
.dashboard-form input:disabled { color: #758c9b; background: #0a2030; }
.dashboard-form .button { justify-self: start; min-height: 40px; }
.preference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.preference-grid div { display: grid; gap: 5px; padding: 13px; border: 1px solid #29475c; border-radius: 4px; background: #091f30; }
.preference-grid span { color: #6e899c; font-size: 8px; text-transform: uppercase; }
.preference-grid strong { font-size: 11px; }
.user-device-list, .admin-list { display: grid; gap: 9px; }
.empty-state { padding: 34px; border: 1px dashed #315066; border-radius: 5px; color: #718c9d; font-size: 11px; text-align: center; }
.user-device-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 11px; padding: 16px; border: 1px solid #29485e; border-radius: 5px; background: #0a2031; }
.user-device-card h4 { margin: 0 0 5px; font-size: 12px; }
.user-device-card p { margin: 0; color: #688599; font-size: 9px; }
.user-device-card dl { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 4px 0 0; }
.user-device-card dl div { display: grid; gap: 3px; padding-top: 9px; border-top: 1px solid #203b4f; }
.user-device-card dt { color: #5e7b8e; font-size: 8px; }
.user-device-card dd { margin: 0; font-size: 10px; }
.device-state { align-self: start; padding: 5px 7px; border-radius: 3px; color: var(--green); background: rgba(67,215,160,.08); font-size: 8px; font-weight: 800; }
.device-state.banned { color: #f18a82; background: rgba(241,138,130,.08); }
.icon-action { width: 34px; height: 34px; border: 1px solid #315066; border-radius: 4px; background: #091d2c; color: #82a0b2; cursor: pointer; }
.billing-banner { padding: 28px; border: 1px solid rgba(244,183,83,.34); border-radius: 7px; background: linear-gradient(120deg, #10364d, #0b2639); }
.billing-banner p { margin: 0 0 10px; color: var(--gold); font-size: 9px; font-weight: 800; }
.billing-banner h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.billing-banner span { color: #85a0b2; font-size: 11px; }
.billing-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.billing-options article { display: grid; gap: 14px; padding: 22px; border: 1px solid #2a495e; border-radius: 6px; background: #0c2538; }
.billing-options article > span { color: #6e8b9f; font-size: 9px; font-weight: 800; }
.billing-options strong { font-family: Georgia, serif; font-size: 35px; font-weight: 500; }
.billing-options strong small { margin-left: 4px; color: #7290a4; font-family: inherit; font-size: 10px; }
.premium-hero { min-height: 280px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(230px, .65fr); gap: 28px; align-items: center; padding: 38px; overflow: hidden; position: relative; border: 1px solid rgba(244,183,83,.38); border-radius: 8px; background: radial-gradient(circle at 80% 25%, rgba(244,183,83,.18), transparent 25%), linear-gradient(120deg, #123c55, #0b2538 62%, #152b3a); }
.premium-hero::after { content: ""; position: absolute; right: -95px; bottom: -155px; width: 340px; height: 340px; border: 1px solid rgba(244,183,83,.16); border-radius: 50%; box-shadow: 0 0 0 45px rgba(80,199,237,.025), 0 0 0 90px rgba(244,183,83,.018); }
.premium-hero-copy { position: relative; z-index: 1; }
.premium-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.premium-kicker svg { width: 16px; height: 16px; }
.premium-hero h3 { max-width: 650px; margin: 14px 0 12px; font-family: "Source Serif 4", Georgia, serif; font-size: 42px; font-weight: 600; line-height: 1.05; }
.premium-hero-copy > p { max-width: 640px; margin: 0; color: #9db4c3; font-size: 13px; line-height: 1.65; }
.premium-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; margin-top: 25px; }
.premium-benefits span { display: flex; align-items: center; gap: 8px; color: #d5e1e8; font-size: 11px; font-weight: 600; }
.premium-benefits svg { width: 15px; height: 15px; flex: 0 0 auto; padding: 2px; border-radius: 50%; background: rgba(67,215,160,.12); color: var(--green); }
.premium-emblem { position: relative; z-index: 1; min-height: 205px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(244,183,83,.22); border-radius: 8px; background: rgba(4,16,25,.38); text-align: center; backdrop-filter: blur(6px); }
.premium-emblem > div { width: 72px; height: 72px; display: grid; place-items: center; margin-bottom: 14px; border: 1px solid rgba(244,183,83,.38); border-radius: 50%; background: rgba(244,183,83,.11); box-shadow: 0 0 45px rgba(244,183,83,.12); }
.premium-emblem svg { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.6; }
.premium-emblem strong { font-family: "Source Serif 4", Georgia, serif; font-size: 25px; }
.premium-emblem span { margin-top: 4px; color: #819aab; font-size: 10px; }
.premium-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 17px; }
.premium-plan-grid article { position: relative; min-height: 225px; display: grid; grid-template-rows: auto auto 1fr auto; gap: 12px; padding: 25px; border: 1px solid #2d4d63; border-radius: 8px; background: #0c2538; transition: transform .18s ease, border-color .18s ease; }
.premium-plan-grid article:hover { transform: translateY(-2px); border-color: #477087; }
.premium-plan-grid article > span { color: #7691a3; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.premium-plan-grid strong { font-family: "Source Serif 4", Georgia, serif; font-size: 39px; font-weight: 600; }
.premium-plan-grid strong small { margin-left: 5px; color: #7893a5; font-family: Manrope, sans-serif; font-size: 11px; font-weight: 600; }
.premium-plan-grid p { margin: 0; color: #8099a9; font-size: 11px; line-height: 1.55; }
.premium-plan-grid .button { width: 100%; }
.premium-plan-grid .recommended-plan { border-color: rgba(244,183,83,.56); background: linear-gradient(145deg, rgba(244,183,83,.07), #0d2739 45%); box-shadow: 0 15px 35px rgba(0,0,0,.12); }
.recommended-plan > b { position: absolute; top: 16px; right: 16px; padding: 5px 8px; border-radius: 4px; background: var(--gold); color: #071624; font-size: 8px; letter-spacing: .05em; }
.payment-section { margin-top: 17px; padding: 25px; border: 1px solid #29485e; border-radius: 8px; background: #0b2234; }
.payment-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.payment-heading h3 { margin: 0 0 5px; font-size: 17px; }
.payment-heading p { margin: 0; color: #7791a2; font-size: 10px; }
.payment-security { display: flex; align-items: center; gap: 7px; color: var(--green); font-size: 10px; font-weight: 700; white-space: nowrap; }
.payment-security svg { width: 15px; height: 15px; }
.payment-method-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.payment-card { min-width: 0; min-height: 155px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 9px; padding: 20px; border: 1px solid #304e62; border-radius: 8px; background: linear-gradient(145deg, #132d40, #0c2232); color: white; text-align: left; }
.payment-card > svg { width: 25px; height: 25px; margin-bottom: auto; color: #9eb3c0; }
.payment-card div { display: grid; gap: 4px; }
.payment-card strong { font-size: 13px; }
.payment-card span { color: #829cac; font-size: 10px; line-height: 1.5; }
.premium-payment-card { border-color: rgba(244,183,83,.35); background: radial-gradient(circle at 80% 20%, rgba(244,183,83,.14), transparent 28%), linear-gradient(145deg, #173348, #0d2536); }
.premium-payment-card > svg { color: var(--gold); }
.premium-payment-card button { margin-top: 7px; padding: 0; border: 0; background: transparent; color: var(--gold); font: inherit; font-size: 10px; font-weight: 800; cursor: pointer; }
.saved-payment-card { position: relative; }
.saved-payment-card .card-brand { position: absolute; top: 20px; right: 20px; padding: 4px 7px; border-radius: 3px; background: #f4f7fb; color: #15233d; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.add-payment-card { cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.add-payment-card:hover:not(:disabled) { transform: translateY(-2px); border-color: #4c778f; }
.add-payment-card:disabled { cursor: default; opacity: .72; }
.security-rows { display: grid; }
.security-rows > div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid #254257; font-size: 11px; }
.security-rows span { color: #718c9e; }
.danger-action { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; padding: 16px; border: 1px solid rgba(231,124,118,.25); border-radius: 5px; background: rgba(231,124,118,.04); }
.danger-action strong { font-size: 11px; }
.danger-action p { max-width: 540px; margin: 5px 0 0; color: #7d919e; font-size: 9px; line-height: 1.5; }
.danger-action button { flex: 0 0 auto; min-height: 36px; padding: 0 12px; border: 1px solid rgba(231,124,118,.4); border-radius: 4px; background: rgba(231,124,118,.08); color: #f18b84; font: inherit; font-size: 9px; font-weight: 800; cursor: pointer; }
.admin-toolbar { display: flex; gap: 5px; margin-bottom: 14px; border-bottom: 1px solid #29465a; }
.admin-toolbar button { padding: 10px 14px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #6f899c; font: inherit; font-size: 10px; font-weight: 750; cursor: pointer; }
.admin-toolbar button.active { border-color: var(--gold); color: white; }
.admin-page { display: none; }
.admin-page.active { display: block; }
.admin-stats { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
.admin-search { width: 210px; height: 35px; padding: 0 10px; border: 1px solid #315069; border-radius: 4px; background: #071a29; color: white; font: inherit; font-size: 10px; }
.admin-row { display: grid; grid-template-columns: minmax(180px, 1fr) auto; align-items: center; gap: 14px; padding: 13px; border: 1px solid #29475c; border-radius: 5px; background: #091f30; }
.admin-row.banned { border-color: rgba(231,124,118,.3); }
.admin-row-main { min-width: 0; display: grid; gap: 3px; }
.admin-row-main strong { overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
.admin-row-main span { overflow: hidden; text-overflow: ellipsis; color: #678397; font-size: 9px; }
.admin-row-actions { display: flex; align-items: center; gap: 7px; }
.admin-row select, .admin-row input { height: 33px; border: 1px solid #315069; border-radius: 4px; background: #071a29; color: white; font: inherit; font-size: 9px; }
.admin-row select { padding: 0 8px; }
.admin-row input { width: 145px; padding: 0 9px; }
.mini-action { min-height: 33px; padding: 0 10px; border: 1px solid #35556c; border-radius: 4px; background: #0d293d; color: #9cb2c0; font: inherit; font-size: 9px; cursor: pointer; }
.mini-action.danger { color: #f18b84; border-color: rgba(231,124,118,.32); }
.mini-action.strong-danger { background: rgba(231,124,118,.1); color: #ffc0bb; }
.mini-action.good { color: var(--green); border-color: rgba(67,215,160,.28); }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.system-grid .console-panel { margin-top: 0; }
.system-grid .console-panel:first-child { grid-column: 1 / -1; }
.toast { position: fixed; z-index: 120; right: 22px; bottom: 22px; max-width: 360px; padding: 14px 17px; border: 1px solid #31516a; border-radius: 6px; background: #0b263a; color: white; box-shadow: 0 15px 45px rgba(0,0,0,.35); font-size: 12px; }
.toast[hidden] { display: none; }
.toast.error { border-color: rgba(231,124,118,.5); color: #ffc0bb; }

/* Account workspace */
.account-modal { animation: modal-enter .24s ease-out both; }
.account-subdomain [data-close-account] { display: none; }
.account-modal.console-open { width: min(1320px, calc(100vw - 36px)); height: min(850px, calc(100vh - 36px)); border-color: #365a72; }
.account-console { grid-template-columns: 270px minmax(0, 1fr); }
.console-sidebar { padding: 25px 17px; background: linear-gradient(180deg, #071927 0%, #06131f 100%); }
.console-identity { grid-template-columns: 50px minmax(0, 1fr); gap: 13px; padding: 4px 7px 24px; }
.console-avatar { width: 50px; height: 50px; border-radius: 10px; font-size: 14px; box-shadow: inset 0 0 24px rgba(244,183,83,.06); }
.console-identity strong { font-size: 14px; }
.console-identity small { font-size: 10px; }
.console-nav { gap: 7px; padding: 24px 0; }
.console-nav button { height: 48px; gap: 13px; padding: 0 15px; border-left-width: 3px; border-radius: 6px; font-size: 13px; transition: color .18s ease, background .18s ease, transform .18s ease; }
.console-nav button svg { width: 19px; height: 19px; flex: 0 0 auto; color: #55c5eb; stroke-width: 1.8; }
.console-nav button:hover { transform: translateX(2px); }
.console-nav button.active svg { color: var(--gold); }
.console-links a, .console-links button { padding: 9px 13px; font-size: 11px; }
.console-main { background: radial-gradient(circle at 90% 0%, rgba(44,123,157,.1), transparent 28%), #0a1d2c; }
.console-header { min-height: 88px; padding: 18px 68px 18px 34px; }
.console-header p { margin-bottom: 5px; font-size: 9px; letter-spacing: .08em; }
.console-header h2 { font-size: 25px; }
.console-plan { padding: 8px 12px; border-radius: 5px; font-size: 10px; }
.console-page { padding: 30px 34px 48px; animation: page-enter .25s ease-out both; }
.account-hero { min-height: 175px; gap: 22px; padding: 31px; border-radius: 8px; background: linear-gradient(120deg, #10374f, #0b2639 67%, #143044); overflow: hidden; position: relative; }
.account-hero::after { content: ""; position: absolute; width: 230px; height: 230px; right: -85px; bottom: -115px; border: 1px solid rgba(80,199,237,.22); border-radius: 50%; box-shadow: 0 0 0 34px rgba(80,199,237,.035), 0 0 0 68px rgba(244,183,83,.025); }
.large-avatar { width: 82px; height: 82px; font-size: 21px; box-shadow: 0 12px 34px rgba(0,0,0,.22); }
.account-hero p { font-size: 9px; letter-spacing: .08em; }
.account-hero h3 { font-family: "Source Serif 4", Georgia, serif; font-size: 34px; }
.account-hero div span { font-size: 13px; }
.verified-badge { position: relative; z-index: 1; padding: 8px 12px; font-size: 10px; }
.console-stats { gap: 14px; margin: 17px 0; }
.console-stats article { gap: 8px; padding: 22px; border-radius: 7px; transition: transform .18s ease, border-color .18s ease; }
.console-stats article:hover { transform: translateY(-2px); border-color: #3a6179; }
.console-stats span { font-size: 10px; letter-spacing: .05em; }
.console-stats strong { font-size: 24px; }
.console-stats small { font-size: 10px; line-height: 1.5; }
.console-panel { margin-top: 17px; padding: 25px; border-radius: 7px; }
.panel-heading { margin-bottom: 22px; }
.panel-heading h3 { font-size: 17px; }
.panel-heading p { font-size: 11px; line-height: 1.55; }
.quick-actions { gap: 12px; }
.quick-actions button, .quick-actions a { min-height: 112px; grid-template-columns: 38px 1fr; column-gap: 13px; padding: 19px; border-radius: 7px; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.quick-actions button:hover, .quick-actions a:hover { transform: translateY(-2px); border-color: #3a6680; background: #0e2a3f; }
.quick-actions svg { grid-row: 1 / 3; align-self: center; width: 25px; height: 25px; color: var(--gold); stroke-width: 1.7; }
.quick-actions strong { font-size: 13px; }
.quick-actions small { font-size: 10px; line-height: 1.5; }
.profile-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 17px; align-items: stretch; }
.profile-identity-card { position: relative; min-height: 355px; display: flex; flex-direction: column; align-items: center; padding: 0 24px 24px; overflow: hidden; border: 1px solid #2c4c62; border-radius: 8px; background: #0c2538; text-align: center; }
.profile-cover { width: calc(100% + 48px); height: 108px; flex: 0 0 auto; background: linear-gradient(125deg, #164d68, #0e334a 55%, rgba(244,183,83,.34)); }
.profile-big-avatar { width: 88px; height: 88px; display: grid; place-items: center; margin-top: -44px; border: 4px solid #0c2538; border-radius: 50%; background: linear-gradient(145deg, #f4b753, #d88f2f); color: #071624; font-size: 23px; font-weight: 800; box-shadow: 0 12px 28px rgba(0,0,0,.28); }
.profile-identity-card h3 { margin: 15px 0 4px; font-family: "Source Serif 4", Georgia, serif; font-size: 26px; font-weight: 600; overflow-wrap: anywhere; }
.profile-identity-card > p { max-width: 100%; margin: 0 0 14px; overflow: hidden; color: #85a0b2; font-size: 11px; text-overflow: ellipsis; }
.profile-identity-card .verified-badge { margin: 0; }
.profile-meta { width: 100%; display: grid; gap: 8px; margin-top: auto; padding-top: 21px; border-top: 1px solid #28465b; text-align: left; }
.profile-meta > span { color: #6f8b9d; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.profile-meta > div { display: flex; align-items: center; gap: 7px; }
.profile-meta code { min-width: 0; flex: 1; overflow: hidden; color: #a8bfcd; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.profile-meta button { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #35566c; border-radius: 5px; background: #091d2c; color: #83a2b5; cursor: pointer; }
.profile-meta button svg { width: 14px; }
.profile-form-panel { margin-top: 0; padding: 28px; }
.dashboard-form { gap: 17px; }
.dashboard-form label { gap: 9px; font-size: 11px; }
.dashboard-form input { height: 49px; padding: 0 14px; font-size: 13px; }
.dashboard-form textarea { font-size: 13px; }
.dashboard-form .button { min-height: 44px; }
.preference-grid { gap: 11px; }
.preference-grid div { gap: 7px; padding: 17px; border-radius: 6px; }
.preference-grid span { font-size: 9px; }
.preference-grid strong { font-size: 13px; }
.user-device-card { padding: 20px; border-radius: 7px; }
.user-device-card h4 { font-size: 14px; }
.user-device-card p { font-size: 10px; }
.user-device-card dt { font-size: 9px; }
.user-device-card dd { font-size: 11px; }
.billing-banner { padding: 34px; }
.billing-banner h3 { font-family: "Source Serif 4", Georgia, serif; font-size: 38px; }
.billing-banner span { font-size: 13px; }
.security-rows > div { padding: 17px 0; font-size: 13px; }
.danger-action { padding: 20px; }
.danger-action strong { font-size: 13px; }
.danger-action p { font-size: 10px; }
.danger-action button { min-height: 40px; font-size: 10px; }
.admin-toolbar { gap: 7px; margin-bottom: 18px; }
.admin-toolbar button { padding: 12px 17px; font-size: 12px; }
.admin-welcome { min-height: 145px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 27px; border: 1px solid #2c4b61; border-radius: 8px; background: linear-gradient(115deg, #12374e, #0b2538); }
.admin-welcome p { margin: 0 0 7px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.admin-welcome h3 { margin: 0 0 7px; font-family: "Source Serif 4", Georgia, serif; font-size: 30px; }
.admin-welcome span { color: #86a1b3; font-size: 11px; }
.admin-welcome .button { flex: 0 0 auto; gap: 8px; }
.admin-welcome svg { width: 17px; }
.admin-health { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.admin-health article { min-height: 78px; display: flex; align-items: center; gap: 13px; padding: 17px; border: 1px solid #29485d; border-radius: 7px; background: #0b2436; }
.admin-health svg { width: 22px; color: var(--green); }
.admin-health div { display: grid; gap: 4px; }
.admin-health span { color: #718d9f; font-size: 9px; text-transform: uppercase; }
.admin-health strong { font-size: 11px; }
.admin-health strong.warning { color: #f18b84; }
.support-admin-status { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; padding: 20px; border: 1px solid #2c4b61; border-radius: 7px; background: #0d293d; }
.support-admin-status > div { display: flex; align-items: center; gap: 13px; }
.support-admin-status > div > div { display: grid; gap: 4px; }
.support-admin-status strong { font-size: 13px; }
.support-admin-status p { margin: 0; color: #7893a4; font-size: 9px; }
.admin-support-layout { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: 14px; min-height: 470px; }
.admin-support-layout .console-panel { margin-top: 0; }
.admin-chat-list { display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.admin-chat-item { width: 100%; display: grid; gap: 5px; padding: 13px; border: 1px solid #29495e; border-radius: 6px; background: #091f30; color: white; font: inherit; text-align: left; cursor: pointer; }
.admin-chat-item:hover, .admin-chat-item.active { border-color: var(--gold); background: #102b40; }
.admin-chat-item.closed { opacity: .58; }
.admin-chat-item span { color: var(--cyan); font-size: 8px; text-transform: uppercase; }
.admin-chat-item strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.admin-chat-item p { margin: 0; overflow: hidden; color: #718d9f; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.admin-chat-thread { display: grid; grid-template-rows: auto 1fr auto; min-width: 0; }
.admin-chat-messages { min-height: 280px; display: flex; flex-direction: column; gap: 9px; overflow-y: auto; padding: 4px 2px 14px; }
.admin-thread-message { max-width: 82%; padding: 10px 12px; border: 1px solid #2b4a60; border-radius: 6px; background: #091f30; }
.admin-thread-message.admin { align-self: flex-end; border-color: rgba(67,215,160,.25); background: #103044; }
.admin-thread-message strong { color: #7fa1b5; font-size: 8px; }
.admin-thread-message p { margin: 4px 0 0; color: #d9e4e9; font-size: 10px; line-height: 1.5; white-space: pre-wrap; }
.admin-chat-reply { display: grid; grid-template-columns: 1fr auto; gap: 9px; padding-top: 13px; border-top: 1px solid #29485d; }
.admin-chat-reply textarea { min-height: 70px; resize: none; overflow: hidden; padding: 11px; border: 1px solid #315069; border-radius: 12px; outline: 0; background: #071a29; color: white; font: inherit; font-size: 11px; }
.admin-chat-reply textarea::-webkit-scrollbar { display: none; }
.admin-chat-reply .button { align-self: end; }
.admin-chat-reply.closed { opacity: .6; pointer-events: none; }
.admin-search { width: 260px; height: 41px; padding: 0 12px; font-size: 11px; }
.admin-row { gap: 17px; padding: 17px; border-radius: 6px; }
.admin-row-main strong { font-size: 13px; }
.admin-row-main span { font-size: 10px; }
.admin-row select, .admin-row input, .mini-action { height: 38px; font-size: 10px; }
.admin-row input { width: 175px; }
.empty-state { padding: 42px; font-size: 12px; }

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes page-enter {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

footer { display: grid; grid-template-columns: 1fr 1.6fr auto; gap: 30px; align-items: center; padding: 38px max(24px, calc((100vw - 1140px) / 2)); background: #040d14; border-top: 1px solid rgba(255,255,255,.07); color: #637d8e; }
.footer-brand { color: white; }
footer p { margin: 0; font-size: 10px; line-height: 1.55; }
footer nav { display: flex; gap: 20px; font-size: 11px; }
footer nav a:hover { color: white; }
footer > small { grid-column: 1 / -1; font-size: 9px; }

.legal-page { min-height: 100vh; background: #eef2f3; color: #10212c; }
.legal-header { position: static; background: #071624; border-bottom-color: var(--line); }
.legal-main { max-width: 820px; margin: 0 auto; padding: 80px 24px 120px; }
.legal-main h1 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 52px; font-weight: 500; }
.legal-main .updated { color: #718690; font-size: 12px; }
.legal-main h2 { margin: 42px 0 10px; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.legal-main p, .legal-main li { color: #536a76; line-height: 1.75; }
.legal-main a { color: #087da7; text-decoration: underline; }

@media (max-width: 1040px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 140px; }
  .hero-content { max-width: 720px; }
  .product-stage { width: min(760px, 100%); transform: none; }
  .premium-section { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 760px) {
  .site-header { width: 100vw; max-width: 100vw; height: 66px; gap: 12px; }
  .desktop-nav { display: none; }
  .account-button { margin-left: auto; }
  .site-header > .button { margin-left: auto; min-height: 36px; padding: 0 13px; }
  .account-button + .button { margin-left: 0; }
  .hero { width: 100vw; max-width: 100vw; padding-top: 112px; grid-template-columns: minmax(0, 1fr); }
  .hero-content { width: calc(100vw - 48px); max-width: calc(100vw - 48px); }
  .hero h1 { font-size: 48px; }
  .hero-tagline { font-size: 27px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .app-window { width: 650px; max-width: none; transform: scale(.72); transform-origin: left top; }
  .product-stage { width: calc(100vw - 48px); max-width: calc(100vw - 48px); height: 370px; overflow: hidden; }
  .trust-strip { justify-content: flex-start; gap: 26px; overflow-x: auto; }
  .trust-strip > * { flex: 0 0 auto; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-template-columns: 1fr; }
  .premium-copy ul { grid-template-columns: 1fr; }
  .support-section { grid-template-columns: 1fr; align-items: flex-start; }
  .support-form, .support-chat { width: 100%; }
  .admin-support-layout { grid-template-columns: 1fr; }
  .support-admin-status { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; }
  footer > small { grid-column: auto; }
  .account-modal.console-open { width: calc(100vw - 20px); height: calc(100vh - 20px); }
  .account-console { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .console-sidebar { padding: 10px; border-right: 0; border-bottom: 1px solid #223d51; }
  .console-identity, .console-links { display: none; }
  .console-nav { grid-template-columns: repeat(6, minmax(44px, 1fr)); gap: 3px; padding: 0; overflow-x: auto; }
  .console-nav button { height: 46px; justify-content: center; padding: 0; border-left: 0; border-bottom: 2px solid transparent; font-size: 0; }
  .console-nav button.active { border-bottom-color: var(--gold); }
  .console-nav button svg { width: 19px; height: 19px; }
  .console-nav .admin-nav { margin-top: 0; border-top: 0; }
  .console-header { min-height: 65px; padding: 12px 52px 12px 16px; }
  .console-page { padding: 14px; }
  .console-stats, .admin-stats, .quick-actions, .preference-grid, .billing-options, .system-grid, .admin-health, .premium-plan-grid, .payment-method-grid { grid-template-columns: 1fr; }
  .premium-hero { grid-template-columns: 1fr; padding: 26px; }
  .premium-hero h3 { font-size: 34px; }
  .premium-benefits { grid-template-columns: 1fr; }
  .premium-emblem { min-height: 170px; }
  .payment-heading { align-items: flex-start; flex-direction: column; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-identity-card { min-height: 330px; }
  .admin-welcome { align-items: flex-start; flex-direction: column; }
  .system-grid .console-panel:first-child { grid-column: auto; }
  .user-device-card dl { grid-template-columns: 1fr; }
  .admin-row { grid-template-columns: 1fr; }
  .admin-row-actions { flex-wrap: wrap; }
  .admin-row input { flex: 1; }
  .danger-action { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .brand span { font-size: 12px; }
  .account-button span:last-child { display: none; }
  .account-button { width: 36px; justify-content: center; padding: 0; }
  .site-header > .button { font-size: 12px; }
  .hero h1 { font-size: 42px; }
  .hero-tagline { font-size: 24px; }
  .product-stage { height: 315px; }
  .app-window { transform: scale(.6); }
  .section-heading h2, .premium-copy h2, .support-section h2 { font-size: 38px; }
  .form-row, .public-plan-grid { grid-template-columns: 1fr; }
  .account-modal { padding: 27px 20px; }
  .account-hero { align-items: flex-start; }
  .verified-badge { margin-left: 0; }
  .panel-heading { align-items: flex-start; flex-direction: column; }
  .admin-search { width: 100%; }
  .support-section { right: 10px; bottom: 10px; }
  .support-section .support-chat { position: fixed; right: 10px; bottom: 78px; width: calc(100vw - 20px); max-height: calc(100vh - 98px); }
  .support-chat-messages { height: min(380px, calc(100vh - 300px)); }
  .support-launcher { min-width: 184px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
