*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:        #0a2342;
  --navy:        #0d3060;
  --mid:         #1a4f8a;
  --cyan:        #00b4d8;
  --cyan-light:  #90e0ef;
  --cyan-dark:   #0096c7;
  --white:       #ffffff;
  --off-white:   #f0f9ff;
  --light:       #e0f2fe;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --radius:      14px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-dark  { background: var(--deep); color: var(--white); }
.section-off   { background: var(--off-white); }
.section-ocean {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.section-ocean::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,35,66,.92) 0%, rgba(0,96,199,.78) 100%);
}
.section-ocean .container { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.15rem; }
.text-cyan { color: var(--cyan); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn { display: inline-block; border-radius: 9px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: all .2s; }
.btn-primary  { background: var(--cyan);  color: var(--deep);  }
.btn-primary:hover  { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,.35); }
.btn-ghost    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover    { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-white    { background: var(--white); color: var(--deep); }
.btn-white:hover    { background: var(--off-white); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--deep); border: 2px solid var(--border); }
.btn-outline:hover  { border-color: var(--cyan); color: var(--cyan); }
.btn-sm  { padding: .45rem 1.1rem;  font-size: .85rem; }
.btn-md  { padding: .7rem  1.6rem;  font-size: .95rem; }
.btn-lg  { padding: .95rem 2.1rem;  font-size: 1rem;   }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 1.3rem 2.5rem;
  transition: all .3s;
}
.nav.scrolled {
  background: rgba(10,35,66,.97);
  backdrop-filter: blur(12px);
  padding: .85rem 2.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.nav-logo {
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  text-decoration: none; display: flex; align-items: center; gap: .45rem;
}
.logo-icon { font-size: 1.6rem; }
.nav-links { display: flex; gap: 2.2rem; margin: 0 auto; }
.nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-weight: 500; font-size: .95rem; transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--cyan);
  font-weight: 700;
}
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  content: '';
  display: block;
  margin-top: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
}

/* ── Language switcher ──────────────────────────────── */
.lang-switcher {
  appearance: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: .04em;
}
.lang-switcher:hover { border-color: var(--cyan); color: #fff; }
.lang-switcher option { background: #0a2342; color: #fff; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; text-align: center; color: var(--white);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,35,66,.88) 0%, rgba(0,96,199,.65) 60%, rgba(0,150,150,.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 0 2rem; }
.hero-badge {
  display: inline-block;
  background: rgba(0,180,216,.2); border: 1px solid rgba(0,180,216,.45);
  color: var(--cyan-light); padding: .4rem 1.3rem; border-radius: 99px;
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-content h1 { margin-bottom: 1.2rem; }
.hero-content p {
  font-size: 1.18rem; color: rgba(255,255,255,.78);
  margin: 0 auto 2.2rem; max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 1.6rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: var(--deep); padding: 2.8rem 2rem;
  display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num   { display: block; font-size: 2.6rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.stat-label { display: block; font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .4rem; font-weight: 500; }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin: .7rem 0 1rem; }
.section-header p  { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p  { color: rgba(255,255,255,.58); }

.section-badge {
  display: inline-block;
  background: rgba(0,180,216,.1); color: var(--cyan-dark);
  border: 1px solid rgba(0,180,216,.28); padding: .28rem 1rem;
  border-radius: 99px; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem;
}
.section-badge-white {
  background: rgba(255,255,255,.12); color: var(--cyan-light);
  border-color: rgba(255,255,255,.22);
}

/* ── FEATURES ────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; transition: all .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--cyan-light); }
.feature-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: .5rem; color: var(--deep); }
.feature-card p  { color: var(--text-muted); font-size: .93rem; line-height: 1.65; }

/* ── PRODUCT PREVIEW ─────────────────────────────────── */
.preview-layout { display: flex; gap: 5rem; align-items: center; }
.preview-text   { flex: 1; }
.preview-text h2 { color: var(--white); margin: .7rem 0 1.5rem; }
.check-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.check-list li {
  display: flex; align-items: center; gap: .7rem;
  color: rgba(255,255,255,.82); font-size: .95rem;
}
.check-list li::before {
  content: '✓'; background: var(--cyan); color: var(--deep);
  font-weight: 900; font-size: .65rem; width: 20px; height: 20px;
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.preview-mockup { flex: 1; }

/* ── BROWSER MOCKUP ──────────────────────────────────── */
.browser-frame {
  background: #1e293b; border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.browser-bar {
  background: #2d3748; padding: .75rem 1rem;
  display: flex; align-items: center; gap: .45rem;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #fc5c65; }
.dot.yellow { background: #fed330; }
.dot.green  { background: #26de81; }
.browser-url {
  background: #1a202c; color: #718096; font-size: .74rem;
  padding: .28rem .8rem; border-radius: 6px; margin-left: .5rem; flex: 1;
  font-family: 'Courier New', monospace;
}
.browser-content { padding: 1rem; }
.mock-topbar { background: #0d3060; height: 38px; border-radius: 6px; margin-bottom: 1rem; }
.mock-body   { display: flex; gap: .75rem; }
.mock-sidebar { background: #0a2342; width: 58px; border-radius: 6px; min-height: 200px; }
.mock-timeline { flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.mock-row { height: 30px; background: linear-gradient(90deg, rgba(0,180,216,.65), rgba(0,150,199,.25)); border-radius: 4px; }
.mock-row:nth-child(1) { width: 80%; }
.mock-row:nth-child(2) { width: 45%; }
.mock-row:nth-child(3) { width: 90%; }
.mock-row:nth-child(4) { width: 60%; }
.mock-row:nth-child(5) { width: 72%; }
.mock-row:nth-child(6) { width: 35%; }

/* ── DEMO SECTION ────────────────────────────────────── */
.demo-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px; padding: 3.5rem;
  display: flex; gap: 4rem; align-items: center;
}
.demo-text { flex: 1; }
.demo-text h2 { color: var(--white); margin: .7rem 0 1rem; }
.demo-text > p { color: rgba(255,255,255,.72); margin-bottom: 1.75rem; font-size: 1.05rem; line-height: 1.7; }
.demo-credentials {
  background: rgba(0,0,0,.35); border-radius: 12px;
  padding: 1.1rem 1.4rem; margin-bottom: 1.75rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.cred-row  { display: flex; align-items: center; gap: .75rem; }
.cred-label { font-size: .73rem; font-weight: 700; color: var(--cyan-light); text-transform: uppercase; width: 74px; }
.cred-row code { font-size: .85rem; color: rgba(255,255,255,.88); font-family: 'Courier New', monospace; }
.demo-visual { flex: 0 0 300px; }
.demo-visual img { width: 100%; border-radius: 16px; box-shadow: 0 24px 48px rgba(0,0,0,.35); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.testimonial-card p {
  color: var(--text-muted); font-size: .93rem; line-height: 1.75;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-card p::before {
  content: '"'; color: var(--cyan); font-size: 2.8rem; line-height: .7;
  display: block; margin-bottom: .6rem; font-style: normal; font-weight: 700;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; background: var(--light); }
.testimonial-author strong { display: block; font-size: .88rem; color: var(--deep); }
.testimonial-author span   { font-size: .76rem; color: var(--text-muted); }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-toggle { display: flex; align-items: center; gap: .75rem; justify-content: center; margin-bottom: 3rem; font-size: .9rem; color: var(--text-muted); }
.toggle-track {
  width: 48px; height: 26px; background: var(--border); border-radius: 99px;
  cursor: pointer; position: relative; transition: background .2s;
}
.toggle-track.on { background: var(--cyan); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  background: var(--white); border-radius: 50%; transition: left .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-track.on .toggle-thumb { left: 25px; }
.toggle-save { background: #dcfce7; color: #166534; font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 99px; }

.pricing-grid {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.pricing-loading { color: var(--text-muted); text-align: center; padding: 3rem; width: 100%; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 20px; padding: 2.4rem 2rem; width: 310px;
  position: relative; transition: all .3s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0,180,216,.1), 0 12px 40px rgba(0,180,216,.18);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.pricing-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--deep);
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: .3rem 1rem; border-radius: 99px;
}
.plan-name  { font-size: 1.05rem; font-weight: 800; color: var(--deep); text-transform: capitalize; margin-bottom: .75rem; }
.plan-price { font-size: 3rem; font-weight: 900; color: var(--deep); line-height: 1; margin-bottom: 1.5rem; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plan-price .free-label { font-size: 2rem; }
.plan-limits {
  list-style: none; display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
}
.plan-limits li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--text-muted); }
.plan-limits li::before { content: '✓'; color: var(--cyan); font-weight: 700; }
.plan-btn { display: block; text-align: center; padding: .78rem; border-radius: 10px; font-weight: 700; font-size: .9rem; text-decoration: none; transition: all .2s; }
.plan-btn-primary { background: var(--cyan); color: var(--deep); }
.plan-btn-primary:hover { background: var(--cyan-dark); }
.plan-btn-secondary { background: var(--off-white); color: var(--deep); border: 2px solid var(--border); }
.plan-btn-secondary:hover { border-color: var(--cyan); }
.pricing-cta { text-align: center; }

/* ── CTA BOTTOM ──────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.62); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-form { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cta-form input {
  padding: .75rem 1.3rem; border-radius: 9px; border: none; font-size: 1rem;
  width: 300px; outline: none; font-family: inherit;
}
.cta-form input:focus { box-shadow: 0 0 0 3px rgba(0,180,216,.4); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: #060f1e; color: rgba(255,255,255,.5); padding: 4.5rem 0 1.5rem; }
.footer-inner { display: flex; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { flex: 1; }
.footer-brand strong { color: var(--white); font-size: 1.25rem; display: flex; align-items: center; gap: .4rem; }
.footer-brand p { margin-top: .6rem; font-size: .88rem; max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; gap: 4rem; }
.footer-links div { display: flex; flex-direction: column; gap: .55rem; }
.footer-links strong { color: var(--white); font-size: .84rem; margin-bottom: .25rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { text-align: center; padding-top: 1.5rem; font-size: .8rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-1 { transition-delay: .1s; }
.fade-in-2 { transition-delay: .2s; }
.fade-in-3 { transition-delay: .3s; }

/* ── PRICING PAGE SPECIFIC ───────────────────────────── */
.page-hero {
  background: var(--deep); padding: 8rem 0 5rem; text-align: center; color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: .7rem 0 1rem; }
.page-hero p  { color: rgba(255,255,255,.65); font-size: 1.1rem; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600; font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q:hover { background: var(--off-white); }
.faq-q .arrow { transition: transform .25s; font-style: normal; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .preview-layout { flex-direction: column; }
  .demo-card { flex-direction: column; }
  .demo-visual { flex: none; max-width: 380px; width: 100%; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .stats-bar { gap: 2.5rem; }
  .nav { padding: .8rem 1rem; }
  .nav-links {
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a { font-size: .88rem; }
  .lang-switcher { font-size: .78rem; padding: .28rem .55rem; }
  .nav > .btn { margin-left: 1rem; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-card { width: 100%; max-width: 360px; }
  .section { padding: 4rem 0; }
  .demo-card { padding: 2rem; }
  .nav { flex-wrap: wrap; row-gap: .55rem; }
  .nav-links {
    width: 100%;
    order: 3;
    margin: 0;
    justify-content: center;
  }
  .nav > .btn { order: 2; margin-left: auto; }
}

/* ── AUTH PAGES (signup, login, account) ─────────────── */
.auth-shell {
  min-height: calc(100vh - 70px);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 6rem 1.5rem 3rem;
}
.auth-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 35, 66, 0.15);
  padding: 2.5rem; width: 100%; max-width: 460px;
}
.auth-card h1 { font-size: 1.7rem; margin-bottom: .4rem; color: var(--deep); }
.auth-card .sub { color: var(--text-muted); margin-bottom: 1.8rem; font-size: .93rem; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.auth-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .82rem; font-weight: 600; color: #475569;
}
.auth-form input, .auth-form select {
  padding: .75rem .9rem; border: 1px solid var(--border); border-radius: 10px;
  font-size: .95rem; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.auth-form input:focus, .auth-form select:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}
.auth-form button[type=submit] {
  margin-top: .5rem; padding: .9rem; border: none; border-radius: 10px;
  background: var(--cyan); color: #fff; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background .15s;
}
.auth-form button[type=submit]:hover { background: #0096b8; }
.form-msg { margin-top: .8rem; font-size: .88rem; min-height: 1.2em; }
.form-msg.err   { color: #dc2626; }
.form-msg.warn  { color: #b45309; }
.form-msg.ok    { color: #059669; }

.divider {
  display: flex; align-items: center; gap: .8rem;
  margin: 1.6rem 0; color: #94a3b8; font-size: .82rem;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.oauth-buttons { display: flex; flex-direction: column; gap: .6rem; }
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .75rem; border: 1px solid var(--border); border-radius: 10px;
  background: #fff; font-weight: 600; font-size: .92rem; cursor: pointer;
  transition: background .15s, border-color .15s; color: #1e293b;
}
.oauth-btn:hover { background: #f8fafc; border-color: #cbd5e1; }
.oauth-btn .icon { width: 18px; height: 18px; }

.auth-footer { text-align: center; margin-top: 1.4rem; font-size: .88rem; color: var(--text-muted); }
.auth-footer a { color: var(--cyan); font-weight: 600; text-decoration: none; }

/* ── Account dashboard ─────────────────────────────── */
.account-shell { padding: 7rem 1.5rem 4rem; background: #f8fafc; min-height: 100vh; }
.account-container { max-width: 880px; margin: 0 auto; }
.account-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem;
}
.account-header h1 { font-size: 1.8rem; color: var(--deep); }
.account-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-bottom: 2rem; }
.account-card {
  background: #fff; border-radius: 14px; padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
}
.account-card .label { font-size: .75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.account-card .value { font-size: 1.2rem; font-weight: 700; color: var(--deep); margin-top: .3rem; }
.account-actions {
  background: #fff; border-radius: 14px; padding: 1.8rem; border: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.account-actions h3 { width: 100%; margin-bottom: .4rem; color: var(--deep); font-size: 1.05rem; }

@media (max-width: 600px) {
  .auth-form .row { grid-template-columns: 1fr; }
  .account-cards { grid-template-columns: 1fr; }
}
