:root{
  --bg:#070b12;
  --bg-alt:#0c121c;
  --surface:#111827;
  --surface-2:#161f30;
  --border:#232d40;
  --text:#eef2f7;
  --text-dim:#9aa7bd;
  --text-faint:#5f6b82;
  --accent:#33d6a6;
  --accent-dim:#1f9d7a;
  --accent-2:#4f8cff;
  --warn:#f2b84b;
  --danger:#ef5f6b;
  --radius:14px;
  --shadow: 0 10px 40px rgba(0,0,0,0.35);

  /* Polish layer: a raised surface, a hairline top highlight, and the two
     ambient glows the page sits on. Kept as tokens so a future palette
     change moves everything at once. */
  --radius-lg:20px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px -12px rgba(0,0,0,.6);
  --shadow-lift: 0 2px 4px rgba(0,0,0,.4), 0 24px 60px -20px rgba(0,0,0,.75);
  --hairline: inset 0 1px 0 rgba(255,255,255,.055);
  --glow-a: rgba(51,214,166,.10);
  --glow-b: rgba(79,140,255,.08);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:inherit;
  line-height:1.2;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{color:var(--text-dim); margin:0 0 1em;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
.container{
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
}

/* status bar */
.status-bar{
  background:linear-gradient(90deg, rgba(51,214,166,.12), rgba(79,140,255,.12));
  border-bottom:1px solid var(--border);
  text-align:center;
  font-size:.82rem;
  color:var(--text-dim);
  padding:8px 16px;
}
.status-bar .dot{
  display:inline-block;
  width:8px;height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 8px var(--accent);
  margin-right:8px;
}

/* header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,11,18,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; height:72px; flex-wrap:nowrap;
}
.logo{
  display:flex; align-items:center; gap:8px; flex:none;
  font-weight:700; font-size:1.25rem; color:var(--text);
  /* Without this the wordmark breaks across three lines once the header has
     a third item in it, which is what happened when the account chip landed. */
  white-space:nowrap;
}
.logo-mark{color:var(--accent); font-size:1.3rem;}
/* Tightens its own spacing before anything wraps - the signed-in header
   carries one more item than the signed-out one.
   `flex:none` on the links is load-bearing: without it they inherit
   flex-shrink:1, shrink below their own nowrap text, and the labels overlap
   each other rather than the row simply getting narrower. */
.nav-links{display:flex; gap:28px; flex-wrap:nowrap; min-width:0;}
.nav-links a{white-space:nowrap; flex:none;}
.nav-links a{color:var(--text-dim); font-size:.92rem; transition:color .15s;}
.nav-links a:hover{color:var(--text);}
.header-actions{display:flex; align-items:center; gap:10px; flex:none;}
.nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px;}
.nav-toggle span{width:22px; height:2px; background:var(--text);}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 20px; border-radius:9px;
  font-size:.92rem; font-weight:600;
  border:1px solid transparent;
  cursor:pointer; transition:all .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent); color:#05261d;
  box-shadow:0 0 0 rgba(51,214,166,0);
}
.btn-primary:hover{background:#43e6b6; box-shadow:0 4px 20px rgba(51,214,166,.25);}
.btn-ghost{color:var(--text-dim);}
.btn-ghost:hover{color:var(--text);}
.btn-outline{border-color:var(--border); color:var(--text);}
.btn-outline:hover{border-color:var(--accent); color:var(--accent);}
.btn-lg{padding:14px 28px; font-size:1rem;}
.btn-block{width:100%;}

/* eyebrow */
.eyebrow{
  display:inline-block;
  font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--accent); margin-bottom:14px;
}

/* hero */
.hero{padding:88px 0 64px; overflow:hidden;}
.hero-inner{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.hero h1{font-size:2.75rem; color:var(--text);}
.hero .highlight{color:var(--accent);}
.hero-sub{font-size:1.08rem; max-width:520px;}
.hero-ctas{display:flex; gap:14px; margin:26px 0 14px; flex-wrap:wrap;}
.hero-note{font-size:.82rem; color:var(--text-faint);}

.mock-dashboard{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.mock-topbar{
  display:flex; align-items:center; gap:8px;
  padding:12px 16px; background:var(--surface-2); border-bottom:1px solid var(--border);
}
.mock-dot{width:10px;height:10px;border-radius:50%;}
.mock-dot.red{background:#ef5f6b;}
.mock-dot.yellow{background:#f2b84b;}
.mock-dot.green{background:#33d6a6;}
.mock-title{margin-left:8px; font-size:.8rem; color:var(--text-faint);}
.mock-body{padding:18px;}
.mock-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid var(--border);
  font-size:.86rem;
}
.mock-row:last-of-type{border-bottom:none;}
.badge{
  font-size:.74rem; font-weight:600; padding:4px 10px; border-radius:999px;
  white-space:nowrap;
}
.badge-up{background:rgba(51,214,166,.14); color:var(--accent);}
.badge-warn{background:rgba(242,184,75,.14); color:var(--warn);}
.mock-chart{margin-top:14px; color:var(--accent-2);}
.mock-chart svg{width:100%; height:50px; display:block;}
.mock-chart-label{font-size:.72rem; color:var(--text-faint);}

/* strip */
.strip{padding:36px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg-alt);}
.strip-label{text-align:center; font-size:.82rem; color:var(--text-faint); margin-bottom:18px;}
.strip-items{
  display:flex; flex-wrap:wrap; justify-content:center; gap:12px 28px;
}
.strip-items span{font-size:.92rem; font-weight:600; color:var(--text-dim);}

/* problem */
.problem{padding:88px 0;}
.problem-inner{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
.problem h2{font-size:1.5rem;}

/* section head */
.section-head{max-width:640px; margin:0 auto 52px; text-align:center;}
.section-head h2{font-size:2rem;}
.section-head p{font-size:1rem;}

/* features */
.features{padding:88px 0; background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.feature-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
}
.feature-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px;
  transition:border-color .15s, transform .15s;
  position:relative;
}
.feature-card:hover{border-color:var(--accent-dim); transform:translateY(-3px);}

/* hover tooltips - shared by feature cards and who-it's-for cards */
[data-tooltip]{position:relative; cursor:help;}
[data-tooltip]::after{
  content:attr(data-tooltip);
  position:absolute; bottom:calc(100% + 12px); left:50%;
  transform:translateX(-50%) translateY(6px);
  width:240px; text-align:left; line-height:1.5;
  background:var(--surface-2); color:var(--text); font-size:.8rem; font-weight:400;
  padding:12px 14px; border-radius:10px; border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  opacity:0; pointer-events:none; transition:opacity .15s ease, transform .15s ease;
  z-index:40;
}
[data-tooltip]::before{
  content:''; position:absolute; bottom:calc(100% + 5px); left:50%; transform:translateX(-50%);
  border:7px solid transparent; border-top-color:var(--surface-2);
  opacity:0; transition:opacity .15s ease; z-index:40;
}
[data-tooltip]:hover::after, [data-tooltip]:focus-visible::after{opacity:1; transform:translateX(-50%) translateY(0);}
[data-tooltip]:hover::before, [data-tooltip]:focus-visible::before{opacity:1;}
/* Icon and title share a row, description sits under both. The icon used to
   be a plain block div, so once it was given a background in the polish pass
   it stretched to the full card width and became a bar with the title
   stranded underneath it. */
.feature-card{display:flex; flex-direction:column;}
.feature-head{display:flex; align-items:center; gap:12px; margin-bottom:12px;}
.feature-icon{
  display:inline-flex; align-items:center; justify-content:center; flex:none;
  width:42px; height:42px; border-radius:11px;
  font-size:1.25rem; line-height:1; margin:0;
}
.feature-card h3{
  font-size:1rem; color:var(--text); margin:0; line-height:1.3; letter-spacing:-.01em;
}
.feature-card p{font-size:.87rem; margin-bottom:0; line-height:1.65;}

/* how it works */
.how{padding:88px 0;}
.how-steps{display:grid; grid-template-columns:repeat(3,1fr); gap:32px;}
.how-step{text-align:center; padding:0 12px;}
.how-number{
  width:44px; height:44px; border-radius:50%;
  background:var(--surface-2); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:var(--accent);
  margin:0 auto 18px;
}
.how-step h3{font-size:1.1rem; color:var(--text);}
.how-step p{font-size:.9rem;}

/* pricing */
.pricing{padding:88px 0; background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
/* padding-top leaves room for the "Most popular" badge, which sits above
   the featured card's top edge. */
.pricing-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; align-items:stretch; padding-top:16px;}
.price-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px 24px;
  display:flex; flex-direction:column;
}
.price-card.featured{
  border-color:var(--accent);
  box-shadow:0 0 0 1px var(--accent), 0 20px 50px rgba(51,214,166,.12);
  transform:translateY(-8px);
}
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#05261d;
  font-size:.72rem; font-weight:700; padding:4px 12px; border-radius:999px;
}
.price-card h3{font-size:1.1rem; color:var(--text);}
.price-desc{font-size:.84rem; min-height:42px;}
.price{font-size:2rem; font-weight:700; color:var(--text); margin-bottom:20px;}
.price span{font-size:.85rem; font-weight:500; color:var(--text-faint);}
.price-features{margin-bottom:24px; flex:1;}
.price-features li{
  font-size:.86rem; color:var(--text-dim);
  padding:8px 0 8px 22px; border-bottom:1px solid var(--border);
  position:relative;
}
.price-features li:last-child{border-bottom:none;}
.price-features li::before{
  content:"✓"; position:absolute; left:0; color:var(--accent); font-weight:700;
}
.compare-note{
  font-size:.76rem; color:var(--text-faint); margin:12px 0 0; padding-top:12px;
  border-top:1px solid var(--border); line-height:1.5;
}
/* The discount stamp is positioned against its own wrapper around the buy
   button, so the card must NOT clip its overflow - doing so also cut off
   the "Most popular" badge, which deliberately sits above the card edge. */
.discount-stamp{
  position:absolute; top:-12px; right:-10px; transform:rotate(12deg);
  background:var(--danger); color:#fff; font-size:.72rem; font-weight:800;
  padding:4px 12px; border-radius:999px;
  box-shadow:0 2px 8px rgba(0,0,0,.35); letter-spacing:.02em; white-space:nowrap;
}

/* who it's for */
.who{padding:88px 0;}
.who-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;}
.who-card{
  display:flex; align-items:center; gap:12px;
  background:var(--surface); border:1px solid var(--border); border-radius:12px;
  padding:18px 20px; font-weight:600; font-size:.95rem;
}
.who-card span{font-size:1.3rem;}

/* cta */
.cta{
  padding:80px 0; text-align:center;
  background:linear-gradient(135deg, rgba(51,214,166,.1), rgba(79,140,255,.08));
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.cta h2{font-size:1.9rem;}
.cta p{font-size:1.05rem; margin-bottom:26px;}

/* contact */
.contact{padding:88px 0;}
.contact-inner{display:grid; grid-template-columns:1fr 1fr; gap:56px;}
.contact h2{font-size:1.9rem;}
.contact-list{margin-top:20px;}
.contact-list li{font-size:.95rem; color:var(--text-dim); margin-bottom:10px;}
.contact-list a{color:var(--accent-2);}
.contact-form{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:28px; display:flex; flex-direction:column; gap:16px;
}
.contact-form label{font-size:.84rem; color:var(--text-dim); display:flex; flex-direction:column; gap:6px;}
.contact-form input, .contact-form textarea{
  background:var(--bg); border:1px solid var(--border); border-radius:8px;
  padding:10px 12px; color:var(--text); font-family:inherit; font-size:.92rem;
  resize:vertical;
}
.contact-form input:focus, .contact-form textarea:focus{outline:none; border-color:var(--accent);}
.form-note{font-size:.82rem; color:var(--accent); min-height:1em; margin:0;}

/* footer */
.site-footer{border-top:1px solid var(--border); background:var(--bg-alt); padding:56px 0 24px;}
.footer-inner{display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom:40px;}
.footer-brand{font-weight:700; font-size:1.1rem; max-width:280px;}
.footer-brand p{font-size:.85rem; margin-top:10px; font-weight:400;}
.footer-links{display:flex; gap:56px;}
.footer-links h4{font-size:.82rem; color:var(--text-faint); text-transform:uppercase; letter-spacing:.05em; margin-bottom:14px;}
.footer-links a{display:block; font-size:.9rem; color:var(--text-dim); margin-bottom:10px;}
.footer-links a:hover{color:var(--text);}
.footer-bottom{border-top:1px solid var(--border); padding-top:20px;}
.footer-bottom p{font-size:.8rem; color:var(--text-faint); margin:0;}

/* scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index:100; transition:width .1s linear;
}

/* scroll reveal */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;}
.reveal.visible{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}

/* mock dashboard live indicator */
.mock-live{
  margin-left:auto; display:inline-flex; align-items:center; gap:6px;
  font-size:.72rem; font-weight:600; color:var(--accent);
}
.mock-live-dot{
  width:6px; height:6px; border-radius:50%; background:var(--accent);
  animation:pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot{
  0%, 100%{opacity:1; box-shadow:0 0 0 0 rgba(51,214,166,.5);}
  50%{opacity:.6; box-shadow:0 0 0 4px rgba(51,214,166,0);}
}
.mock-chart svg polyline{
  stroke-dasharray:600;
  stroke-dashoffset:600;
  animation:draw-line 1.8s ease forwards .3s;
}
@keyframes draw-line{ to{ stroke-dashoffset:0; } }

/* comparison table */
.comparison{padding:88px 0; background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.comparison-table-wrap{
  max-width:760px; margin:0 auto;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden;
}
.comparison-table{width:100%; border-collapse:collapse;}
.comparison-table th, .comparison-table td{
  padding:16px 20px; text-align:left; font-size:.9rem; border-bottom:1px solid var(--border);
}
.comparison-table th{
  font-size:.76rem; text-transform:uppercase; letter-spacing:.05em; color:var(--text-faint); font-weight:600;
}
.comparison-table td:first-child{color:var(--text); font-weight:500;}
.comparison-table td:not(:first-child), .comparison-table th:not(:first-child){text-align:center;}
.comparison-table tr:last-child td{border-bottom:none;}
.highlight-col{
  color:var(--accent) !important; font-weight:700 !important;
  background:rgba(51,214,166,.06);
}
.comparison-table th.highlight-col{background:rgba(51,214,166,.1); color:var(--accent) !important;}

/* FAQ */
.faq{padding:88px 0;}
.faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px;}
.faq-item{
  background:var(--surface); border:1px solid var(--border); border-radius:12px;
  padding:18px 22px;
}
.faq-item summary{
  cursor:pointer; font-weight:600; color:var(--text); font-size:.96rem;
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+"; color:var(--accent); font-size:1.3rem; font-weight:400; flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{margin:14px 0 0; font-size:.9rem;}

/* floating CTA */
.floating-cta{
  position:fixed; bottom:24px; right:24px; z-index:90;
  background:var(--accent); color:#05261d; font-weight:700; font-size:.88rem;
  padding:13px 22px; border-radius:999px; box-shadow:0 8px 30px rgba(51,214,166,.35);
  opacity:0; transform:translateY(16px) scale(.95); pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.floating-cta.visible{opacity:1; transform:translateY(0) scale(1); pointer-events:auto;}
.floating-cta:hover{background:#43e6b6;}

/* responsive */
@media (max-width:1180px){
  .nav-links{gap:18px;}
  .nav-links a{font-size:.88rem;}
  .site-account-name{display:none;}
}
@media (max-width:1040px){
  .nav-links{gap:13px;}
  .nav-links a{font-size:.85rem;}
}
@media (max-width:960px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-visual{order:-1;}
  .mock-dashboard{transform:none;}
  .problem-inner{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:repeat(2,1fr);}
  .pricing-grid{grid-template-columns:repeat(2,1fr);}
  .price-card.featured{transform:none;}
  .who-grid{grid-template-columns:repeat(2,1fr);}
  .how-steps{grid-template-columns:1fr;}
  .contact-inner{grid-template-columns:1fr;}
}
@media (max-width:800px){
  .nav-links, .header-actions{display:none;}
  .nav-toggle{display:flex;}
}
@media (max-width:800px){
  .site-header.nav-open{position:fixed; top:0; left:0; right:0; bottom:0; overflow-y:auto;}
  .site-header.nav-open .header-inner{flex-wrap:wrap;}
  .site-header.nav-open .nav-links,
  .site-header.nav-open .header-actions{
    display:flex; flex-direction:column;
    width:100%;
    background:var(--bg);
    padding:8px 24px 20px; gap:16px;
  }
  .site-header.nav-open .header-actions{
    padding-top:0; gap:12px; border-top:1px solid var(--border); padding-top:20px;
  }
}
@media (max-width:600px){
  .hero h1{font-size:2rem;}
  .feature-grid{grid-template-columns:1fr;}
  .pricing-grid{grid-template-columns:1fr;}
  .who-grid{grid-template-columns:1fr;}
}


/* =========================================================================
   Presentation layer
   Everything below refines the existing structure rather than replacing it:
   an ambient background instead of flat black, a consistent card treatment
   with a hairline highlight, a tighter display type scale, and hover states
   that lift rather than merely change colour.
   ========================================================================= */

/* Ambient ground. Two soft brand glows plus a very faint grid, so large dark
   areas read as depth rather than as an unpainted background. */
body{
  background-color:var(--bg);
  background-image:
    radial-gradient(900px 520px at 12% -8%, var(--glow-a), transparent 60%),
    radial-gradient(760px 480px at 92% 2%, var(--glow-b), transparent 62%),
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size:auto, auto, 64px 64px, 64px 64px;
  background-attachment:fixed, fixed, scroll, scroll;
  letter-spacing:-.005em;
}

/* Display type: larger and tighter at the top of the scale, so headings feel
   set rather than merely bold. */
h1{letter-spacing:-.032em;}
h2{letter-spacing:-.024em;}
h3{letter-spacing:-.014em;}

.hero-copy h1{
  font-size:clamp(2.35rem, 5.4vw, 4.05rem);
  line-height:1.045;
  font-weight:800;
}
.hero-sub{
  font-size:clamp(1.02rem, 1.55vw, 1.2rem);
  line-height:1.62;
  max-width:37em;
}
.section-head h2{font-size:clamp(1.7rem, 3.2vw, 2.55rem); line-height:1.13;}

/* The eyebrow is the label above each section - small caps, brand-tinted,
   with a short rule so it reads as a marker rather than stray text. */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.74rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase;
  color:var(--accent);
}
.eyebrow::before{
  content:''; width:22px; height:1px; background:currentColor; opacity:.55;
}

/* Header: translucent and blurred so content passing under it stays visible. */
.site-header{
  background:color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter:saturate(1.5) blur(16px);
  -webkit-backdrop-filter:saturate(1.5) blur(16px);
}

/* One card treatment, applied to everything that is a card. */
.feature-card,
.who-card,
.price-card,
.faq-item,
.mock-dashboard,
.comparison-table-wrap{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card), var(--hairline);
  transition:transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover,
.who-card:hover{
  transform:translateY(-3px);
  border-color:color-mix(in srgb, var(--accent) 34%, var(--border));
  box-shadow:var(--shadow-lift), var(--hairline);
}

/* The feature icon reads as a lit tile rather than a flat square. Sizing
   lives in the base rule above; this is only the surface treatment. */
.feature-icon{
  background:linear-gradient(150deg, color-mix(in srgb, var(--accent) 20%, transparent), transparent 72%);
  border:1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  box-shadow:var(--hairline);
}

/* Pricing: the recommended plan is raised out of the row instead of only
   being labelled. */
.price-card{position:relative;}
.price-card[data-plan="business"]{
  border-color:color-mix(in srgb, var(--accent) 44%, var(--border));
  box-shadow:0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent), var(--shadow-lift), var(--hairline);
}
.price-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lift), var(--hairline);}
.price{letter-spacing:-.035em;}
.price-features li{transition:color .15s ease;}
.price-card:hover .price-features li{color:var(--text-dim);}

/* Buttons: a hairline of light along the top edge, and a real press state. */
.btn{
  transition:transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn-primary{box-shadow:0 1px 0 rgba(255,255,255,.22) inset, 0 8px 22px -10px var(--accent);}
.btn-primary:hover{transform:translateY(-1px); box-shadow:0 1px 0 rgba(255,255,255,.28) inset, 0 14px 30px -12px var(--accent);}
.btn-primary:active{transform:translateY(0);}
.btn-outline:hover{border-color:var(--accent); color:var(--accent);}

/* The dashboard mock is the hero's proof; give it real elevation. */
.mock-dashboard{
  box-shadow:0 40px 90px -32px rgba(0,0,0,.85), 0 0 0 1px var(--border), var(--hairline);
}

/* The refund note sits with the pricing FAQ and must not be skimmable-past. */
.no-refunds-note{
  border-left:2px solid color-mix(in srgb, var(--warn) 60%, var(--border));
  padding-left:14px;
  color:var(--text-dim);
}
.no-refunds-note strong{color:var(--text);}

/* Respect the OS setting: no lifts, no smooth scrolling, no transitions. */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{transition-duration:.01ms !important; animation-duration:.01ms !important;}
  .feature-card:hover,.who-card:hover,.price-card:hover,.btn-primary:hover{transform:none;}
}

/* =========================================================================
   Themes
   Mirrored from the app: whatever theme you chose in your dashboard is
   applied here too when you are signed in (see session.js). Dark is the
   default and what everyone signed out sees.
   ========================================================================= */
:root[data-theme="midnight"]{
  --bg:#080d1a; --bg-alt:#0d1526; --surface:#121c33; --surface-2:#182444;
  --border:#25355c; --text:#eaf0ff; --text-dim:#a3b2d4; --text-faint:#6b7ca6;
  --accent:#5ab8ff; --accent-dim:#2f8fdb; --accent-2:#8f7dff;
  --warn:#ffc65c; --danger:#ff6b7d;
  --glow-a:rgba(90,184,255,.10); --glow-b:rgba(143,125,255,.08);
}
:root[data-theme="graphite"]{
  --bg:#101113; --bg-alt:#17191c; --surface:#1c1f23; --surface-2:#24282d;
  --border:#33383f; --text:#f2f3f5; --text-dim:#a8adb5; --text-faint:#71777f;
  --accent:#f5a524; --accent-dim:#c07d10; --accent-2:#7dd3fc;
  --warn:#facc15; --danger:#f87171; --radius:12px;
  --glow-a:rgba(245,165,36,.08); --glow-b:rgba(125,211,252,.06);
}
:root[data-theme="aurora"]{
  --bg:#0b0714; --bg-alt:#120c1f; --surface:#191029; --surface-2:#221639;
  --border:#33224f; --text:#f4eeff; --text-dim:#b9a8d6; --text-faint:#7f6ea0;
  --accent:#c084fc; --accent-dim:#9333ea; --accent-2:#5eead4;
  --warn:#fbbf24; --danger:#fb7185; --radius:16px;
  --glow-a:rgba(192,132,252,.12); --glow-b:rgba(94,234,212,.08);
}
:root[data-theme="daylight"]{
  --bg:#f5f7fa; --bg-alt:#ffffff; --surface:#ffffff; --surface-2:#eef1f6;
  --border:#d8dee8; --text:#0f1720; --text-dim:#4a5566; --text-faint:#78849a;
  --accent:#0f9d70; --accent-dim:#0a7a56; --accent-2:#2563eb;
  --warn:#b45309; --danger:#dc2626;
  --shadow:0 10px 40px rgba(15,23,32,.10);
  --shadow-card:0 1px 2px rgba(15,23,32,.06), 0 12px 32px -12px rgba(15,23,32,.12);
  --shadow-lift:0 2px 4px rgba(15,23,32,.07), 0 24px 60px -20px rgba(15,23,32,.18);
  --hairline:inset 0 1px 0 rgba(255,255,255,.7);
  --glow-a:rgba(15,157,112,.08); --glow-b:rgba(37,99,235,.06);
}
/* On the light theme the filled button needs light text, and the dashboard
   mock is drawn for a dark ground so it keeps its own. */
:root[data-theme="daylight"] .btn-primary{color:#ffffff;}
:root[data-theme="daylight"] .status-bar{color:var(--text-dim);}
:root[data-theme="daylight"] .mock-dashboard{background:#0d1117;}

/* =========================================================================
   Signed-in state
   The account chip that appears next to the call to action when you are
   signed in, rendered by session.js.
   ========================================================================= */
.site-account{
  display:inline-flex; align-items:center; gap:9px; flex:none; max-width:220px;
  padding:5px 14px 5px 5px; border-radius:999px;
  border:1px solid var(--border); background:var(--surface);
  color:var(--text); text-decoration:none; font-size:.86rem; font-weight:600;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
}
.site-account:hover{
  border-color:var(--accent); background:var(--surface-2); transform:translateY(-1px);
}
.site-avatar{
  display:flex; align-items:center; justify-content:center; flex:none;
  width:28px; height:28px; min-width:28px; max-width:28px;
  min-height:28px; max-height:28px;
  border-radius:50%; object-fit:cover; overflow:hidden;
  background:linear-gradient(135deg, var(--accent), var(--accent-dim));
  color:#04231b; font-size:.7rem; font-weight:800; letter-spacing:.02em;
}
img.site-avatar{display:block;}
:root[data-theme="daylight"] .site-avatar{color:#ffffff;}
.site-account-name{
  max-width:150px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
@media (max-width:900px){
  .site-account-name{display:none;}
  .site-account{padding:5px;}
}

/* --- plan status + inheritance ------------------------------------------
   Shown to signed-in visitors so the pricing table answers "which one am I
   on?" without a trip to the dashboard. */
.plan-status{
  display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap;
  max-width:640px; margin:0 auto 30px; padding:14px 20px;
  background:color-mix(in srgb, var(--accent) 9%, var(--surface));
  border:1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  border-radius:12px; font-size:.9rem; color:var(--text-dim);
}
.plan-status[hidden]{display:none;}
.plan-status strong{color:var(--text);}
.plan-status .plan-status-badge{
  font-size:.68rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  padding:4px 10px; border-radius:999px;
  background:var(--accent); color:#04231b;
}
:root[data-theme="daylight"] .plan-status .plan-status-badge{color:#fff;}

.price-inherits{
  font-size:.78rem; font-weight:650; color:var(--text-faint);
  margin:0 0 10px; padding-bottom:10px; border-bottom:1px dashed var(--border);
}

/* The plan you are on, marked on the card itself. */
.price-card.is-current{
  border-color:var(--accent);
  box-shadow:0 0 0 1px var(--accent), var(--shadow-lift), var(--hairline);
}
.price-card .current-plan-flag{
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  font-size:.66rem; font-weight:800; letter-spacing:.07em; text-transform:uppercase;
  padding:4px 12px; border-radius:999px; white-space:nowrap;
  background:var(--accent); color:#04231b;
}
:root[data-theme="daylight"] .price-card .current-plan-flag{color:#fff;}

/* =========================================================================
   Mobile
   Scoped to a media query, so the desktop layout is untouched.
   ========================================================================= */
@media (max-width:640px){
  .container{padding-left:16px; padding-right:16px;}

  /* Headings were sized for a wide column and ran to five or six lines. */
  .hero-copy h1{font-size:2.05rem; line-height:1.12;}
  .section-head h2{font-size:1.5rem;}
  .hero{padding-top:36px;}
  .hero-ctas{flex-direction:column; align-items:stretch;}
  .hero-ctas .btn{width:100%; justify-content:center;}

  .feature-grid, .who-grid, .pricing-grid{grid-template-columns:1fr;}
  .feature-card, .who-card{padding:18px;}
  .price-card{padding:22px 20px;}
  .price-card.featured{transform:none;}

  .how-steps{grid-template-columns:1fr; gap:22px;}
  .contact-inner{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column; gap:10px; text-align:center;}
  .footer-links{flex-wrap:wrap; justify-content:center;}

  /* The comparison table cannot usefully shrink, so it gets its own
     scroller rather than pushing the page sideways. */
  .comparison-table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch;}
  .comparison-table{min-width:520px;}

  .strip-items{flex-wrap:wrap; justify-content:center; gap:10px 16px;}
  .plan-status{flex-direction:column; text-align:center; gap:8px;}

  /* The mock dashboard is decorative; at this width it competes with the
     copy for attention and adds a lot of height. */
  .hero-visual{margin-top:26px;}
  .mock-dashboard{transform:none;}
}

/* Safari zooms the page when a focused input is smaller than 16px. */
@media (max-width:820px){
  input, select, textarea{font-size:16px !important;}
}

/* Thumb-sized controls on an actual touchscreen, keyed on the pointer
   rather than the width so a narrow desktop window is unaffected. */
@media (pointer:coarse){
  .btn, .nav-links a, .site-account, .footer-links a{min-height:44px;}
  .btn{display:inline-flex; align-items:center; justify-content:center;}
  .nav-links a{display:flex; align-items:center;}
}

/* =========================================================================
   Contact form
   Replaces a mailto: link, which silently did nothing for anyone without a
   mail client - a lost enquiry that leaves no trace.
   ========================================================================= */

.contact-inner{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.contact-copy h2{margin:12px 0 16px;}
.contact-copy > p{color:var(--text-dim); line-height:1.75; margin:0 0 24px; max-width:52ch;}
.contact-points{list-style:none; padding:0; margin:0 0 26px; display:grid; gap:14px;}
.contact-points li{
  font-size:.92rem; line-height:1.65; color:var(--text-dim);
  padding-left:22px; position:relative;
}
.contact-points li::before{
  content:''; position:absolute; left:0; top:.55em;
  width:7px; height:7px; border-radius:50%; background:var(--accent);
}
.contact-points strong{color:var(--text);}
.contact-direct{font-size:.9rem; color:var(--text-faint);}
.contact-direct a{color:var(--accent-2);}

.contact-form{
  background:var(--surface); border:1px solid var(--border); border-radius:16px;
  padding:30px; display:grid; gap:16px;
  box-shadow:0 24px 60px -34px rgba(0,0,0,.8);
}
.cf-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.cf-field{display:grid; gap:7px; min-width:0;}
.cf-field > span{font-size:.82rem; font-weight:600; color:var(--text);}
.cf-field > span em{
  font-style:normal; font-weight:600; font-size:.72rem; color:var(--text-faint);
  text-transform:uppercase; letter-spacing:.06em; margin-left:6px;
}
.cf-field input, .cf-field select, .cf-field textarea{
  width:100%; background:var(--bg); border:1px solid var(--border); border-radius:9px;
  padding:11px 13px; color:var(--text); font-family:inherit; font-size:.93rem;
}
.cf-field textarea{resize:vertical; line-height:1.6;}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus{
  outline:none; border-color:var(--accent);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.cf-field input:invalid:not(:placeholder-shown){border-color:var(--danger);}
/* Off-screen rather than display:none - some bots skip hidden fields. */
.cf-hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;}
.contact-form .btn{width:100%; justify-content:center; padding:13px;}
.cf-note{margin:0; font-size:.79rem; color:var(--text-faint); text-align:center;}
.cf-status{margin:0; font-size:.88rem; padding:12px 14px; border-radius:9px;}
.cf-status[hidden]{display:none;}
.cf-status.ok{
  background:color-mix(in srgb, var(--accent) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 32%, var(--border));
  color:var(--accent);
}
.cf-status.err{
  background:color-mix(in srgb, var(--danger) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--danger) 32%, var(--border));
  color:var(--danger);
}

@media (max-width:900px){
  .contact-inner{grid-template-columns:1fr; gap:34px;}
}
@media (max-width:640px){
  .contact-form{padding:20px;}
  .cf-row{grid-template-columns:1fr;}
}

/* =========================================================================
   Why teams switch
   Objection handling. Every claim here is something the product actually
   does - a promise the software does not keep is a refund request.
   ========================================================================= */

.why{padding:100px 0;}
.why h2{margin:12px 0 14px;}
.why-lead{color:var(--text-dim); font-size:1.02rem; line-height:1.7; margin:0 0 44px; max-width:60ch;}
.why-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:20px; margin-bottom:40px;
}
.why-item{
  background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:26px 26px 28px;
  transition:border-color .18s ease, transform .18s ease;
}
.why-item:hover{border-color:color-mix(in srgb, var(--accent) 34%, var(--border)); transform:translateY(-2px);}
.why-item h3{
  margin:0 0 10px; font-size:1.04rem; letter-spacing:-.02em; color:var(--accent);
}
.why-item p{margin:0; font-size:.92rem; line-height:1.72; color:var(--text-dim);}

.why-strip{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)); gap:18px;
  background:linear-gradient(150deg, color-mix(in srgb, var(--accent) 9%, var(--surface)), var(--surface));
  border:1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  border-radius:16px; padding:28px 30px;
}
.why-strip > div{display:grid; gap:6px;}
.why-strip strong{font-size:.94rem; letter-spacing:-.01em;}
.why-strip span{font-size:.86rem; line-height:1.65; color:var(--text-faint);}

@media (max-width:640px){
  .why{padding:64px 0;}
  .why-grid{grid-template-columns:1fr; gap:14px;}
  .why-item{padding:20px;}
  .why-strip{padding:20px; grid-template-columns:1fr;}
}
