/* =====================================================
   DEPLOYD – v8 | Mobile-first. World-class. Engineered.
   ===================================================== */

/* ---------- TOKENS ---------- */
:root {
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-soft:    #f7f9fc;
  --bg-accent:  #eef5ff;
  --surface:    #ffffff;
  --border:     #e5e9f0;
  --border-2:   #d1d8e4;

  --text:       #0f172a;
  --text-2:     #3e4c63;
  --text-3:     #6b7a90;

  --blue:       #199be7;
  --blue-hover: #1589cf;
  --blue-light: #e4f2fd;
  --blue-50:    rgba(25,155,231,0.06);
  --blue-glow:  rgba(25,155,231,0.14);

  --navy:       #0b1121;
  --navy-2:     #131b30;

  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  16px;
  --radius-xl:  20px;

  --shadow-xs:  0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.03);
  --shadow-lg:  0 10px 32px rgba(15,23,42,0.08), 0 4px 8px rgba(15,23,42,0.03);
  --shadow-xl:  0 20px 48px rgba(15,23,42,0.1), 0 8px 16px rgba(15,23,42,0.04);

  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);
  --container:  1100px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.section       { padding: 3.5rem 0; }
.section--soft { background: var(--bg-soft); position: relative; overflow: hidden; }
.section--dark { background: var(--navy); color: #fff; }
.section--dark .section__title,
.section--dark .section__desc,
.section--dark .page-highlight { color: #fff; }
.section--dark .section__desc { color: rgba(255,255,255,0.7); }
.section--dark .page-highlight { background: rgba(255,255,255,0.06); border-left-color: var(--blue); color: rgba(255,255,255,0.85); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.05s; }
.reveal.d2 { transition-delay: 0.10s; }
.reveal.d3 { transition-delay: 0.15s; }
.reveal.d4 { transition-delay: 0.20s; }
.reveal.d5 { transition-delay: 0.25s; }

/* ===========================================
   HEADER – mobile first
   =========================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
}

.header__logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; z-index: 10000;
  position: relative;
}
.header__logo-icon { height: 30px; width: 30px; }
.header__logo-text {
  font-size: 1.1875rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--text);
}

/* Desktop nav – hidden on mobile, shown at 1024px+ via media query below */
.header__right {
  display: none;
}
.header__nav {
  display: flex; align-items: center; gap: 1.75rem;
}
.header__nav a {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  position: relative; transition: color 0.15s ease;
}
.header__nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  border-radius: 1px; transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.header__nav a:hover::after { transform: scaleX(1); }
.header__nav a:hover { color: var(--text); }

.header__cta {
  display: flex; align-items: center; justify-content: center;
  padding: 0.5625rem 1.375rem;
  font-size: 0.875rem; font-weight: 600;
  color: #fff !important;
  background: var(--blue);
  border: none; border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(25,155,231,0.25);
  text-decoration: none;
}
.header__cta:hover {
  background: var(--blue-hover);
}

/* ===========================================
   HERO – mobile first
   =========================================== */
.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25,155,231,0.08) 0%, rgba(25,155,231,0.02) 40%, transparent 70%);
  pointer-events: none; z-index: 0;
}
/* Brand icon motif — hero right side */
.hero::after {
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%) rotate(12deg);
  width: 340px; height: 340px;
  background: url('/imgs/icon-color.svg') no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero__label {
  display: inline-flex; align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  margin: 0 auto 1.125rem;
}

.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font); font-size: 0.9375rem; font-weight: 600;
  color: #fff; background: var(--blue);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(25,155,231,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 6px 20px rgba(25,155,231,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font); font-size: 0.9375rem; font-weight: 600;
  color: var(--text); background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn-outline:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: #fff; background: var(--blue);
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(25,155,231,0.2);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
  width: 100%;
}
.btn:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(25,155,231,0.3);
}

/* ---------- EXAMPLE TAGS ---------- */
.examples {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.4375rem;
}
.example-tag {
  display: inline-flex; align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-2);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s ease;
}
.example-tag:hover {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(25,155,231,0.2);
}

/* ===========================================
   STATS – mobile first
   =========================================== */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats-row__item {
  text-align: center;
  padding: 1.375rem 1rem;
  background: var(--white);
}
.stats-row__num {
  display: block;
  font-size: 2.25rem; font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--blue);
  line-height: 1.1;
}
.stats-row__label {
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-3);
  margin-top: 0.25rem;
}
.stats-disclaimer {
  font-size: 0.6875rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 1.25rem;
  line-height: 1.5;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   SECTION HEADINGS – mobile first
   =========================================== */
.section__label {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.625rem;
}
.section__title {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section__desc {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-2); max-width: 560px;
  margin-bottom: 2rem;
}
.section__desc--center {
  margin-left: auto; margin-right: auto; text-align: center;
}

/* ===========================================
   CARDS – mobile first (single column)
   =========================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  position: relative;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(25,155,231,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--blue);
  transition: all 0.3s ease;
}
.card:hover .card__icon {
  background: var(--blue);
  color: #fff;
}

.card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.375rem;
}
.card__desc {
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--text-3);
}

.section--soft .card {
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

/* ===========================================
   STEPS – mobile first
   =========================================== */
.step-list { display: grid; gap: 0.75rem; }

.step {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.step:hover {
  border-color: rgba(25,155,231,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.step__num {
  display: flex; align-items: center; justify-content: center;
  min-width: 2rem; height: 2rem;
  font-size: 0.8125rem; font-weight: 800;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.step:hover .step__num {
  background: var(--blue);
  color: #fff;
}

.step__body { flex: 1; min-width: 0; }
.step__body strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.125rem;
}
.step__body span {
  font-size: 0.875rem; color: var(--text-3); line-height: 1.6;
}

/* ===========================================
   CTA SECTION (DARK) – mobile first
   =========================================== */
.cta-block {
  padding: 3.5rem 0;
  text-align: center;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25,155,231,0.12) 0%, transparent 60%);
  pointer-events: none;
}
/* Brand icon motif — CTA left side, white on dark */
.cta-block::after {
  content: '';
  position: absolute;
  left: -40px; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 280px; height: 280px;
  background: url('/imgs/icon-white.svg') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none; z-index: 0;
}
.cta-block > .container { position: relative; z-index: 1; }

.cta-block__title {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}
.cta-block__desc {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ===========================================
   INNER PAGES – mobile first
   =========================================== */
.page-header {
  padding: 3rem 0 1.5rem;
  position: relative; overflow: hidden;
}
/* Brand icon motif — inner page headers */
.page-header::after {
  content: '';
  position: absolute;
  right: -30px; top: -20px;
  width: 200px; height: 200px;
  background: url('/imgs/icon-color.svg') no-repeat center / contain;
  opacity: 0.03;
  transform: rotate(15deg);
  pointer-events: none; z-index: 0;
}
.page-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.page-lead {
  font-size: 1.0625rem; line-height: 1.7;
  color: var(--text-2); max-width: 560px;
}

.page-highlight {
  font-size: 0.9375rem; line-height: 1.7;
  color: var(--text-2);
  padding: 1.25rem 1.5rem;
  background: var(--blue-50);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-links {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 0.625rem;
  padding-top: 1.5rem;
}
.page-links a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6875rem 1.5rem;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.page-links a:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(25,155,231,0.25);
  transform: translateY(-1px);
}

/* ===========================================
   FORMS – mobile first
   =========================================== */
.form-block { max-width: 100%; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font); font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  -webkit-appearance: none;
  min-height: 48px;
}
.input::placeholder { color: var(--text-3); }
.input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.input--error { border-color: #ef4444; }
.input--error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
textarea.input { min-height: 8rem; resize: vertical; }

.login-card {
  max-width: 26rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.05);
}
.login-card__help {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.login-card__help a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}
.login-card__help a:hover { text-decoration: underline; }

.error-message { font-size: 0.875rem; color: #ef4444; margin-top: 0.375rem; }
.success-message {
  font-size: 1rem; font-weight: 600;
  color: var(--blue);
  padding: 0.875rem 1.25rem;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

/* ===========================================
   FOOTER – mobile first
   =========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer .container {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.625rem;
  text-align: center;
}
.footer__brand {
  display: flex; align-items: center;
}
.footer__logo {
  height: 36px; width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.footer__logo:hover { opacity: 0.85; }
.footer__copy { font-size: 0.8125rem; color: var(--text-3); }


/* ===========================================
   TABLET – 640px+
   =========================================== */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }

  .hero { padding: 4.5rem 0 3.5rem; }
  .hero__title { font-size: 2.25rem; }
  .hero__sub { font-size: 1.125rem; max-width: 480px; }
  .hero__actions { flex-direction: row; justify-content: center; }
  .btn-primary, .btn-outline { width: auto; padding: 0.9375rem 2rem; font-size: 1rem; }
  .btn { width: auto; }

  .section { padding: 4.5rem 0; }
  .section__title { font-size: 2rem; }

  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 1.125rem; }
  .card { padding: 1.75rem; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stats-row__item { padding: 1.75rem 1.25rem; }
  .stats-row__num { font-size: 2.5rem; }

  .example-tag { font-size: 0.8125rem; padding: 0.4375rem 0.875rem; }

  .page-header { padding: 3.5rem 0 1.5rem; }
  .page-title { font-size: 2.25rem; }

  .page-links { flex-direction: row; gap: 1.5rem; }

  .cta-block { padding: 4.5rem 0; }
  .cta-block__title { font-size: 2rem; }

  .form-block { max-width: 28rem; }

  .footer .container {
    flex-direction: row; justify-content: space-between;
    text-align: left;
  }
}


/* ===========================================
   DESKTOP – 1024px+
   =========================================== */
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }

  /* Desktop header */
  .header { height: 72px; }
  .header__logo-icon { height: 34px; width: 34px; }
  .header__logo-text { font-size: 1.25rem; }

  .header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .header__cta {
    padding: 0.5625rem 1.375rem;
    font-size: 0.875rem;
    border-radius: 100px;
    letter-spacing: -0.01em;
  }
  .header__cta:hover {
    box-shadow: 0 4px 14px rgba(25,155,231,0.3);
    transform: translateY(-1px);
  }

  /* Hero desktop */
  .hero { padding: 7rem 0 5rem; }
  .hero::before { width: 900px; height: 900px; top: -40%; }
  .hero__title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    max-width: none;
  }
  .hero__sub { font-size: 1.25rem; max-width: 540px; margin-bottom: 2.5rem; }
  .hero__actions { margin-bottom: 3rem; }

  /* Sections desktop */
  .section { padding: 6rem 0; }
  .section__title { font-size: clamp(2rem, 3.5vw, 2.5rem); }
  .section__desc { font-size: 1.125rem; margin-bottom: 3rem; }

  /* Cards desktop */
  .card-grid { gap: 1.25rem; }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card { padding: 2rem; }
  .card__icon { width: 2.75rem; height: 2.75rem; }
  .card__title { font-size: 1.0625rem; }

  /* Steps desktop */
  .step { padding: 1.5rem 1.75rem; gap: 1.25rem; }
  .step__num { min-width: 2.25rem; height: 2.25rem; }
  .step__body strong { font-size: 1.0625rem; }
  .step__body span { font-size: 0.9375rem; }

  /* Stats desktop */
  .stats-row__item { padding: 2rem 1.5rem; }
  .stats-row__num { font-size: 2.75rem; }
  .stats-row__label { font-size: 0.875rem; }

  /* CTA desktop */
  .cta-block { padding: 5rem 0; }
  .cta-block__title { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
  .cta-block__desc { font-size: 1.125rem; margin-bottom: 2.5rem; }

  /* Inner pages desktop */
  .page-header { padding: 4.5rem 0 2rem; }
  .page-title { font-size: clamp(2.25rem, 4.5vw, 3rem); }
  .page-lead { font-size: 1.1875rem; }
  .page-highlight { font-size: 1.0625rem; padding: 1.5rem 2rem; }

  /* Footer desktop */
  .footer { padding: 3rem 0; }
  .footer__brand-icon { height: 26px; width: 26px; }
}


/* ===========================================
   FEATURE ROW (image + text side by side)
   =========================================== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}
.feature-row + .feature-row {
  border-top: 1px solid var(--border);
}
.feature-row__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.feature-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.feature-row:hover .feature-row__img img {
  transform: scale(1.03);
}
.feature-row__body {}
.feature-row__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  font-size: 0.8125rem; font-weight: 800;
  color: var(--blue); background: var(--blue-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.feature-row__title {
  font-size: 1.375rem; font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-row__desc {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-2);
}

/* Pricing callout */
.pricing-note {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--blue-light);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.pricing-note__icon {
  flex-shrink: 0; margin-top: 2px;
  color: var(--blue);
}
.pricing-note__text {
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--text-2);
}
.pricing-note__text strong { color: var(--text); }

/* Scenario tags */
.scenario-tags {
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  margin-top: 0.75rem;
}
.scenario-tag {
  font-size: 0.75rem; font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

@media (min-width: 640px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .feature-row--flip .feature-row__img { order: 2; }
  .feature-row--flip .feature-row__body { order: 1; }
}

@media (min-width: 1024px) {
  .feature-row { gap: 3.5rem; padding: 2.5rem 0; }
  .feature-row__title { font-size: 1.5rem; }
  .feature-row__desc { font-size: 1.0625rem; }
}


/* ===========================================
   ROTATING WORD
   =========================================== */
.typer {
  color: var(--blue);
}
.typer__cursor {
  display: inline-block;
  width: 3px;
  margin-left: 2px;
  background: var(--blue);
  animation: blink 0.7s step-end infinite;
  vertical-align: baseline;
  height: 0.85em;
  border-radius: 1px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===========================================
   MARQUEE
   =========================================== */
.marquee {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.marquee__item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  padding: 0 0.25rem;
  letter-spacing: -0.01em;
}
.marquee__sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  margin: 0 1rem;
  flex-shrink: 0;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.marquee:hover .marquee__track { animation-play-state: paused; }

@media (min-width: 1024px) {
  .marquee__track { animation-duration: 40s; }
}


/* ===========================================
   LARGE DESKTOP – 1280px+
   =========================================== */
@media (min-width: 1280px) {
  .hero__title { font-size: 3.75rem; }
  .hero::after { width: 440px; height: 440px; right: -20px; opacity: 0.04; }
  .cta-block::after { width: 360px; height: 360px; left: 20px; }
  .page-header::after { width: 280px; height: 280px; right: 0; }
  .footer__logo { height: 42px; }
}
