/* ==========================================================================
   HEWZ TECH — design system
   ========================================================================== */

:root {
  --dark: #17181c;
  --dark-2: #1e2025;
  --dark-3: #26282f;
  --charcoal: #373535;
  --blue: #4460aa;
  --blue-light: #6f8adf;
  --blue-dim: rgba(68, 96, 170, 0.16);
  --white: #ffffff;
  --ink: #eef0f6;
  --muted: #a6acbe;
  --muted-2: #7b8299;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius-s: 4px;
  --radius-m: 6px;
  --radius-l: 10px;
  --radius-xl: 14px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 0 1px rgba(68, 96, 170, 0.25), 0 20px 60px rgba(68, 96, 170, 0.15);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid rgba(111, 138, 223, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-s);
  margin-bottom: 20px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
  transform: rotate(45deg);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-head.align-left {
  margin: 0 0 48px;
  text-align: left;
}

/* ---------------------------------- buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-m);
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(68, 96, 170, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(68, 96, 170, 0.5); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn[disabled], .btn.is-soon { opacity: 0.55; cursor: not-allowed; }
.btn[disabled]:hover, .btn.is-soon:hover { transform: none; }

/* ---------------------------------- nav ---------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(23, 24, 28, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(18, 19, 23, 0.98);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-menu .btn { margin-top: 20px; }

/* ---------------------------------- hero ---------------------------------- */

.hero {
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(38% 40% at 18% 18%, rgba(68, 96, 170, 0.35), transparent 60%),
    radial-gradient(45% 45% at 85% 10%, rgba(111, 138, 223, 0.22), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(68, 96, 170, 0.15), transparent 60%);
  filter: blur(10px);
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.05); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent 75%);
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--blue-light), #9fb4ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats .stat { text-align: center; }
.hero-stats .stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  color: var(--white);
}
.hero-stats .stat span {
  font-size: 0.85rem;
  color: var(--muted-2);
}

/* ---------------------------------- logo strip ---------------------------------- */

.strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.strip span { color: var(--muted-2); font-size: 0.9rem; }
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--blue-light);
  background: var(--blue-dim);
  border: 1px solid rgba(111,138,223,0.3);
  padding: 6px 12px;
  border-radius: var(--radius-s);
}

/* ---------------------------------- reveal ---------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------------------------------- cards / grid ---------------------------------- */

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 138, 223, 0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
}

.card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-m);
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-dim);
  border: 1px solid rgba(111,138,223,0.3);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------------------------------- about / split ---------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-panel {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(135deg, rgba(111,138,223,0.5), rgba(68,96,170,0.05));
}
.about-panel-inner {
  background: var(--dark-2);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: 44px;
}
.about-panel .mark { width: 64px; margin-bottom: 24px; }
.about-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.about-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
}
.about-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: var(--radius-s);
  background: var(--blue-dim);
  border: 1px solid rgba(111,138,223,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: 0.7rem;
  margin-top: 2px;
}

.split p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; }
.split .meta-row {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.split .meta-row div strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.6rem; }
.split .meta-row div span { color: var(--muted-2); font-size: 0.85rem; }

/* ---------------------------------- sysmestre / phone ---------------------------------- */

.product {
  padding: 140px 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(68,96,170,0.12), transparent 70%);
}

.phone-mock {
  position: relative;
  width: 280px;
  height: 580px;
  margin: 0 auto;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a2c33, #1a1b1f);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft), 0 0 80px rgba(68,96,170,0.15);
  padding: 14px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-mock .screen {
  width: 100%; height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--dark-3), var(--dark-2));
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-mock .screen-bar {
  padding: 20px 18px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.phone-mock .screen-bar img { width: 22px; }
.phone-mock .screen-bar span { font-size: 0.8rem; font-weight: 600; }
.phone-mock .screen-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.phone-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}
.phone-row .dot-icon { width: 30px; height: 30px; border-radius: var(--radius-s); background: var(--blue-dim); flex-shrink: 0; }
.phone-row strong { display: block; font-size: 0.8rem; }
.phone-row span { color: var(--muted-2); font-size: 0.72rem; }
.phone-fab {
  position: absolute;
  bottom: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: var(--radius-m);
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 10px 24px rgba(68,96,170,0.5);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.feature-list { display: flex; flex-direction: column; gap: 4px; }
.feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item .num {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  color: var(--blue-light);
  padding-top: 3px;
}
.feature-item h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature-item p { color: var(--muted); font-size: 0.93rem; }

.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  font-size: 0.85rem;
}
.store-badge strong { display: block; font-size: 0.92rem; }
.store-badge span { color: var(--muted-2); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------------------------------- process ---------------------------------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 24px 24px;
  border-top: 2px solid var(--border);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Sora', sans-serif;
  color: var(--blue-light);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.9rem; }

/* ---------------------------------- FAQ ---------------------------------- */

.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
}
.faq-item summary .plus::before { width: 11px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 11px; }
.faq-item[open] summary .plus { transform: rotate(135deg); background: var(--blue-dim); }
.faq-item p {
  color: var(--muted);
  padding: 0 4px 24px;
  max-width: 640px;
  font-size: 0.95rem;
}

/* ---------------------------------- CTA ---------------------------------- */

.cta {
  margin: 40px auto 0;
  max-width: var(--container);
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(68,96,170,0.25), rgba(23,24,28,0.4));
  border: 1px solid rgba(111,138,223,0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(40% 60% at 50% 0%, rgba(111,138,223,0.25), transparent 70%);
  pointer-events: none;
}
.cta h2 { margin-bottom: 16px; }
.cta p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.cta .hero-actions { margin-bottom: 0; }

/* ---------------------------------- footer ---------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  margin-top: 120px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted-2); font-size: 0.88rem; max-width: 260px; margin-bottom: 20px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-legal-block { color: var(--muted-2); font-size: 0.82rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-2);
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.footer-social a:hover { border-color: var(--blue-light); transform: translateY(-2px); }

/* ---------------------------------- back to top ---------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: var(--radius-m);
  background: rgba(30,32,37,0.9);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 80;
  cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------------------------------- legal / doc pages ---------------------------------- */

.doc-hero {
  padding: 152px 0 56px;
  border-bottom: 1px solid var(--border);
}
.doc-hero .updated { color: var(--muted-2); font-size: 0.88rem; margin-top: 10px; }

.doc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  padding: 64px 0 100px;
}
.doc-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc-toc span.label { color: var(--muted-2); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.doc-toc a {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 8px 0;
  border-left: 2px solid var(--border);
  padding-left: 14px;
  transition: color 0.2s, border-color 0.2s;
}
.doc-toc a:hover, .doc-toc a.active { color: var(--white); border-left-color: var(--blue-light); }

.doc-content { max-width: 720px; }
.doc-content h2 { font-size: 1.5rem; margin: 44px 0 16px; scroll-margin-top: 100px; }
.doc-content h2:first-child { margin-top: 0; }
.doc-content h3 { font-size: 1.1rem; margin: 28px 0 12px; }
.doc-content p { color: var(--muted); margin-bottom: 14px; font-size: 0.98rem; }
.doc-content ul, .doc-content ol { color: var(--muted); margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 8px; font-size: 0.98rem; }
.doc-content ul { list-style: disc; }
.doc-content ol { list-style: decimal; }
.doc-content strong { color: var(--ink); }
.doc-content a.inline-link { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; }
.doc-content .callout {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}
.doc-content th, .doc-content td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.doc-content th { color: var(--ink); background: rgba(255,255,255,0.03); }

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  margin: 24px 0;
}
.contact-card .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.contact-card .row:last-child { border-bottom: none; }
.contact-card .row span:first-child { color: var(--muted-2); }
.contact-card .row span:last-child { color: var(--ink); font-weight: 500; text-align: right; }

/* steps for delete-account */
.steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.step {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: rgba(255,255,255,0.02);
}
.step .step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: var(--radius-s);
  background: var(--blue-dim);
  border: 1px solid rgba(111,138,223,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--blue-light);
}
.step h3 { font-size: 1rem; margin-bottom: 4px; }
.step p { margin: 0; font-size: 0.9rem; }

/* support page */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------------------------------- responsive ---------------------------------- */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .split, .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .doc-layout { grid-template-columns: 1fr; }
  .doc-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .doc-toc span.label { display: none; }
  .doc-toc a { border-left: none; border-bottom: 2px solid var(--border); padding: 6px 0; }
  .process-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { padding: 140px 0 80px; }
  .hero-stats { gap: 28px; }
  .grid-2, .grid-3, .grid-4, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { padding: 48px 24px; }
  .phone-mock { width: 240px; height: 500px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Página SYSMESTRE
   ========================================================================== */

:root {
  --gold: #c9a45c;
  --gold-dim: rgba(201, 164, 92, 0.14);
  --navy: #2d4a5e;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 164, 92, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-s);
  margin-bottom: 20px;
}
.badge-gold .dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 8px var(--gold); }

.trust-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.trust-chips span {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 7px 14px;
  border-radius: var(--radius-s);
}

/* telas claras (visual real do app) */
.mock-light .screen { background: #f2f1ec; color: #16303e; }
.mock-light .screen-bar { border-bottom: 1px solid rgba(22,48,62,0.08); }
.mock-light .screen-bar span { color: #16303e; }
.light-card {
  background: #ffffff;
  border: 1px solid rgba(22,48,62,0.08);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(22,48,62,0.05);
}
.light-card strong { color: #16303e; font-size: 0.8rem; display: block; }
.light-card span { color: #7d8894; font-size: 0.7rem; }
.sess-card {
  background: linear-gradient(160deg, #35566b, #2d4a5e);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
}
.sess-card .label { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.sess-card .date { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin: 4px 0 2px; }
.sess-card .time { font-size: 0.75rem; color: #cfd9df; }
.sess-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 12px; }
.sess-actions div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
}
.sess-actions div.primary { background: rgba(201,164,92,0.85); color: #1d3242; }
.stat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-pair .light-card em { font-style: normal; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.05rem; color: #1c7a4e; display: block; }

/* comanda ágape */
.comanda-row { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid rgba(22,48,62,0.08); font-size: 0.76rem; color: #43525d; }
.comanda-row strong { color: #16303e; font-weight: 600; }
.comanda-total { display: flex; justify-content: space-between; padding-top: 10px; font-weight: 800; color: #16303e; font-size: 0.85rem; }
.pix-btn {
  margin-top: 12px;
  background: #16303e;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* tabela antes/depois */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}
.compare th, .compare td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.compare thead th { font-family: 'Sora', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-2); }
.compare td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.compare td.old { color: var(--muted-2); }
.compare td.new { color: var(--ink); }
.compare td.new::before { content: '✓ '; color: var(--blue-light); font-weight: 700; }

.exclusive-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,164,92,0.4);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: var(--radius-s);
  margin-bottom: 12px;
}

/* mockup com print real do app */
.phone-mock.phone-shot { height: auto; aspect-ratio: 295/640; max-height: 640px; }
.phone-mock.phone-shot .screen { padding: 0; }
.phone-mock.phone-shot .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ---------------------------------- formulário demonstração ---------------------------------- */

.demo-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 40px;
}
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.demo-form .field { display: flex; flex-direction: column; gap: 7px; }
.demo-form .field.full { grid-column: 1 / -1; }
.demo-form label { font-size: 0.86rem; font-weight: 600; color: var(--muted); }
.demo-form label .req { color: var(--blue-light); }
.demo-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-m);
  padding: 13px 15px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.demo-form input::placeholder { color: var(--muted-2); }
.demo-form input:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(111,138,223,0.18);
  background: rgba(255,255,255,0.06);
}
.demo-form .btn { grid-column: 1 / -1; margin-top: 6px; }
.demo-form-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--muted-2); text-align: center; }

@media (max-width: 620px) {
  .demo-form { grid-template-columns: 1fr; }
  .demo-form-wrap { padding: 26px 20px; }
}
