/* ===========================================================
   SCApp · Central de Pagamento — Soft Fintech 2026
   =========================================================== */

:root {
  /* Surfaces */
  --bg:           #F4F5FB;
  --bg-soft:      #ECEDF7;
  --surface:      #FFFFFF;
  --surface-2:    #F7F8FE;

  /* Ink */
  --ink:          #0F1024;
  --ink-2:        #2A2C4A;
  --mute:         #6B6F89;
  --mute-2:       #9098B5;

  /* Borders */
  --line:         rgba(15, 16, 36, 0.08);
  --line-2:       rgba(15, 16, 36, 0.14);

  /* Accent palette */
  --violet:       #5046E4;
  --violet-2:     #7561FF;
  --violet-soft:  #E9E6FF;
  --pink:         #FF4F87;
  --pink-2:       #FF6FA1;
  --pink-soft:    #FFE2EE;
  --coral:        #FF8A4E;
  --coral-soft:   #FFE6D5;
  --lime:         #C2F056;
  --lime-2:       #D7FF7A;
  --mint:         #5CE5C0;
  --sky:          #6FC9FF;
  --sun:          #FFC857;

  /* Gradients */
  --grad-hero:    radial-gradient(ellipse 90% 70% at 80% 0%, rgba(255, 79, 135, 0.22), transparent 60%),
                  radial-gradient(ellipse 80% 60% at 0% 30%, rgba(80, 70, 228, 0.22), transparent 65%),
                  radial-gradient(ellipse 70% 60% at 60% 100%, rgba(255, 138, 78, 0.16), transparent 70%);
  --grad-violet:  linear-gradient(135deg, #5046E4 0%, #7561FF 50%, #A88BFF 100%);
  --grad-pink:    linear-gradient(135deg, #FF4F87 0%, #FF8A4E 100%);
  --grad-mint:    linear-gradient(135deg, #5CE5C0 0%, #6FC9FF 100%);
  --grad-dark:    linear-gradient(160deg, #0F1024 0%, #1B1A3C 50%, #2B1A4D 100%);

  /* Type */
  --display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Geometry */
  --r-card:   28px;
  --r-card-lg: 36px;
  --r-pill:  100px;
  --r-chip:  14px;
  --r-input: 16px;

  /* Shadows */
  --sh-soft:  0 1px 2px rgba(15,16,36,0.04), 0 8px 24px -12px rgba(15,16,36,0.10);
  --sh-card:  0 1px 2px rgba(15,16,36,0.04), 0 24px 60px -28px rgba(15,16,36,0.20);
  --sh-hover: 0 1px 2px rgba(15,16,36,0.04), 0 40px 90px -30px rgba(80,70,228,0.30);
  --sh-deck:  0 60px 140px -60px rgba(80,70,228,0.40);

  --container: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* typography ------------------------------------------------ */
.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.eyebrow.pink   { color: var(--pink);   background: var(--pink-soft); }
.eyebrow.pink::before { background: var(--pink); }
.eyebrow.coral  { color: #B14A1F; background: var(--coral-soft); }
.eyebrow.coral::before { background: var(--coral); }
.eyebrow.dark   { color: #F7F8FE; background: rgba(255,255,255,0.10); }
.eyebrow.dark::before { background: var(--lime); }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; font-family: var(--display); }
p { color: var(--ink-2); }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 56ch; }

/* nav ------------------------------------------------------- */
.nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  padding: 12px 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(15,16,36,0.06);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px -10px rgba(15,16,36,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 40px -20px rgba(15,16,36,0.18);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-brand img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-brand b {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--surface);
  background: var(--grad-violet);
  padding: 3px 8px;
  border-radius: 999px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--r-pill);
  letter-spacing: -0.005em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--violet); transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  position: relative;
}

/* language switcher (pill na nav) ---------------------------- */
.lang-switch { position: relative; display: inline-flex; }
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 12px 8px 14px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lang-pill:hover { background: var(--bg-soft); border-color: rgba(15,16,36,0.16); }
.lang-pill .lang-caret { font-size: 10px; opacity: 0.55; transition: transform 0.2s ease; }
.lang-switch.open .lang-pill { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.lang-switch.open .lang-pill .lang-caret { transform: rotate(180deg); opacity: 0.7; }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--sh-card);
  list-style: none;
  margin: 0;
  display: none;
  z-index: 60;
}
.lang-switch.open .lang-menu { display: block; animation: lang-pop 0.18s ease-out; }
@keyframes lang-pop {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-2);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.lang-menu a.active { background: var(--violet-soft); color: var(--violet); font-weight: 600; }
.lang-menu a .lc {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  background: var(--bg-soft);
  color: var(--ink-2);
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.lang-menu a.active .lc { background: var(--violet); color: var(--surface); }

/* mobile lang row dentro do menu mobile */
.nav-mobile-langs {
  margin-top: 8px;
  padding: 14px 14px 6px;
  border-top: 1px solid var(--line);
}
.nav-mobile-langs .m-lang-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.nav-mobile-langs .m-lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nav-mobile-langs .m-lang-row a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.nav-mobile-langs .m-lang-row a.active {
  background: var(--ink);
  color: var(--surface);
}
.nav-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -9px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger span:nth-child(1) { transform: translateY(-6px); }
.nav-burger span:nth-child(2) { transform: translateY(0); }
.nav-burger span:nth-child(3) { transform: translateY(6px); }

@media (max-width: 980px) {
  .nav { left: 12px; right: 12px; padding: 10px 14px; }
  .nav-row { gap: 12px; }
  .nav-brand img { height: 30px; }
  .nav-brand b { display: none; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switch { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-burger span:nth-child(1) { transform: rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: rotate(-45deg); }
  .nav.open .nav-mobile { display: flex; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: 90px; left: 16px; right: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  list-style: none;
  box-shadow: var(--sh-card);
}
.nav-mobile a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 14px;
}
.nav-mobile a:hover { background: var(--bg-soft); }

/* hero ------------------------------------------------------ */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% 0 -5%;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: 0;
}
.hero .container { z-index: 2; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.hero-meta span:first-child::before {
  content: "● ";
  color: var(--lime);
  margin-right: 6px;
  font-size: 14px;
}
.hero-meta b { color: var(--violet); font-weight: 500; }

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8.5vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .alt {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  color: var(--mute);
  margin-top: 16px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: end;
  margin-top: 56px;
}
.hero-copy { max-width: 52ch; }
.hero-copy p { font-size: 19px; line-height: 1.6; color: var(--ink-2); }

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover { background: var(--violet); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(80, 70, 228, 0.4); }

.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface); transform: translateY(-2px); box-shadow: var(--sh-soft); }

.btn-burnt {
  background: var(--grad-pink);
  color: var(--surface);
  box-shadow: 0 10px 30px -10px rgba(255, 79, 135, 0.5);
}
.btn-burnt:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255, 79, 135, 0.6); }

.btn .arrow {
  display: inline-block;
  width: 16px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  border-radius: 1px;
}
.btn:hover .arrow { transform: translateX(4px); }

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(255, 79, 135, 0.25), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(80, 70, 228, 0.30), transparent 65%);
  z-index: 1;
}
.hero-visual img {
  position: relative;
  z-index: 2;
  max-height: 86%;
  max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 16, 36, 0.25));
  border-radius: 16px;
}
.hero-visual .tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 3;
  border: 1px solid rgba(15,16,36,0.06);
}
.hero-visual .tag.tl { top: 24px; left: 24px; color: var(--violet); }
.hero-visual .tag.tr { top: 24px; right: 24px; }
.hero-visual .tag.br { bottom: 24px; right: 24px; }
.hero-visual .tag.bl { bottom: 24px; left: 24px; color: var(--pink); }

/* hero ticker */
.ticker {
  margin-top: 80px;
  padding: 22px 0;
  background: var(--surface);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--mute);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-block;
  animation: ticker 38s linear infinite;
  padding-left: 100%;
}
.ticker-track span { margin-right: 40px; display: inline-flex; align-items: center; gap: 8px; }
.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--mute-2);
  border-radius: 50%;
}
.ticker-track span b { color: var(--violet); font-weight: 600; }
.ticker-track span b::before { background: var(--violet); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* sections -------------------------------------------------- */
section { padding: 100px 0; position: relative; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 720px;
}
.section-num {
  display: none;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p {
  font-size: 19px;
  color: var(--mute);
  max-width: 56ch;
}

/* caixa section -------------------------------------------- */
.models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.model {
  background: var(--surface);
  border-radius: var(--r-card-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--sh-soft);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  overflow: hidden;
}
.model::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(80, 70, 228, 0.18), transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0.4;
}
.model:nth-child(2)::before {
  background: radial-gradient(circle at 50% 50%, rgba(255, 79, 135, 0.18), transparent 60%);
}
.model:hover { transform: translateY(-8px); box-shadow: var(--sh-hover); }
.model:hover::before { opacity: 1; }

.model-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.model:nth-child(2) .model-tag { color: var(--pink); background: var(--pink-soft); }

.model h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.model h3 em {
  font-style: normal;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.model:nth-child(2) h3 em { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; }

.model p { margin-bottom: 24px; color: var(--mute); }

.model-img {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--violet-soft) 100%);
  aspect-ratio: 4/5;
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.model:nth-child(2) .model-img {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--pink-soft) 100%);
}
.model-img img {
  max-height: 88%;
  max-width: 88%;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 20px 40px rgba(15, 16, 36, 0.18));
}
.model-img::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
}

.feature-list { list-style: none; }
.feature-list li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

/* parallel section ----------------------------------------- */
.parallel {
  background: var(--grad-dark);
  color: var(--surface);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.parallel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255, 79, 135, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(94, 230, 192, 0.16), transparent 60%);
  pointer-events: none;
}
.parallel .container { z-index: 2; }
.parallel .eyebrow { color: var(--lime); background: rgba(194, 240, 86, 0.14); }
.parallel .eyebrow::before { background: var(--lime); }

.parallel h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 24px 0 32px;
  color: var(--surface);
  max-width: 16ch;
}
.parallel h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.parallel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}
.parallel-copy p { color: rgba(247, 248, 254, 0.75); font-size: 17px; line-height: 1.65; }
.parallel-copy p + p { margin-top: 18px; }
.parallel-copy b { color: var(--lime); font-weight: 600; }

.diagram {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-card-lg);
  padding: 36px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(247, 248, 254, 0.85);
  position: relative;
}
.diagram-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.diagram-row:last-child { border-bottom: none; }
.diagram-row .left, .diagram-row .right {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}
.diagram-row .left {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.diagram-row .right {
  background: rgba(255, 79, 135, 0.16);
  color: var(--pink-2);
  border: 1px solid rgba(255, 79, 135, 0.30);
}
.diagram-row .arrow-h {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.30);
  border-radius: 2px;
  position: relative;
}
.diagram-row .arrow-h::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 8px; height: 8px;
  border-top: 2px solid rgba(255,255,255,0.6);
  border-right: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}
.diagram-tag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--ink);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--lime);
  border-radius: 999px;
  border: 1px solid rgba(194,240,86,0.20);
}

/* feature columns / cash control --------------------------- */
.cash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cash-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.cash-stat .item {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cash-stat .item:hover { transform: translateY(-3px); box-shadow: var(--sh-soft); }
.cash-stat .item .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.cash-stat .item .num span {
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cash-stat .item .lab {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  margin-top: 8px;
}

.receipt {
  background: var(--surface);
  border-radius: var(--r-card-lg);
  padding: 36px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  position: relative;
  box-shadow: var(--sh-card);
  border: 1px solid var(--line);
}
.receipt::before {
  content: "TRANSAÇÃO #28471";
  position: absolute;
  top: -12px; left: 28px;
  background: var(--grad-violet);
  color: var(--surface);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.receipt-row:last-child {
  border-bottom: none;
  padding-top: 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.receipt-row:last-child span:last-child {
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}
.receipt h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--violet);
  margin: 18px 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.receipt h4:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }

/* back office grid ----------------------------------------- */
.bo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bo-card {
  grid-column: span 2;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
  border-color: transparent;
}
.bo-card.wide { grid-column: span 3; }
.bo-card.full {
  grid-column: span 6;
  padding: 56px 48px;
  background: var(--grad-dark);
  color: var(--surface);
  border: none;
  position: relative;
  overflow: hidden;
}
.bo-card.full::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(255, 79, 135, 0.20), transparent 60%),
    radial-gradient(ellipse 30% 60% at 0% 80%, rgba(80, 70, 228, 0.30), transparent 65%);
  pointer-events: none;
}
.bo-card.full > * { position: relative; z-index: 2; }
.bo-card.full p { color: rgba(247,248,254,0.75); }
.bo-card .num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.bo-card.full .num {
  color: var(--lime);
  background: rgba(194,240,86,0.14);
}
.bo-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.bo-card.full h3 { font-size: 44px; max-width: 18ch; line-height: 1.05; }
.bo-card p { font-size: 15px; line-height: 1.55; color: var(--mute); }
.bo-card.full p { font-size: 17px; max-width: 60ch; }

.bo-card .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--violet-soft);
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}
.bo-card:nth-child(3) .icon { background: var(--pink-soft); color: var(--pink); }
.bo-card:nth-child(4) .icon { background: var(--coral-soft); color: var(--coral); }
.bo-card:nth-child(5) .icon { background: rgba(94, 230, 192, 0.20); color: #1FA988; }
.bo-card:nth-child(6) .icon { background: rgba(111, 201, 255, 0.20); color: #1781C7; }
.bo-card:nth-child(7) .icon { background: rgba(255, 200, 87, 0.25); color: #B07A1F; }
.bo-card.full .icon {
  background: rgba(194,240,86,0.16);
  color: var(--lime);
}

@media (max-width: 980px) {
  .bo-grid { grid-template-columns: 1fr; gap: 16px; }
  .bo-card, .bo-card.wide, .bo-card.full { grid-column: span 1; padding: 28px 24px; }
  .bo-card.full { padding: 40px 28px; }
  .bo-card.full h3 { font-size: 30px; }
}

/* relays panel */
.relay-panel {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card);
  padding: 24px 28px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
}
.relay-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 60px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.relay-row:last-child { border-bottom: none; }
.relay-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
}
.relay-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.relay-status.on { background: rgba(194, 240, 86, 0.16); color: var(--lime); }
.relay-status.off { background: rgba(255, 79, 135, 0.18); color: var(--pink-2); }

.relay-toggle {
  width: 44px; height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background 0.25s ease;
}
.relay-toggle.on {
  background: var(--lime);
}
.relay-toggle::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface);
  transition: transform 0.25s ease;
}
.relay-toggle.on::after { transform: translateX(20px); }

/* faturação ------------------------------------------------ */
.invoice-section {
  background: var(--bg);
  position: relative;
}
.invoice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 138, 78, 0.10), transparent 50%);
  pointer-events: none;
}
.invoice-section .container { z-index: 2; }

.integrations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.integration {
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.integration:hover { transform: translateY(-4px); box-shadow: var(--sh-soft); }
.integration h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.integration .badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.badge.done { background: rgba(94, 230, 192, 0.20); color: #138665; }
.badge.tuning { background: var(--coral-soft); color: #B14A1F; }
.badge.dev { background: var(--bg-soft); color: var(--mute); }
.integration p { font-size: 14px; color: var(--mute); }

@media (max-width: 980px) { .integrations { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .integrations { grid-template-columns: 1fr; } }

/* lang & customisation ------------------------------------- */
.langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.lang-chip:hover, .lang-chip:focus-visible {
  transform: translateY(-2px);
  border-color: var(--violet);
  color: var(--violet);
  outline: none;
}
.lang-chip.featured:hover, .lang-chip.featured:focus-visible { color: var(--surface); }
.lang-chip.featured {
  background: var(--grad-violet);
  color: var(--surface);
  border-color: transparent;
}

/* themes / sazonais ---------------------------------------- */
.themes {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.themes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255, 79, 135, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 200, 87, 0.14), transparent 60%);
  pointer-events: none;
}
.themes .container { z-index: 2; }

.theme-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.theme-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 16ch;
  margin-top: 12px;
}
.theme-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF4F87 0%, #FFC857 50%, #5046E4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.theme-head .theme-copy {
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mute);
  margin-top: 18px;
}
.theme-head .theme-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  color: #B07A1F;
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.theme-head .theme-tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 138, 78, 0.22);
  animation: pulse-dot 2.4s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 138, 78, 0.22); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 138, 78, 0.06); }
}

/* split: lista à esquerda + preview à direita */
.theme-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  padding: 40px;
  box-shadow: var(--sh-soft);
}

.theme-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.theme-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
.theme-item.live { color: var(--ink); }
.theme-item.soon { color: var(--mute); cursor: default; }
.theme-item.live:hover { background: var(--bg-soft); }

.theme-item .dot {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--bg-soft);
  transition: transform 0.25s ease, background 0.25s ease;
}
.theme-item.t-natal    .dot { background: linear-gradient(135deg, #C0392B 0%, #2D6A4F 100%); color: #FFE9D6; }
.theme-item.t-ano-novo .dot { background: linear-gradient(135deg, #0F1024 0%, #FFC857 130%); color: #FFE69A; }
.theme-item.t-carnaval .dot { background: linear-gradient(135deg, #FF4F87 0%, #FFC857 50%, #5046E4 100%); color: #FFFFFF; }
.theme-item.t-santos   .dot { background: linear-gradient(135deg, #C0392B 0%, #FFB703 50%, #1B5E20 100%); color: #FFFFFF; }
.theme-item.t-pascoa   .dot { background: linear-gradient(135deg, #FFE2EE 0%, #C2F056 100%); color: #1B3A12; }
.theme-item.t-verao    .dot { background: linear-gradient(135deg, #6FC9FF 0%, #5CE5C0 60%, #FFE69A 100%); color: #08334C; }
.theme-item.t-halloween .dot { background: linear-gradient(135deg, #1B0E2D 0%, #4A1F6B 60%, #FF8A4E 130%); color: #FFD7B5; }

.theme-item.soon .dot { filter: saturate(0.55) opacity(0.7); }

.theme-item .body {
  flex: 1;
  min-width: 0;
}
.theme-item h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0 0 2px 0;
  line-height: 1.1;
}
.theme-item p {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--mute);
  line-height: 1.4;
  margin: 0;
}

.theme-item .pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.theme-item.live .pill {
  background: rgba(194, 240, 86, 0.30);
  color: #4F8512;
  font-weight: 600;
}
.theme-item.live .pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4F8512;
  box-shadow: 0 0 0 3px rgba(79, 133, 18, 0.20);
  animation: pulse-live 2s infinite;
}
.theme-item.soon .pill {
  background: var(--bg-soft);
  color: var(--mute);
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79, 133, 18, 0.20); }
  50%      { box-shadow: 0 0 0 6px rgba(79, 133, 18, 0.04); }
}

/* item activo */
.theme-item.active {
  background: var(--ink);
  color: var(--surface);
}
.theme-item.active h4 { color: var(--surface); }
.theme-item.active p { color: rgba(247,248,254,0.65); }
.theme-item.active .dot { transform: scale(1.05); }
.theme-item.active .pill { background: var(--lime); color: var(--ink); }
.theme-item.active .pill::before { background: var(--ink); box-shadow: 0 0 0 3px rgba(15,16,36,0.18); }

/* preview à direita — imagem flutuante, sem background */
.theme-preview {
  position: sticky;
  top: 110px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 540px;
  padding: 16px 0;
  background: transparent;
}
.theme-preview .frame {
  position: relative;
  width: 64%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 50px 80px -30px rgba(15, 16, 36, 0.35),
    0 20px 40px -20px rgba(80, 70, 228, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-preview .frame:hover { transform: translateY(-6px) scale(1.01); }
.theme-preview .frame img,
.theme-preview .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.theme-preview .slide.active { opacity: 1; }

.theme-preview .empty {
  text-align: center;
  padding: 32px;
  color: var(--ink-2);
  font-family: var(--body);
}
.theme-preview .empty .glyph {
  font-size: 56px;
  margin-bottom: 14px;
  display: block;
}
.theme-preview .empty h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.theme-preview .empty p { font-size: 13px; color: var(--mute); }

/* legend dots em baixo do preview */
.theme-dots {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 4;
}
.theme-dots span {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.30);
  transition: background 0.3s ease, width 0.3s ease;
}
.theme-dots span.active {
  background: var(--lime);
  width: 44px;
}

.theme-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.theme-note .ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--violet-soft);
  color: var(--violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.theme-note b { color: var(--ink); }

@media (max-width: 980px) {
  .theme-head { flex-direction: column; gap: 18px; margin-bottom: 32px; }
  .theme-head h2 { max-width: 100%; margin-top: 4px; }
  .theme-head .theme-copy { max-width: 100%; margin-top: 0; font-size: 15.5px; }

  .theme-split { grid-template-columns: 1fr; padding: 18px; gap: 22px; border-radius: 22px; }
  .theme-preview {
    position: static;
    min-height: 0;
    height: auto;
    padding: 0;
    order: -1;
  }
  .theme-preview .frame {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
  }

  .theme-list { gap: 4px; }
  .theme-item { padding: 12px; gap: 12px; border-radius: 14px; }
  .theme-item .dot { width: 32px; height: 32px; border-radius: 10px; font-size: 16px; }
  .theme-item h4 { font-size: 15px; }
  .theme-item p { font-size: 12px; }
  .theme-item .pill { font-size: 9.5px; padding: 3px 8px; }

  .theme-note { padding: 18px 20px; gap: 12px; font-size: 13.5px; margin-top: 24px; }
  .theme-note .ico { width: 30px; height: 30px; flex-shrink: 0; }
}

@media (max-width: 420px) {
  .theme-item p { display: none; }
  .theme-item h4 { font-size: 14.5px; }
}

/* numbers / stats ------------------------------------------ */
.stats {
  background: var(--ink);
  color: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 40% at 100% 0%, rgba(80, 70, 228, 0.30), transparent 60%),
    radial-gradient(ellipse 30% 50% at 0% 100%, rgba(255, 79, 135, 0.22), transparent 60%);
  pointer-events: none;
}
.stats .container { z-index: 2; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.stat:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.stat .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--surface);
  letter-spacing: -0.04em;
}
.stat .v span {
  background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .l {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,248,254,0.55);
  margin-top: 16px;
}
.stat .n {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(247,248,254,0.30);
}
@media (max-width: 980px) { .stats-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats-row { grid-template-columns: 1fr; } }

/* presentation / deck -------------------------------------- */
.deck {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.deck::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(80, 70, 228, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(255, 138, 78, 0.10), transparent 60%);
  pointer-events: none;
}
.deck .container { z-index: 2; }

.deck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.deck-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 18px 0 24px;
}
.deck-copy h2 em {
  font-style: normal;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.deck-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--line);
}
.deck-meta .k {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.deck-meta .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.deck-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.deck-preview {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: var(--r-card-lg);
  padding: 48px 40px;
  box-shadow: var(--sh-deck);
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.deck-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 79, 135, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(80, 70, 228, 0.16), transparent 60%);
  pointer-events: none;
}
.deck-preview > * { position: relative; z-index: 2; }
.deck-preview:hover { transform: rotate(0deg) translateY(-8px); }

.deck-preview .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
.deck-preview .title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.deck-preview .title em {
  font-style: normal;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.deck-preview .sub {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  margin-top: 24px;
}
.deck-preview .toc {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}
.deck-preview .toc div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.deck-preview .toc div:last-child { border-bottom: 1px solid var(--line); }
.deck-preview .toc div span:first-child { color: var(--violet); font-weight: 600; }

.deck-preview .stamp {
  position: absolute;
  bottom: 36px; right: 36px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  background: var(--grad-pink);
  color: var(--surface);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  transform: rotate(-6deg);
  z-index: 3;
}

/* pricing -------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--r-card-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.plan.featured {
  background: var(--grad-dark);
  color: var(--surface);
  border: none;
  position: relative;
  overflow: hidden;
}
.plan.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 79, 135, 0.30), transparent 60%);
  pointer-events: none;
}
.plan.featured > * { position: relative; z-index: 2; }
.plan.featured p { color: rgba(247,248,254,0.75); }

.plan .tag {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.plan.featured .tag { color: var(--surface); background: rgba(255,255,255,0.14); }

.plan h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.plan .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  margin: 24px 0 8px;
  letter-spacing: -0.04em;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan.featured .price {
  background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan .price small {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  color: var(--mute);
  display: block;
  margin-top: 8px;
  letter-spacing: 0.02em;
  background: none;
  -webkit-text-fill-color: var(--mute);
}
.plan.featured .price small { color: rgba(247,248,254,0.55); -webkit-text-fill-color: rgba(247,248,254,0.55); }

.plan ul { list-style: none; margin: 24px 0; }
.plan li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-2);
}
.plan.featured li {
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: rgba(247,248,254,0.85);
}
.plan li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.plan .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* lavandarias selector ------------------------------------- */
.locator {
  background: var(--ink);
  color: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.locator::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(94, 230, 192, 0.18), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(80, 70, 228, 0.22), transparent 60%);
  pointer-events: none;
}
.locator .container { z-index: 2; }
.locator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.locator h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--surface);
  letter-spacing: -0.035em;
}
.locator h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.locator p { color: rgba(247,248,254,0.7); font-size: 17px; }

.locator-form {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.locator-form label {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247,248,254,0.55);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.locator-form select {
  width: 100%;
  padding: 18px 22px;
  background: var(--surface);
  color: var(--ink);
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}

.locator-info {
  display: none;
  margin-top: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--surface);
}
.locator-info.show { display: block; }
.locator-info .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.locator-info .row:last-of-type { border-bottom: none; }
.locator-info .row span:first-child { color: rgba(247,248,254,0.55); font-size: 12px; font-weight: 500; }
.locator-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--mint) 100%);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-pill);
  transition: transform 0.2s ease;
}
.locator-info a:hover { transform: translateY(-2px); }

/* contact -------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.contact-info .row {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info .row:first-child { padding-top: 0; }
.contact-info .row .k {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-info .row .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.contact-form input, .contact-form textarea {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 22px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--mute); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--surface);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  border-radius: 24px;
}

/* footer --------------------------------------------------- */
footer {
  background: var(--ink);
  color: var(--surface);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 0% 0%, rgba(80, 70, 228, 0.25), transparent 60%),
    radial-gradient(ellipse 30% 40% at 100% 100%, rgba(255, 79, 135, 0.18), transparent 60%);
  pointer-events: none;
}
footer .container { z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand-mark {
  width: 220px;
  max-width: 60%;
  height: auto;
  display: block;
}
.footer-brand p {
  margin-top: 16px;
  color: rgba(247,248,254,0.6);
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247,248,254,0.45);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(247,248,254,0.82);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(247,248,254,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247,248,254,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social { display: flex; gap: 10px; list-style: none; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(247,248,254,0.06);
  border: 1px solid rgba(247,248,254,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: var(--violet);
  border-color: var(--violet);
  transform: translateY(-2px);
}

/* reveal animation ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* responsive ----------------------------------------------- */
@media (max-width: 980px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .models { grid-template-columns: 1fr; }
  .parallel-grid, .cash-grid, .deck-grid, .locator-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .deck-preview { transform: none; }
  .deck-meta { grid-template-columns: 1fr 1fr; }
  .nav { left: 12px; right: 12px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .deck-actions { flex-direction: column; }
  .deck-actions .btn { width: 100%; justify-content: center; }
}
