/* ============================================================
   MasterApp Suite AI — masterappai.com
   Dark-mode-first marketing site
   Fraunces (display) · Inter (body) · JetBrains Mono (numerals)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand accents */
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --emerald: #10b981;
  --emerald-strong: #059669;

  /* Secondary warm accent — terracotta / coral (used sparingly) */
  --terra: #e2683f;         /* terracotta */
  --terra-strong: #c2410c;  /* deep terracotta */
  --coral: #f87171;         /* soft coral */
  --coral-soft: #fca5a5;    /* pale coral */

  /* Fonts */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii & shadows */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --container: 1200px;
  --container-narrow: 760px;

  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Dark theme (default) ---------- */
[data-theme="dark"] {
  --bg: #060a12;
  --bg-alt: #0b1220;
  --surface: #111a2b;
  --surface-2: #16213a;
  --border: rgba(148, 163, 184, 0.16);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #eaf1fb;
  --text-muted: #9fb0c8;
  --text-dim: #6b7c96;
  --glow: rgba(34, 211, 238, 0.16);
  --accent-grad: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 100%);
  --hero-radial: radial-gradient(1000px 520px at 78% 8%, rgba(34,211,238,0.14), transparent 60%),
                 radial-gradient(760px 460px at 10% 30%, rgba(16,185,129,0.10), transparent 60%);
}

/* ---------- Light theme (default) ---------- */
/* Warm cream / soft-gray palette — clean, high-contrast, LATAM-inspired
   but keeping the USA teal/emerald identity, with subtle terracotta accents. */
[data-theme="light"] {
  --bg: #f7f4ef;          /* warm off-white / light gray tending to cream */
  --bg-alt: #fffdfa;      /* near-white, faintly warm */
  --surface: #ffffff;     /* pure white cards */
  --surface-2: #f2ede5;   /* soft warm gray */
  --border: rgba(41, 37, 32, 0.10);
  --border-strong: rgba(41, 37, 32, 0.18);
  --text: #1c2433;        /* very dark slate, not pure black */
  --text-muted: #4c5666;
  --text-dim: #5f6879;
  --glow: rgba(6, 182, 212, 0.10);
  /* Slightly deeper accent gradient for CTAs so they pop on light bg */
  --accent-grad: linear-gradient(135deg, var(--cyan-strong) 0%, var(--emerald-strong) 100%);
  /* Soft warm hero wash: cream base + very transparent teal/emerald + tiny terracotta touch */
  --hero-radial:
    radial-gradient(1000px 520px at 80% 4%, rgba(6,182,212,0.09), transparent 62%),
    radial-gradient(760px 460px at 8% 26%, rgba(16,185,129,0.07), transparent 60%),
    radial-gradient(620px 420px at 98% 62%, rgba(226,104,63,0.05), transparent 62%);

  /* Ink-strength accents for TEXT/ICONS on light surfaces (WCAG-safe).
     Light cyan (#22d3ee) fails contrast on cream, so use deeper tones. */
  --accent-ink: #0e7490;        /* deep cyan/teal for links & eyebrows */
  --accent-ink-emerald: #047857;/* deep emerald for text accents */
  --accent-ink-terra: #c2410c;  /* deep terracotta for occasional text accents */
}

/* ============================================================
   LIGHT-THEME REFINEMENTS
   Keep teal/emerald identity but make accents readable on cream,
   soften heavy shadows, and add subtle terracotta touches.
   ============================================================ */
[data-theme="light"] .eyebrow { color: var(--accent-ink); }

/* Links / "learn more" / inline accents — deepen for contrast */
[data-theme="light"] .learn,
[data-theme="light"] .footer address a,
[data-theme="light"] .footer ul a:hover,
[data-theme="light"] .intl-link a,
[data-theme="light"] .chat__link,
[data-theme="light"] .bubble--out strong,
[data-theme="light"] .faq__item summary:hover { color: var(--accent-ink); }

[data-theme="light"] .icon-btn:hover,
[data-theme="light"] .btn--outline:hover,
[data-theme="light"] .btn--ghost:hover { color: var(--accent-ink); border-color: var(--accent-ink); }

/* Value/feature card icon tint chips — deepen glyph color for contrast */
[data-theme="light"] .vcard__icon,
[data-theme="light"] .fcard__icon { color: var(--accent-ink); background: color-mix(in srgb, var(--cyan-strong) 12%, transparent); }
[data-theme="light"] .vcard__icon.icon-emerald,
[data-theme="light"] .fcard__icon.icon-emerald { color: var(--accent-ink-emerald); background: color-mix(in srgb, var(--emerald-strong) 12%, transparent); }

/* Comparison / pricing accent text */
[data-theme="light"] .cmp__table .inc,
[data-theme="light"] .pcard__save,
[data-theme="light"] .chat__status { color: var(--accent-ink-emerald); }
[data-theme="light"] .cmp__table .price-final,
[data-theme="light"] .acard__price,
[data-theme="light"] .learn { color: var(--accent-ink); }

/* Soften the big mockup shadow on a light background */
[data-theme="light"] .mock {
  box-shadow: 0 32px 64px -34px rgba(28,36,51,0.35), 0 0 0 1px var(--border) inset;
}

/* Subtle terracotta touch #1: the hero eyebrow gets a warm underline accent */
[data-theme="light"] .hero__copy > .eyebrow {
  position: relative;
  padding-bottom: 4px;
}
[data-theme="light"] .hero__copy > .eyebrow::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--terra), var(--coral));
}

/* Subtle terracotta touch #2: one hero metric card gets a warm accent */
[data-theme="light"] .mock__cards .mcard:nth-child(3) {
  border-color: color-mix(in srgb, var(--terra) 32%, var(--border));
  background: color-mix(in srgb, var(--terra) 5%, var(--bg-alt));
}
[data-theme="light"] .mock__cards .mcard:nth-child(3) .mcard__v { color: var(--terra-strong); }
[data-theme="light"] .mock__cards .mcard:nth-child(3) .mcard__spark { color: var(--terra); }

/* Subtle terracotta touch #3: warm the sidebar active nav dot in mock */
[data-theme="light"] .proof__item strong { color: var(--accent-ink-terra); }

/* ------------------------------------------------------------
   MORE TERRACOTTA — contemporary accent touches (v2)
   Deliberate, sparse warm brushstrokes in the Vercel/Linear/Framer
   vein: section markers, a featured badge, a warm quote mark, a
   couple of icon tints, and secondary hover states. CTAs stay teal.
   ------------------------------------------------------------ */

/* Touch #4: every centered section eyebrow gets the same warm underline
   marker as the hero — a consistent "section kicker" accent across
   Why / Features / The math / Pricing / AI / FAQ. */
[data-theme="light"] .section__head .eyebrow {
  position: relative;
  padding-bottom: 6px;
}
[data-theme="light"] .section__head .eyebrow::after {
  content: "";
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--terra), var(--coral));
}

/* Touch #5: thin terracotta rule at the top edge of alt-background
   sections — a crisp horizontal accent line that reads as an intentional
   section divider, not a full-width color band. */
[data-theme="light"] .section--alt { position: relative; }
[data-theme="light"] .section--alt::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--terra), transparent);
  opacity: 0.85;
}

/* Touch #6: the featured "MOST POPULAR" ribbon switches from teal to a
   warm terracotta gradient so the highlighted tier pops with the
   secondary color. The BEST VALUE ribbon and all CTAs stay teal/emerald. */
[data-theme="light"] .ribbon--pop {
  background: linear-gradient(135deg, var(--terra), var(--terra-strong));
  color: #fff;
}

/* Touch #7: warm the big decorative quote mark on the testimonial for an
   editorial, contemporary feel (keeps the centered layout balanced). */
[data-theme="light"] .testi__mark { color: var(--terra); opacity: 0.5; }

/* Touch #8: give two feature-card icons a terracotta tint (SMS/WhatsApp
   and the last card) so the icon row has warm variety instead of a
   uniform teal/emerald grid. */
[data-theme="light"] .grid-features .fcard:nth-child(3) .fcard__icon,
[data-theme="light"] .grid-features .fcard:nth-child(6) .fcard__icon {
  color: var(--terra-strong);
  background: color-mix(in srgb, var(--terra) 12%, transparent);
}

/* Touch #9: secondary hover state — "Learn more" links and footer links
   are teal at rest and shift to warm terracotta on hover (modern
   two-color link treatment). Primary CTAs are unaffected. */
[data-theme="light"] .learn:hover { color: var(--accent-ink-terra); opacity: 1; }
[data-theme="light"] .footer ul a:hover { color: var(--accent-ink-terra); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-9); position: relative; }
.section--alt { background: var(--bg-alt); }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--sp-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--accent-grad);
  color: #04121a;
  box-shadow: 0 6px 24px -8px var(--cyan);
}
.btn--primary:hover { box-shadow: 0 12px 34px -8px var(--cyan); }

.btn--emerald {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-strong) 100%);
  color: #04140d;
  box-shadow: 0 6px 24px -8px var(--emerald);
}

.btn--outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--ghost {
  border-color: var(--border-strong);
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 40%, transparent);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.is-scrolled { border-bottom-color: var(--border); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 72px;
}
.nav__logo { display: inline-flex; align-items: center; gap: var(--sp-3); font-weight: 700; }
.nav__logo-mark { width: 36px; height: 36px; }
.nav__logo-text { font-size: 1.06rem; letter-spacing: -0.01em; }
.ai-chip {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.12em 0.42em;
  border-radius: 6px;
  background: var(--accent-grad);
  color: #04121a;
  vertical-align: middle;
}

.nav__links { display: flex; align-items: center; gap: var(--sp-6); }
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 2px;
  background: var(--surface);
}
.lang-toggle button,
.lang-toggle a {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-pill);
  transition: background var(--transition), color var(--transition);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.lang-toggle .is-active { background: var(--accent-grad); color: #04121a; }
.lang-toggle a:hover { color: var(--text); }

.icon-btn {
  width: 38px; height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 10px;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.icon-btn:hover { color: var(--cyan); border-color: var(--cyan); }
[data-theme-toggle]::before {
  content: "";
  width: 18px; height: 18px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
/* moon icon in dark mode (switch to light) */
[data-theme="dark"] [data-theme-toggle]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
}
/* sun icon in light mode (switch to dark) */
[data-theme="light"] [data-theme-toggle]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
}

.nav__burger { display: none; }

/* Mobile nav drawer */
@media (max-width: 940px) {
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-4) var(--sp-5) var(--sp-6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 24px 40px -20px rgba(0,0,0,0.5);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { width: 100%; padding: var(--sp-4) 0; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__burger { display: inline-grid; }
  .nav__actions .btn--sm { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-block: var(--sp-9) var(--sp-8); overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0;
  background: var(--hero-radial);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 580;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
  margin-block: var(--sp-3) var(--sp-5);
}
.hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: var(--sp-6);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.hero__trust { font-size: 0.88rem; color: var(--text-dim); }

/* Dashboard mockup */
.hero__mock { perspective: 1600px; }
.mock {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55), 0 0 0 1px var(--border) inset;
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform 600ms cubic-bezier(0.4,0,0.2,1);
}
.hero__mock:hover .mock { transform: rotateY(-3deg) rotateX(1deg); }
.mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 0.7rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--text-dim); opacity: 0.5; }
.mock__bar span:nth-child(1) { background: #ff5f57; opacity: 0.85; }
.mock__bar span:nth-child(2) { background: #febc2e; opacity: 0.85; }
.mock__bar span:nth-child(3) { background: #28c840; opacity: 0.85; }
.mock__bar em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.mock__body { display: grid; grid-template-columns: 56px 1fr; min-height: 300px; }
.mock__side {
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  padding: var(--sp-4) 0;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.mock__logo { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-grad); }
.mock__nav { display: flex; flex-direction: column; gap: var(--sp-4); }
.mock__nav i { width: 22px; height: 22px; border-radius: 6px; background: var(--border-strong); }
.mock__nav i.on { background: var(--cyan); }
.mock__main { padding: var(--sp-5); }

.mock__cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.mcard {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
}
.mcard__k { display: block; font-size: 0.7rem; color: var(--text-dim); margin-bottom: var(--sp-2); }
.mcard__v { display: block; font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.mcard__spark {
  display: block; height: 20px; margin-top: var(--sp-2); border-radius: 4px;
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.18;
}
.spark-cyan { color: var(--cyan); }
.spark-emerald { color: var(--emerald); }
.mcard--ai { border-color: color-mix(in srgb, var(--emerald) 45%, var(--border)); background: color-mix(in srgb, var(--emerald) 8%, var(--bg-alt)); }
.mcard--ai .mcard__v { color: var(--emerald); font-size: 1.15rem; }
.mcard__dot {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 9px; height: 9px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--emerald) 60%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.mock__chart { margin-top: var(--sp-4); height: 74px; }
.mock__chart svg { width: 100%; height: 100%; }
.mock__rows { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }
.mrow { display: flex; align-items: center; gap: var(--sp-3); }
.mrow__badge { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.b-emerald { background: var(--emerald); }
.b-cyan { background: var(--cyan); }
.mrow__l { flex: 1; height: 9px; border-radius: 5px; background: var(--border-strong); }
.mrow__t { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); }

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-3);
  padding-block: var(--sp-5);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}
.proof__item strong { color: var(--text); }
.proof__sep { color: var(--text-dim); }
@media (max-width: 720px) { .proof__sep { display: none; } .proof__inner { flex-direction: column; gap: var(--sp-2); } }

/* ============================================================
   VALUE PROP — grid-3
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.vcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.vcard:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 24px 40px -28px rgba(0,0,0,0.6); }
.vcard__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--cyan) 12%, transparent);
  color: var(--cyan);
  margin-bottom: var(--sp-4);
}
.vcard__icon svg { width: 26px; height: 26px; }
.vcard__icon.icon-emerald { background: color-mix(in srgb, var(--emerald) 12%, transparent); color: var(--emerald); }
.vcard h3 { font-family: var(--font-display); font-weight: 560; font-size: 1.3rem; margin-bottom: var(--sp-3); letter-spacing: -0.01em; }
.vcard p { color: var(--text-muted); font-size: 0.96rem; }

/* ============================================================
   FEATURES — grid-features
   ============================================================ */
.grid-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.fcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  display: flex; flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.fcard:hover { transform: translateY(-4px); border-color: var(--cyan); }
.fcard__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--cyan) 12%, transparent);
  color: var(--cyan);
  margin-bottom: var(--sp-4);
}
.fcard__icon svg { width: 22px; height: 22px; }
.fcard__icon.icon-emerald { background: color-mix(in srgb, var(--emerald) 12%, transparent); color: var(--emerald); }
.fcard h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--sp-2); }
.fcard p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.learn {
  margin-top: var(--sp-4);
  font-size: 0.88rem; font-weight: 600; color: var(--cyan);
  transition: gap var(--transition), opacity var(--transition);
}
.learn:hover { opacity: 0.75; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp {
  max-width: 860px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cmp__table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.cmp__table th, .cmp__table td { padding: 0.85rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); }
.cmp__table thead th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); background: var(--surface-2); }
.cmp__table .num { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.cmp__table .inc { color: var(--emerald); font-weight: 600; }
.cmp__table tbody tr:hover { background: var(--surface-2); }
.cmp__table tfoot td { font-weight: 700; background: var(--surface-2); border-bottom: none; }
.cmp__table .strike { text-decoration: line-through; color: var(--text-dim); }
.cmp__table .price-final { color: var(--cyan); font-family: var(--font-mono); font-size: 1.15rem; }
.callout {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.callout--big {
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--cyan) 40%, var(--border));
  background: color-mix(in srgb, var(--cyan) 7%, var(--bg-alt));
  font-size: 1.05rem;
}
.callout--big strong { color: var(--text); }
.callout--warm {
  border: 1px solid color-mix(in srgb, var(--emerald) 40%, var(--border));
  background: color-mix(in srgb, var(--emerald) 7%, var(--bg-alt));
}
.callout--warm p { margin-bottom: var(--sp-4); color: var(--text-muted); }
.callout--warm strong { color: var(--text); }

/* ============================================================
   PRICING
   ============================================================ */
.price-toggles { display: flex; justify-content: center; margin-bottom: var(--sp-3); }
.seg {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.seg button {
  border: none; background: transparent; color: var(--text-muted);
  font-size: 0.88rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: var(--r-pill);
  transition: background var(--transition), color var(--transition);
}
.seg button.is-active { background: var(--accent-grad); color: #04121a; }
.price-note { text-align: center; font-size: 0.82rem; color: var(--text-dim); margin-bottom: var(--sp-7); }

.grid-pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); align-items: stretch; }
.pcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pcard:hover { transform: translateY(-4px); }
.pcard--pop { border-color: var(--cyan); box-shadow: 0 24px 50px -30px var(--cyan); }
.pcard--best { border-color: var(--emerald); box-shadow: 0 24px 50px -30px var(--emerald); }
.ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.32rem 0.8rem; border-radius: var(--r-pill);
  white-space: nowrap;
}
.ribbon--pop { background: var(--accent-grad); color: #04121a; }
.ribbon--best { background: linear-gradient(135deg, var(--emerald), var(--emerald-strong)); color: #04140d; }
.pcard__head { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.pcard__emoji { font-size: 1.35rem; }
.pcard__head h3 { font-size: 1.2rem; font-weight: 700; }
.pcard__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: var(--sp-2); }
.pcard__price .amount { font-family: var(--font-mono); font-size: 2.1rem; font-weight: 700; letter-spacing: -0.02em; }
.pcard__price .per { color: var(--text-dim); font-size: 0.9rem; }
.pcard__cur { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; margin-left: 4px; }
.pcard__save { font-size: 0.8rem; color: var(--emerald); font-weight: 600; margin-bottom: var(--sp-4); min-height: 1.2em; }
.pcard .btn { margin-bottom: var(--sp-5); }
.pcard__list { display: flex; flex-direction: column; gap: var(--sp-3); font-size: 0.9rem; color: var(--text-muted); }
.pcard__list li { position: relative; padding-left: 1.7rem; }
.pcard__list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: color-mix(in srgb, var(--emerald) 16%, transparent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3C/svg%3E") ;
}
.pcard__list li::after {
  content: "";
  position: absolute; left: 4px; top: 6px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--emerald);
  border-bottom: 2px solid var(--emerald);
  transform: rotate(-45deg);
}

/* Add-ons */
.addons { margin-top: var(--sp-8); }
.addons__title { text-align: center; font-family: var(--font-display); font-weight: 560; font-size: 1.4rem; margin-bottom: var(--sp-5); }
.grid-addons { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.acard {
  display: flex; gap: var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
}
.acard__ico { font-size: 1.5rem; flex: none; }
.acard strong { display: block; font-size: 0.95rem; }
.acard__price { display: block; font-family: var(--font-mono); font-size: 0.8rem; color: var(--cyan); margin: 2px 0 var(--sp-2); }
.acard p { font-size: 0.82rem; color: var(--text-muted); }

.intl-link { text-align: center; margin-top: var(--sp-7); color: var(--text-muted); font-size: 0.95rem; }
.intl-link a { color: var(--cyan); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   ENTERPRISE ONBOARDING
   ============================================================ */
.onboard__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-7); align-items: center; }
.onboard__lead { color: var(--text-muted); margin-top: var(--sp-4); font-size: 1.02rem; }

/* ============================================================
   AI DEMO CHAT
   ============================================================ */
.chat {
  max-width: 560px; margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.6);
}
.chat__head {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.chat__ava { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-grad); flex: none; }
.chat__head strong { display: block; font-size: 0.95rem; }
.chat__status { font-size: 0.76rem; color: var(--emerald); }
.chat__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }
.bubble {
  max-width: 82%;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.bubble--in { align-self: flex-start; background: var(--surface-2); border-bottom-left-radius: 4px; }
.bubble--out { align-self: flex-end; background: color-mix(in srgb, var(--cyan) 14%, var(--surface-2)); border: 1px solid color-mix(in srgb, var(--cyan) 30%, transparent); border-bottom-right-radius: 4px; }
.bubble--out strong { color: var(--cyan); }
.chat__link { color: var(--cyan); font-weight: 600; }
.bubble--typing { align-self: flex-start; display: inline-flex; gap: 4px; background: var(--surface-2); }
.bubble--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); animation: typing 1.3s infinite; }
.bubble--typing i:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.ai__note { text-align: center; margin-top: var(--sp-5); color: var(--text-dim); font-size: 0.88rem; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi { background: var(--bg-alt); }
.testi__quote {
  max-width: 780px; margin-inline: auto;
  text-align: center;
  position: relative;
}
.testi__mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.5;
  color: var(--cyan);
  opacity: 0.35;
  display: block;
  margin-bottom: var(--sp-3);
}
.testi__quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--sp-5);
}
.testi__quote footer { color: var(--text-muted); font-size: 0.95rem; }
.testi__quote footer strong { color: var(--text); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5);
  font-weight: 600;
  font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  transition: color var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan); }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--transition);
  color: var(--text-dim);
}
.faq__item[open] summary::after { transform: rotate(180deg); color: var(--cyan); }
.faq__a { padding: 0 var(--sp-5); overflow: hidden; }
.faq__a p { padding-bottom: var(--sp-5); color: var(--text-muted); font-size: 0.96rem; }
/* JS-driven smooth expand */
.faq__item .faq__a { max-height: 0; transition: max-height 320ms cubic-bezier(0.4,0,0.2,1); }
.faq__item[open] .faq__a { max-height: 400px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  position: relative;
  padding-block: var(--sp-10);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-strong) 0%, var(--emerald-strong) 100%);
  color: #ffffff;
}
.finalcta__glow {
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(255,255,255,0.22), transparent 70%);
  pointer-events: none;
}
.finalcta .container { position: relative; }
.finalcta__title {
  font-family: var(--font-display);
  font-weight: 580;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16em;
  margin: 0 auto var(--sp-6);
  color: #fff;
}
.finalcta__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-bottom: var(--sp-4); }
.finalcta .btn--primary { background: #fff; color: #063a45; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4); }
.finalcta .btn--primary:hover { background: #f0fdff; }
.finalcta__note { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-block: var(--sp-8) 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-7); }
.footer__brand { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: var(--sp-4); }
.footer address { font-style: normal; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: var(--sp-4); }
.footer address a { color: var(--cyan); }
.footer__legal { font-size: 0.82rem; color: var(--text-dim); line-height: 1.9; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: var(--sp-4); }
.footer ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer ul a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--cyan); }
.footer__bar {
  margin-top: var(--sp-8);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms cubic-bezier(0.4,0,0.2,1), transform 640ms cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-pricing { grid-template-columns: repeat(2, 1fr); }
  .grid-addons { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero__mock { max-width: 520px; }
  .mock { transform: none; }
  .onboard__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-features { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding-block: var(--sp-8); }
  .hero { padding-block: var(--sp-7) var(--sp-6); }
  .grid-features { grid-template-columns: 1fr; }
  .grid-pricing { grid-template-columns: 1fr; }
  .grid-addons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .mock__cards { grid-template-columns: 1fr; }
  .hero__ctas .btn, .finalcta__ctas .btn { width: 100%; }
  .cmp__table th, .cmp__table td { padding: 0.7rem 0.8rem; font-size: 0.85rem; }
  .container { padding-inline: var(--sp-4); }
}

/* ============================================================
   TRIAL MODAL
   ============================================================ */
.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.trial-modal.is-open { display: flex; }
.trial-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn .18s ease-out;
}
.trial-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--surface, #fff);
  color: var(--text, #1a1a1a);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.1);
  animation: modalIn .22s cubic-bezier(.22,.9,.36,1);
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes modalIn { from{opacity:0; transform: translateY(12px) scale(.98)} to{opacity:1; transform: translateY(0) scale(1)} }
.trial-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.05);
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .16s ease;
}
.trial-modal__close:hover { background: rgba(0,0,0,.1); }
.trial-modal__close svg { width: 18px; height: 18px; }
.trial-modal__body { padding: 34px 34px 28px; }
.trial-modal__title {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.01em;
}
.trial-modal__sub {
  margin: 0 0 22px;
  color: rgba(0,0,0,.62);
  font-size: .95rem;
  line-height: 1.5;
}

.trial-form { display: flex; flex-direction: column; gap: 14px; }
.trial-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.trial-form__row label,
.trial-form__full { display: flex; flex-direction: column; gap: 6px; }
.trial-form label > span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(0,0,0,.72);
}
.trial-form input,
.trial-form select,
.trial-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,.14);
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: .95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
  outline: none;
  border-color: var(--teal, #0E5E5E);
  box-shadow: 0 0 0 3px rgba(14, 94, 94, .14);
}
.trial-form textarea { resize: vertical; min-height: 76px; }
.trial-form__submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding-block: 12px;
}
.trial-form__submit-loading { display: none; }
.trial-form.is-loading .trial-form__submit-idle { display: none; }
.trial-form.is-loading .trial-form__submit-loading { display: inline; }
.trial-form.is-loading .trial-form__submit { opacity: .7; pointer-events: none; }
.trial-form__legal {
  margin: 0;
  font-size: .78rem;
  color: rgba(0,0,0,.5);
  line-height: 1.45;
  text-align: center;
}

.trial-modal__success {
  text-align: center;
  padding: 20px 0 8px;
}
.trial-modal__check {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(5, 150, 105, .12);
  margin: 0 auto 14px;
  display: block;
}
.trial-modal__success h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
}
.trial-modal__success p {
  margin: 0 0 20px;
  color: rgba(0,0,0,.62);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .trial-modal__body { padding: 28px 22px 24px; }
  .trial-form__row { grid-template-columns: 1fr; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .trial-modal__panel { background: #17201d; color: #f0efe9; }
  .trial-modal__close { background: rgba(255,255,255,.08); }
  .trial-modal__close:hover { background: rgba(255,255,255,.15); }
  .trial-modal__sub,
  .trial-form label > span,
  .trial-modal__success p { color: rgba(255,255,255,.7); }
  .trial-form input,
  .trial-form select,
  .trial-form textarea {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.14);
    color: #f0efe9;
  }
}
