/* ══════════════════════════════════════════════
   Echo AI — light futuristic, glass surfaces
   ══════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-tint: #f8f9fb;
  --surface: rgba(0, 0, 0, 0.025);
  --surface-hover: rgba(0, 0, 0, 0.04);
  --surface-border: rgba(0, 0, 0, 0.06);

  --text-1: #111113;
  --text-2: #555560;
  --text-3: #8e8e99;

  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-dim: rgba(59, 130, 246, 0.08);
  --accent-glow: rgba(59, 130, 246, 0.25);

  --muted: var(--text-2);

  --radius: 16px;
  --radius-lg: 24px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.53;
  letter-spacing: -0.014em;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--accent-hover); }

p { margin: 0 0 1em; }

/* ─── Utility ─── */
.wrap-wide {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1068px) {
  .wrap-wide { padding: 0; }
}

/* ─── Glass surface (light mode) ─── */
.glass {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.glass:hover {
  background: var(--surface-hover);
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

/* ─── Nav ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1068px) {
  .header-inner { padding: 0; }
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-1);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.006em;
}

.nav a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.nav a:hover { color: var(--text-1); }

.nav-cta {
  padding: 6px 16px;
  border-radius: 980px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px var(--accent-glow);
  color: #fff !important;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  background: var(--bg);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.07) 0%,
    rgba(59, 130, 246, 0.02) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.gradient-text {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  color: var(--text-1);
  background: linear-gradient(
    180deg,
    var(--text-1) 30%,
    var(--text-3) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.018em;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 16px;
}

.hero-caption {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 32px;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.12s var(--ease),
    box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background: var(--bg-tint);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

.plan-ctas .btn {
  width: 100%;
}

.btn-glow {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-glow:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 6px 32px var(--accent-glow);
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ─── Sections ─── */
section {
  position: relative;
  padding: 100px 0;
}

@media (min-width: 768px) {
  section { padding: 140px 0; }
}

section:nth-child(even) {
  background: var(--bg-tint);
}

.section-headline {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--text-1);
  margin-bottom: 18px;
}

.section-intro {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.014em;
  color: var(--text-2);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ─── Cards ─── */
.card-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
}

.card:hover {
  transform: translateY(-6px);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 20px;
}

.card strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ─── Steps ─── */
.steps {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-radius: var(--radius);
  padding: 24px;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 10px;
}

.step-body strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ─── Compliance ─── */
.two-col {
  display: grid;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto 48px;
}

@media (min-width: 640px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.two-col p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
}

.callout {
  border-radius: var(--radius);
  padding: 28px 24px 24px;
}

.callout strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 8px;
}

.callout p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 6px;
}

.callout p:last-child { margin-bottom: 0; }

.fine {
  font-size: 13px !important;
  color: var(--text-3) !important;
  margin-top: 10px !important;
}

.policies {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.policies p {
  margin-bottom: 4px;
  color: var(--text-3);
  font-size: 14px;
}

.policies a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

/* ─── Contact ─── */
.contact-block {
  display: grid;
  max-width: 440px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 8px 32px;
}

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
}

.contact-item + .contact-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-block dt {
  flex-shrink: 0;
  width: 72px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

.contact-block dd {
  margin: 0;
  font-size: 15px;
  color: var(--text-1);
}

/* ─── Footer ─── */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer p {
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
}

.footer-links a {
  color: var(--text-3);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-1); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.card-grid.revealed .card {
  animation: float-up 0.7s var(--ease-out) both;
}

.card-grid.revealed .card:nth-child(2) {
  animation-delay: 0.1s;
}

.card-grid.revealed .card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── FAQ (apply page) ─── */
.faq-block {
  margin: 0 0 32px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--bg-tint);
  overflow: hidden;
}

.faq-block summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  cursor: pointer;
  padding: 18px 24px;
  list-style: none;
  color: var(--text-1);
}

.faq-block summary::-webkit-details-marker { display: none; }

.faq-block summary::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-3);
  border-bottom: 1.5px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq-block[open] summary::after {
  transform: rotate(-135deg);
}

.faq-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-2);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-inner p { margin: 12px 0 0; }
.faq-inner p:first-child { margin-top: 16px; }
.faq-inner strong { color: var(--text-1); }

/* ─── Apply form ─── */
.form-page {
  background: var(--bg);
  color: var(--text-1);
}

.form-page a:not(.btn):not(.nav-cta) { color: var(--accent); }

.form-intro {
  padding: 80px 0 28px;
  text-align: center;
}

.form-intro h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.07;
  margin-bottom: 14px;
  color: var(--text-1);
}

.form-intro .lead {
  max-width: 420px;
  margin: 0 auto;
  color: var(--text-2);
  font-size: 17px;
}

.form-page .wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .form-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.006em;
}

.form-field label .req { color: #d14800; }

.form-field input,
.form-field textarea,
.form-field select {
  font: inherit;
  font-size: 17px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--text-1);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}

.form-field input:hover,
.form-field textarea:hover {
  background: var(--bg);
  border-color: rgba(0, 0, 0, 0.16);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  background: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-field small {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.38;
}

.form-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-section h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  color: var(--text-1);
}

.form-actions {
  padding: 36px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-result {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-tint);
  font-size: 15px;
  white-space: pre-wrap;
}

.form-result.error {
  background: #fef5f5;
  color: #6e1a1a;
}

.form-result.ok {
  background: #f0fdf4;
  color: #1a4d1a;
}

.form-field label .optional {
  font-weight: 400;
  color: var(--text-3);
}

/* ─── Pricing page ─── */
.pricing-page {
  background: var(--bg);
  color: var(--text-2);
}

.pricing-hero {
  padding: 120px 24px 48px;
  text-align: center;
}

.pricing-hero .gradient-text {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.pricing-lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
}

.pricing-lead strong {
  color: var(--text-1);
}

.pricing-hero-copy {
  max-width: 560px;
  margin: 0 auto;
}

.pricing-hero-emphasis {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 12px;
}

.pricing-hero-emphasis strong {
  color: var(--text-1);
  font-weight: 600;
}

.pricing-hero-copy .pricing-lead {
  margin: 0 0 12px;
}

.pricing-hero-timing {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

.pricing-hero-timing strong {
  color: var(--text-1);
}

.pricing-section {
  padding: 0 24px 100px;
}

.plan-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan-card {
  padding: 28px 24px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card-featured {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 48px rgba(59, 130, 246, 0.12);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 999px;
}

.plan-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}

.plan-tagline {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 16px;
  min-height: 2.4em;
}

.plan-price {
  margin-bottom: 6px;
}

.plan-amount {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-1);
}

.plan-period {
  font-size: 18px;
  color: var(--text-3);
  font-weight: 500;
}

.plan-note {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.plan-quota {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 6px;
}

.plan-overage {
  font-size: 13px;
  color: var(--text-3);
  margin: 0 0 18px;
}

.plan-typical {
  font-size: 14px;
  color: var(--text-3);
  margin: 4px 0 20px;
  line-height: 1.45;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.plan-features li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  color: var(--text-2);
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-footnote {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.pricing-footnote strong {
  color: var(--text-1);
}

/* ─── Checkout ─── */
.checkout-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.wrap-checkout {
  max-width: 640px;
}

.checkout-intro .lead {
  max-width: 520px;
}

.checkout-section-a .section-hint,
.checkout-section-b .payment-demo-note {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 0;
  margin-bottom: 16px;
}

.expectation-block {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  margin: 8px 0 24px;
}

.expectation-block h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-1);
}

.expect-list {
  margin: 0 0 14px;
  padding-left: 1.2em;
  color: var(--text-2);
  font-size: 15px;
}

.expect-list li {
  margin-bottom: 8px;
}

.expect-trust {
  font-size: 14px;
  color: var(--text-3);
  margin: 0;
  font-style: italic;
}

.payment-summary {
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  margin-bottom: 8px;
}

.payment-summary-row strong {
  color: var(--text-1);
}

.payment-summary-note {
  font-size: 13px;
  color: var(--text-3);
  margin: 12px 0 0;
}

.payment-demo-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.checkout-status {
  font-size: 14px;
  color: #b45309;
}

/* ─── Success page ─── */
.success-wrap {
  max-width: 560px;
  padding: 100px 24px 80px;
}

.success-hero {
  text-align: center;
  margin-bottom: 36px;
}

.success-emoji {
  font-size: 48px;
  margin: 0 0 12px;
}

.success-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 12px;
}

.success-lead {
  max-width: 100%;
  margin: 0 auto 20px;
}

.success-plan {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-2);
}

.progress-tracker {
  padding: 24px 22px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.progress-heading {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-1);
}

.progress-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.progress-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.progress-step:last-child {
  border-bottom: none;
}

.progress-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 8px;
  background: var(--bg-tint);
}

.progress-step-done .progress-icon {
  background: #ecfdf5;
  color: #047857;
}

.progress-step strong {
  display: block;
  font-size: 15px;
  color: var(--text-1);
  margin-bottom: 4px;
}

.progress-step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.45;
}

.success-next {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.success-next h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-1);
}

.success-next p {
  font-size: 15px;
  margin-bottom: 16px;
}

.success-email-note {
  font-size: 13px;
  color: var(--text-3);
  margin: 20px 0 0;
  line-height: 1.5;
}

.success-dashboard-note {
  font-size: 14px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.5;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .nav-cta {
    padding: 5px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .step {
    gap: 16px;
    padding: 20px 20px;
  }

  .card {
    padding: 32px 24px 28px;
  }
}

/* ─── Print ─── */
@media print {
  .site-header {
    position: static;
    background: #fff;
    backdrop-filter: none;
  }

  .glass {
    background: #f5f5f7;
    border-color: #d2d2d7;
    backdrop-filter: none;
  }

  .gradient-text {
    background: none;
    -webkit-text-fill-color: #000;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
