/* ───────── i7 Network redesign ───────── */
:root {
  --violet-50:  #F4F1FF;
  --violet-100: #E9E2FF;
  --violet-200: #D6CAFF;
  --violet-300: #B9A8FF;
  --violet-400: #9276FF;
  --violet-500: #6E4BFF;
  --violet-600: #5832F0;
  --violet-700: #4322C7;
  --violet-800: #2E1894;
  --violet-900: #1B0F4A;
  --violet-950: #0E0830;

  --ink:        #0A0319;
  --ink-2:      #1A1234;
  --ink-3:      #2A1F4A;
  --paper:      #FAFAFB;
  --paper-2:    #F1ECFF;

  --mint:   #6FE9A7;
  --amber:  #F7C948;
  --cyan:   #4ECDF5;
  --rose:   #FF7AB6;
  --blue:   #38BDF8;

  /* surface tokens flip with dark mode */
  --bg:        var(--paper);
  --bg-2:      var(--paper-2);
  --fg:        var(--ink);
  --fg-2:      #4a3f6b;
  --fg-3:      #7868a3;
  --line:      #E5DEFB;
  --card:      #FFFFFF;
  --card-2:    #F8F4FF;
  --hero-bg:   var(--violet-950);
  --hero-fg:   #FFFFFF;
  --accent:    var(--blue);

  --r-1: 8px;
  --r-2: 14px;
  --r-3: 22px;
  --r-4: 32px;

  --maxw: 1280px;
  --pad: 64px;
}

[data-theme="dark"] {
  --bg:        #08051A;
  --bg-2:      #0E0830;
  --fg:        #F5F1FF;
  --fg-2:      #B5A9DB;
  --fg-3:      #8676B3;
  --line:      #251A4D;
  --card:      #0F0930;
  --card-2:    #160E40;
  --hero-bg:   #06031A;
  --hero-fg:   #FFFFFF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-feature-settings: "tnum" 1; }
.serif { font-family: "Instrument Serif", "Times New Roman", serif; font-weight: 400; }
.tnum { font-variant-numeric: tabular-nums; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 20px !important;
}

/* ───────── NAV ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: white;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  padding-inline: 28px;
  max-width: none;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.72); font-weight: 500;
}
.nav-links a { color: inherit; text-decoration: none; }
.nav-links a:hover { color: white; }

.nav-right {
  display: flex; align-items: center; gap: 24px;
}
.nav-login {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-login:hover { color: white; }

/* Logo */
.brand {
  display: inline-flex; align-items: center;
  color: var(--fg); text-decoration: none;
}
.brand-logo {
  display: block;
  height: 44px; width: auto;
}
.footer-brand .brand-logo { height: 34px; }

/* CTA button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  background: var(--violet-600); color: white;
  font: inherit; font-weight: 600; font-size: 14px;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--violet-700); }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--card-2); }
.btn-accent {
  background: var(--accent); color: var(--ink);
}
.btn-accent:hover { background: color-mix(in oklab, var(--accent) 85%, black); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--hero-fg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  padding: 96px 0 120px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.7);
  font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 28%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0 0 28px;
}
.hero h1 .em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -.02em;
}
.hero h1 .stop {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px; line-height: 1.5;
  color: rgba(255,255,255,.74);
  max-width: 480px;
  margin: 0 0 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero right panel — money card */
.money-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-4);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 40px 80px -20px rgba(0,0,0,.6);
}
.money-card-hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.money-card-hd .tag {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 600;
}
.money-card-hd .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--accent);
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.money-card-hd .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 24%, transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
.money-card .big {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 4.2vw, 60px);
  letter-spacing: -.04em; line-height: 1;
  margin: 8px 0 6px;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
  flex-wrap: wrap;
}
.money-card .big .currency {
  font-size: .55em; color: rgba(255,255,255,.55); font-weight: 500;
  letter-spacing: .02em;
  margin-right: 4px;
}
.money-card .big .cents {
  font-size: .42em; color: rgba(255,255,255,.55);
  font-weight: 500;
}
.money-card .caption {
  font-size: 13px; color: rgba(255,255,255,.6);
  letter-spacing: -.005em;
}
.money-card .divider {
  height: 1px; background: rgba(255,255,255,.1); margin: 22px 0;
}
.tx-list { display: flex; flex-direction: column; gap: 12px; }
.tx-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.tx-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tx-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  color: white;
}
.tx-name { color: rgba(255,255,255,.86); font-weight: 500; }
.tx-meta { color: rgba(255,255,255,.45); font-size: 11px; }
.tx-amt { color: var(--accent); font-weight: 600; }
.tx-amt.mono { font-family: "JetBrains Mono", monospace; }

/* ───────── Share constellation (radial, share & reproduce) ───────── */
.constellation {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.constellation svg {
  display: block;
  width: 100%; height: 100%;
}
.hub-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: hubRing 3.6s ease-out infinite;
  opacity: 0;
}
.hub-pulse.delay-1 { animation-delay: 1.8s; }
@keyframes hubRing {
  0%   { transform: scale(.85); opacity: .55; }
  100% { transform: scale(2.6); opacity: 0; }
}
.node-soft-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: softBeat 4s ease-in-out infinite;
}
@keyframes softBeat {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

/* ───────── SECTION CHROME ───────── */
section { position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet-600);
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--violet-500);
}
[data-theme="dark"] .section-eyebrow { color: var(--violet-300); }
.section-h {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 24px;
  max-width: 920px;
  text-wrap: balance;
}
.section-h .em { font-family: "Instrument Serif", serif; font-style: italic; color: var(--violet-600); }
[data-theme="dark"] .section-h .em { color: var(--violet-300); }
.section-lead {
  font-size: 19px; line-height: 1.45;
  color: var(--fg-2); max-width: 620px;
  margin: 0;
}

/* ───────── STATS BAND ───────── */
.stats {
  padding: 0 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num .plus { color: var(--violet-500); font-size: .6em; }
.stat .label {
  font-size: 13px; font-weight: 500;
  color: var(--fg-3); margin-top: 14px;
  letter-spacing: .04em; text-transform: uppercase;
}
.stat .icon-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet-600);
}
[data-theme="dark"] .stat .icon-tag { color: var(--violet-300); }
.stat .icon-tag svg {
  width: 14px; height: 14px;
}

/* ───────── TRACKS (Redatores / Publishers / Parceiros) ───────── */
.tracks {
  padding: 120px 0 100px;
}
.tracks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.track {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 36px 32px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
  overflow: hidden;
}
.track:hover {
  border-color: var(--violet-300);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -28px rgba(110, 75, 255, .35);
}
.track .badge {
  position: absolute; top: 24px; right: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 500;
  color: var(--fg-3);
  letter-spacing: .04em;
}
.track .glyph {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--violet-50);
  display: grid; place-items: center;
  color: var(--violet-600);
  margin-bottom: 28px;
  transition: background .2s ease;
}
[data-theme="dark"] .track .glyph { background: var(--violet-900); color: var(--violet-300); }
.track:hover .glyph { background: var(--violet-100); }
[data-theme="dark"] .track:hover .glyph { background: var(--violet-800); }
.track h3 {
  font-size: 28px; font-weight: 500; letter-spacing: -.02em;
  margin: 0 0 12px;
}
.track p {
  font-size: 15px; line-height: 1.5; color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}
.track-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--violet-600);
  text-decoration: none;
}
[data-theme="dark"] .track-cta { color: var(--violet-300); }
.track-cta .arrow { transition: transform .2s ease; }
.track:hover .track-cta .arrow { transform: translateX(4px); }

/* ───────── ABOUT ───────── */
.about {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--r-4);
  background: linear-gradient(135deg, var(--violet-100), var(--violet-50));
  aspect-ratio: 5/4;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
[data-theme="dark"] .about-visual {
  background: linear-gradient(135deg, var(--violet-900), var(--violet-950));
}
.about-visual::before {
  content: "i7";
  position: absolute; right: -30px; top: -50px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 380px;
  color: rgba(110, 75, 255, .08);
  letter-spacing: -.06em;
  line-height: 1;
  pointer-events: none;
}
[data-theme="dark"] .about-visual::before { color: rgba(146, 118, 255, .10); }
.about-visual-content {
  position: relative; padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.av-headline {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: 28px;
  letter-spacing: -.025em; line-height: 1.05;
  color: var(--violet-800);
  margin-bottom: 14px;
  max-width: 320px;
}
[data-theme="dark"] .av-headline { color: var(--violet-100); }
.av-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--violet-700);
  font-weight: 500;
}
[data-theme="dark"] .av-meta { color: var(--violet-300); }
.av-pills {
  display: flex; gap: 8px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.av-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; padding: 5px 10px; border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  color: var(--violet-700);
}
[data-theme="dark"] .av-pill {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: var(--violet-200);
}
.about-visual-content + .about-visual-content {
  border-top: 1px solid rgba(110, 75, 255, .12);
  background: rgba(255,255,255,.4);
}
[data-theme="dark"] .about-visual-content + .about-visual-content {
  background: rgba(0,0,0,.2);
  border-top-color: rgba(255,255,255,.06);
}
.about-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(36px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.about-copy .lead {
  font-size: 17px; line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-copy .lead strong {
  color: var(--fg); font-weight: 600;
}
.about-copy .contact-line {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--fg-3);
}
.about-copy .contact-line a {
  color: var(--violet-600); text-decoration: none; font-weight: 600;
}
[data-theme="dark"] .about-copy .contact-line a { color: var(--violet-300); }

/* ───────── NETWORK SITES ───────── */
.network {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.network-hd { text-align: center; }
.network-h {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 auto 16px;
  max-width: 1000px;
  text-wrap: balance;
}
.network-h .accent { color: var(--violet-600); }
[data-theme="dark"] .network-h .accent { color: var(--violet-300); }
.network-h .em { font-family: "Instrument Serif", serif; font-style: italic; }
.network-sub {
  font-size: 18px; color: var(--fg-2);
  max-width: 540px; margin: 0 auto 56px;
  text-wrap: pretty;
}
.network-sites {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1120px; margin: 0 auto;
}
.site-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.site-card:hover {
  border-color: var(--violet-300);
  transform: translateY(-2px);
}
.site-logo-wrap {
  height: 64px;
  display: flex; align-items: center;
}
.site-logo {
  display: block;
  height: 56px; width: auto;
  max-width: 240px;
  object-fit: contain;
}
.site-tag {
  font-size: 15px; color: var(--fg-2); line-height: 1.4;
  flex: 1;
}
.site-domain {
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--violet-600);
  font-weight: 500;
  letter-spacing: -.005em;
}
[data-theme="dark"] .site-domain { color: var(--violet-300); }
.site-domain-arrow {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--violet-50);
  font-size: 12px; line-height: 1;
  transition: transform .2s ease;
}
[data-theme="dark"] .site-domain-arrow { background: var(--violet-900); }
.site-card:hover .site-domain-arrow { transform: translate(2px, -2px); }

/* ───────── PUBLIPOST CTA (replaces rocket) ───────── */
.publipost {
  padding: 100px 0;
}
.publipost-card {
  position: relative;
  background: var(--ink);
  color: white;
  border-radius: var(--r-4);
  padding: 80px;
  overflow: hidden;
  isolation: isolate;
}
[data-theme="dark"] .publipost-card {
  background: linear-gradient(135deg, var(--violet-900), var(--ink));
}
.publipost-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 100% 0%, color-mix(in oklab, var(--violet-500) 35%, transparent), transparent 60%);
  z-index: -1;
}
.publipost-card::after {
  content: "↗";
  position: absolute;
  right: -40px; bottom: -80px;
  font-size: 480px; font-weight: 200;
  line-height: 1;
  color: rgba(255,255,255,.04);
  font-family: "Space Grotesk", sans-serif;
  pointer-events: none;
  z-index: -1;
}
.publipost-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}
.publipost-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.4);
}
.publipost h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0 0 24px;
  max-width: 800px;
  text-wrap: balance;
}
.publipost h2 .em {
  font-family: "Instrument Serif", serif;
  font-style: italic; color: var(--accent);
}
.publipost p {
  font-size: 18px; color: rgba(255,255,255,.66);
  max-width: 540px; margin: 0 0 36px;
}
.publipost-actions { display: flex; gap: 12px; align-items: center; }
.publipost-meta {
  position: absolute; top: 80px; right: 80px;
  text-align: right;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.publipost-meta .v {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 36px; letter-spacing: -.03em;
  color: white; line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

/* ───────── PARTNERS ───────── */
.partners {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.partners-hd {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}
.partners-hd h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px; font-weight: 500;
  letter-spacing: -.02em;
  margin: 0;
}
.partners-hd .partners-sub {
  font-size: 14px; color: var(--fg-3);
  max-width: 400px;
}
.logo-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-1);
  overflow: hidden;
}
.logo-cell {
  height: 130px;
  display: grid; place-items: center;
  border-right: 1px solid var(--line);
  background: #FFFFFF;
  color: var(--fg-2);
  transition: background .2s ease, color .2s ease;
}
.logo-cell:last-child { border-right: 0; }
.logo-cell:hover {
  background: #F8F4FF;
  color: var(--fg);
}

/* Partner / press logos — uploaded images */
.partner-logo {
  display: block;
  width: auto;
  max-width: 80%;
  height: 76px;
  object-fit: contain;
  transition: opacity .2s ease;
}
.press-row .partner-logo { height: 44px; }
.logo-cell:hover .partner-logo {
  opacity: 1;
}
[data-theme="dark"] .partner-logo {
  filter: none;
}

/* Wordmark styles for partners */
.wm {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: 22px;
}
.wm-teads { font-style: italic; font-weight: 600; }
.wm-teads .tv {
  font-size: .55em; vertical-align: super; font-weight: 700; font-style: normal;
  margin-left: 2px;
}
.wm-simpleads {
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.wm-simpleads .pub {
  font-size: 9px; font-weight: 700; letter-spacing: .1em;
  padding: 3px 6px; border-radius: 3px;
  background: var(--fg-3); color: var(--bg);
}
.wm-mgid { font-weight: 800; font-style: italic; }
.wm-mgid .i { color: #2bd4a1; }
.wm-doubleclick {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
}
.wm-doubleclick .sq {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #f5a623 50%, #7ed321 50%);
  border-radius: 3px;
}
.wm-doubleclick .small { font-size: .85em; line-height: 1.05; }
.wm-membrana {
  font-weight: 400; letter-spacing: .18em;
  font-size: 14px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
}
.wm-membrana .sym {
  font-size: 22px; letter-spacing: -.06em;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

/* Press section variant */
.press {
  padding: 80px 0 100px;
}
.press-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-1);
  overflow: hidden;
}
.press-row .logo-cell { height: 130px; }

/* InfoMoney wordmark */
.wm-infomoney {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px; letter-spacing: -.02em;
}
.wm-infomoney .info { color: var(--fg); }
.wm-infomoney .money { color: var(--fg); }
.wm-terra {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 26px; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 10px;
}
.wm-terra .globe {
  width: 22px; height: 22px; border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, #f97316 0%, #f97316 60%, transparent 61%),
    radial-gradient(circle at 60% 60%, #ef4444 0%, #ef4444 40%, transparent 41%),
    radial-gradient(circle at 30% 70%, #fbbf24 0%, #fbbf24 35%, transparent 36%),
    #f97316;
}
.wm-globo {
  font-family: "Space Grotesk", sans-serif;
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 1; color: var(--violet-700);
}
[data-theme="dark"] .wm-globo { color: var(--violet-300); }
.wm-globo .agencia {
  font-weight: 700; font-size: 16px; letter-spacing: -.01em;
}
.wm-globo .o-globo {
  font-weight: 700; font-size: 18px; letter-spacing: -.01em;
  margin-top: 2px;
}

/* ───────── FOOTER ───────── */
.footer {
  background: var(--ink);
  color: white;
  padding: 80px 0 40px;
}
[data-theme="dark"] .footer { background: #06031A; border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand { color: white; }
.footer-brand .brand-mark { background: var(--violet-500); }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.55);
  max-width: 320px; margin: 24px 0 0;
  line-height: 1.55;
}
.footer h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer li, .footer a {
  font-size: 14px; color: rgba(255,255,255,.82);
  text-decoration: none;
}
.footer a:hover { color: var(--accent); }
.footer .contact-line {
  font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.7;
}
.footer .contact-line .lbl {
  color: rgba(255,255,255,.45); margin-right: 6px;
}
.socials {
  display: flex; gap: 10px;
  margin-top: 8px;
}
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.social-icon:hover { background: var(--violet-600); transform: translateY(-2px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 12px; color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .legal {
  display: flex; gap: 24px; color: rgba(255,255,255,.4);
}

/* Hero variants */
[data-hero="centered"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 100px 0 80px;
}
[data-hero="centered"] .hero-actions { justify-content: center; }
[data-hero="centered"] .constellation,
[data-hero="centered"] .feed-card,
[data-hero="centered"] .composer-card,
[data-hero="centered"] .money-card {
  max-width: 720px; margin: 64px auto 0;
  text-align: left;
}
[data-hero="centered"] .hero-sub { margin-left: auto; margin-right: auto; }
[data-hero="centered"] .hero h1 { max-width: 1000px; margin-left: auto; margin-right: auto; }

/* Stats also need gutters on mobile, since they're not in a .container */
@media (max-width: 1100px) {
  .stats-inner { padding-inline: var(--pad); }
  .stats-inner .stat { padding-inline: 4px; }
}
@media (max-width: 640px) {
  .stats-inner { padding-inline: 0; }
  .stats-inner .stat { padding-inline: var(--pad); }
}
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: white;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }
.nav-mobile-drawer {
  display: none;
  position: fixed; inset: 80px 0 0 0;
  background: var(--hero-bg);
  z-index: 60;
  padding: 32px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow-y: auto;
}
.nav-mobile-drawer.is-open { display: block; }
.nav-mobile-drawer .links {
  display: flex; flex-direction: column;
  gap: 4px;
}
.nav-mobile-drawer .links a {
  color: white; text-decoration: none;
  font-size: 22px; font-weight: 500;
  letter-spacing: -.01em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-mobile-drawer .actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.nav-mobile-drawer .actions .btn {
  justify-content: center;
}
body.nav-open { overflow: hidden; }

/* ≤ 1100px — Tablet */
@media (max-width: 1100px) {
  :root { --pad: 20px; }
  .nav-inner { padding-inline: 20px; }
  .nav-links, .nav-right .nav-login, .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 14px; }

  /* Hide animated constellation in tablet + mobile */
  .constellation { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 64px 80px;
    padding-inline: 0;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: clamp(40px, 8vw, 72px); }
  .hero-sub { font-size: 17px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 36px 28px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .tracks { padding: 80px 0 64px; }
  .tracks-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { aspect-ratio: auto; min-height: 360px; }
  .about-visual::before { font-size: 280px; }

  .network { padding: 80px 0; }
  .network-sites { grid-template-columns: 1fr; }

  .publipost { padding: 64px 0; }
  .publipost-card { padding: 48px 32px; }
  .publipost-meta { position: static; text-align: left; margin-bottom: 24px; }
  .publipost h2 { font-size: clamp(34px, 6vw, 52px); }

  .partners, .press { padding: 64px 0; }
  .logo-row  { grid-template-columns: repeat(3, 1fr); }
  .press-row { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { height: 110px; }
  .partner-logo { height: 56px; }
  .press-row .partner-logo { height: 40px; }
  /* hide last 2 cells if they cause a partial row break is fine — 5 fits 3+2 */
  .logo-row .logo-cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .logo-row .logo-cell:nth-child(3) { border-right: 0; }

  .footer { padding: 64px 0 32px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 40px;
  }

  .section-h, .network-h, .about-copy h2 {
    font-size: clamp(28px, 4.4vw, 44px);
  }
  .section-lead { font-size: 17px; }
}

/* ≤ 640px — Mobile */
@media (max-width: 640px) {
  :root { --pad: 20px; }
  html, body { overflow-x: hidden; }

  .nav-inner { padding-inline: 20px; height: 64px; }
  .nav-mobile-drawer { inset: 64px 0 0 0; padding: 28px 20px; }
  .brand-logo { height: 32px; }
  .nav-right .btn { padding: 10px 14px; font-size: 13px; }

  /* Hero — already hidden via tablet rule */
  .hero-inner { padding-block: 56px 64px; padding-inline: 0; gap: 0; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(40px, 12vw, 60px); margin-bottom: 22px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; padding: 16px 22px; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 20px;
  }
  .stat:last-child { border-bottom: 0; }
  .stat .num { font-size: clamp(40px, 11vw, 56px); }
  .stat .icon-tag { margin-bottom: 12px; }
  .stat .label { margin-top: 10px; font-size: 12px; }

  .tracks { padding: 56px 0 40px; }
  .section-eyebrow { margin-bottom: 16px; font-size: 11px; }
  .section-h { margin-bottom: 20px; }
  .section-lead { font-size: 16px; }
  .tracks-grid { gap: 12px; margin-top: 32px; }
  .track { padding: 26px 22px; }
  .track h3 { font-size: 22px; }
  .track p { font-size: 14px; }
  .track .glyph { margin-bottom: 20px; width: 48px; height: 48px; }
  .track .glyph svg { width: 24px; height: 24px; }

  .about { padding: 56px 0; }
  .about-grid { gap: 32px; }
  .about-visual { min-height: 260px; border-radius: 22px; }
  .about-visual-content { padding: 22px; }
  .av-headline { font-size: 20px; }
  .av-pill { font-size: 10px; padding: 4px 9px; }
  .about-visual::before { font-size: 200px; right: -20px; top: -30px; }
  .about-copy h2 { font-size: clamp(28px, 7.5vw, 38px); margin-bottom: 22px; }
  .about-copy .lead { font-size: 15px; }

  .network { padding: 56px 0; }
  .network-h { font-size: clamp(26px, 7vw, 38px); }
  .network-sub { font-size: 16px; margin-bottom: 32px; }
  .network-sites { gap: 14px; }
  .site-card { padding: 26px 22px; gap: 16px; border-radius: 20px; }
  .site-logo-wrap { height: 48px; }
  .site-logo { height: 42px; }
  .site-tag { font-size: 14px; }
  .site-domain { font-size: 12px; padding-top: 16px; }

  .publipost { padding: 40px 0; }
  .publipost-card { padding: 36px 24px; border-radius: 22px; }
  .publipost-eyebrow { margin-bottom: 18px; font-size: 11px; }
  .publipost h2 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 18px; }
  .publipost p { font-size: 16px; margin-bottom: 28px; }
  .publipost-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .publipost-actions .btn { justify-content: center; }
  .publipost-card::after {
    font-size: 220px; right: -50px; bottom: -90px;
  }
  .publipost-meta {
    position: static; text-align: left; margin-bottom: 22px;
  }
  .publipost-meta .v { font-size: 28px; }

  .partners, .press { padding: 40px 0; }
  .partners-hd { margin-bottom: 24px; gap: 16px; }
  .partners-hd h3 { font-size: 22px; }

  /* 5 partner logos in 2 cols → 3 rows (last row = 1 cell) */
  .logo-row  { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { height: 92px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .logo-row .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-row .logo-cell:nth-last-child(-n+1) { border-bottom: 0; }
  .partner-logo { height: 40px; max-width: 70%; }

  /* 3 press logos in 1 col */
  .press-row { grid-template-columns: 1fr; }
  .press-row .logo-cell { border-right: 0; border-bottom: 1px solid var(--line); height: 104px; }
  .press-row .logo-cell:last-child { border-bottom: 0; }
  .press-row .partner-logo { height: 36px; }

  .footer { padding: 48px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer h4 { margin-bottom: 14px; }
  .footer ul { gap: 10px; }
  .footer-bottom { font-size: 11px; gap: 12px; }
  .footer-bottom .legal { gap: 16px; }
  .socials { margin-top: 16px; }
}
