/* ===== JORNADA DO INTERCÂMBIO — style.css ===== */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #0A0E1A;
  --bg2: #0F1525;
  --bg3: #141929;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-h: rgba(255, 255, 255, 0.07);
  --green: #00C896;
  --green2: #00A07A;
  --gold: #F5A623;
  --gold2: #C8860F;
  --white: #FFFFFF;
  --muted: #6B7280;
  --muted2: #9CA3AF;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --r: 10px;
  --r2: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.28s var(--ease);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow2: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

/* ── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--t);
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: var(--green);
  color: #0A0E1A
}

.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 200, 150, 0.25)
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border2)
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--surface)
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border)
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green)
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0A0E1A
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25)
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem
}

.btn-block {
  width: 100%;
  justify-content: center
}

/* ── Shared layout ──────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px
}

/* ── Section heading ────────────────────────────────────── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.sec-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px
}

.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px
}

.sec-sub {
  font-size: 1rem;
  color: var(--muted2);
  max-width: 520px;
  line-height: 1.7
}

.grad {
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--t);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  padding: 12px 0;
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--green);
  color: #0A0E1A;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2
}

.logo-green {
  color: var(--green)
}

.nav-links {
  display: flex;
  gap: 2px;
  margin: 0 32px
}

.nav-link {
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 0.875rem;
  color: var(--muted2);
  transition: var(--t);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--white);
  background: var(--surface)
}

.nav-cta {
  background: var(--green);
  color: #0A0E1A;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--t);
  font-family: 'Outfit', sans-serif
}

.nav-cta:hover {
  background: var(--green2)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t)
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0A0E1A;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 14, 26, 0.97) 40%, rgba(10, 14, 26, 0.7) 100%),
    url('https://images.unsplash.com/photo-1548438294-1ad5d5f4f063?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-kicker::before {
  content: '●';
  font-size: 0.55rem;
  animation: blink 2s ease infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-h1 em {
  font-style: normal;
  color: var(--green)
}

.hero-p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px
}

.hero-divider {
  width: 56px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 32px;
  opacity: 0.5
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap
}

.hstat {}

.hstat-n {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hstat-l {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500
}

/* ── BROWSE ──────────────────────────────────────────────── */
.browse {
  background: var(--bg);
  padding: 80px 0
}

.browse-header {
  padding: 0 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.row-see-all {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  transition: var(--t)
}

.row-see-all:hover {
  opacity: 0.7
}

.content-row {
  margin-bottom: 52px
}

.row-meta {
  padding: 0 40px
}

.row-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 3px
}

.row-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px
}

.row-track-wrap {
  position: relative
}

.row-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 40px 14px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.row-track:active {
  cursor: grabbing
}

.row-track::-webkit-scrollbar {
  display: none
}

.row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.92);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--t);
  border: 1px solid var(--border2);
  backdrop-filter: blur(10px);
}

.row-arrow:hover {
  background: var(--green);
  color: #0A0E1A;
  border-color: var(--green)
}

.row-arrow.left {
  left: 6px
}

.row-arrow.right {
  right: 6px
}

/* ── CONTENT CARDS ───────────────────────────────────────── */
.c-card {
  flex-shrink: 0;
  width: 210px;
  border-radius: var(--r2);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.c-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 200, 150, 0.2);
  box-shadow: var(--shadow)
}

.c-thumb {
  position: relative;
  height: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px;
  text-align: center;
}

.cc-br {
  font-size: 0.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px;
  font-family: 'Outfit', sans-serif
}

.cc-s {
  background: rgba(13, 92, 58, 0.85);
  font-size: 0.45rem;
  font-weight: 700;
  color: var(--white);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.cc-t {
  background: linear-gradient(135deg, var(--gold), #a07000);
  color: #0A0E1A;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 2px;
  letter-spacing: 0.8px;
  font-family: 'Outfit', sans-serif;
}

.cc-i {
  font-size: 1.4rem;
  margin-top: 3px
}

.c-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
}

.c-card:hover .c-overlay {
  opacity: 1
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #0A0E1A;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
}

.play-btn:hover {
  transform: scale(1.1)
}

.c-eps {
  position: absolute;
  bottom: 7px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.c-info {
  padding: 12px 14px
}

.c-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-tag.free {
  background: rgba(0, 200, 150, 0.15);
  color: var(--green)
}

.c-tag.premium {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold)
}

.c-info h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.35
}

.c-info p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45
}

/* ── EDITORIAL STRIP (between rows) ──────────────────────── */
.editorial-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 48px 0;
  margin: 16px 0;
}

.editorial-strip .wrap {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.es-stat {
  display: flex;
  flex-direction: column
}

.es-n {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.es-l {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px
}

.es-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0
}

/* ── CATEGORIES ──────────────────────────────────────────── */
.categories {
  background: var(--bg2);
  padding: 96px 0
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-top: 48px;
}

.cat-card {
  background: var(--bg3);
  padding: 32px 28px;
  transition: background 0.25s var(--ease);
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cat-card:nth-child(3n) {
  border-right: none
}

.cat-card:nth-child(4),
.cat-card:nth-child(5),
.cat-card:nth-child(6) {
  border-bottom: none
}

.cat-card:hover {
  background: var(--surface-h)
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0)
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 16px
}

.cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px
}

.cat-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cat-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--green);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--t);
}

/* ── AI SECTION ──────────────────────────────────────────── */
.ai-section {
  background: var(--bg);
  padding: 96px 0
}

.ai-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.ai-info .sec-sub {
  margin-bottom: 28px
}

.ai-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px
}

.ai-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.ai-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-feat-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px
}

.ai-feat-text span {
  font-size: 0.78rem;
  color: var(--muted)
}

/* Chat window */
.chat-window {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.chat-av {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chat-head strong {
  font-size: 0.875rem;
  font-weight: 600
}

.chat-online {
  font-size: 0.7rem;
  color: var(--green);
  margin-top: 1px
}

.chat-msgs {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 270px;
  overflow-y: auto
}

.msg {
  display: flex
}

.msg.user {
  justify-content: flex-end
}

.bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.msg.bot .bubble {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-bottom-left-radius: 3px
}

.msg.user .bubble {
  background: var(--green);
  color: #0A0E1A;
  border-bottom-right-radius: 3px
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg3);
}

.chat-input-row input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 13px;
  color: var(--white);
  font-size: 0.82rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.chat-input-row input:focus {
  border-color: var(--green)
}

.chat-input-row input::placeholder {
  color: var(--muted)
}

.chat-input-row button {
  background: var(--green);
  color: #0A0E1A;
  border-radius: 7px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--t);
  flex-shrink: 0;
}

.chat-input-row button:hover {
  background: var(--green2)
}

/* ── PARTNERS ────────────────────────────────────────────── */
.partners {
  background: var(--bg2);
  padding: 96px 0
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin: 48px 0;
}

.partner-card {
  background: var(--bg3);
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s var(--ease);
}

.partner-card:nth-child(3n) {
  border-right: none
}

.partner-card:nth-child(4),
.partner-card:nth-child(5),
.partner-card:nth-child(6) {
  border-bottom: none
}

.partner-card:hover {
  background: var(--surface-h)
}

.partner-logo {
  font-size: 2rem;
  margin-bottom: 10px
}

.partner-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 7px;
}

.partner-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px
}

.partner-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px
}

.partner-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  border: 1px solid rgba(0, 200, 150, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
}

.partners-cta {
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--bg3);
}

.partners-cta-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px
}

.partners-cta-text p {
  font-size: 0.875rem;
  color: var(--muted)
}

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  background: var(--bg);
  padding: 96px 0
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 28px;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative;
  transition: var(--t);
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.price-card.featured {
  background: rgba(0, 200, 150, 0.05);
  border-color: rgba(0, 200, 150, 0.3);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0A0E1A;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-icon {
  font-size: 1.8rem;
  margin-bottom: 10px
}

.price-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px
}

.price-val {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 7px
}

.price-cur {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  margin-right: 2px
}

.price-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  line-height: 1
}

.price-dec {
  font-size: 1.3rem;
  font-weight: 700
}

.price-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 4px
}

.price-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5
}

.price-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px
}

.price-feats li {
  font-size: 0.82rem;
  line-height: 1.4
}

.price-feats li.no {
  color: var(--muted)
}

.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted)
}

/* ── FOOTER CTA ──────────────────────────────────────────── */
.footer-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.06), rgba(245, 166, 35, 0.04));
  border-top: 1px solid var(--border);
}

.fcta-inner {
  text-align: center
}

.fcta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px
}

.fcta-inner p {
  color: var(--muted2);
  font-size: 1rem;
  margin-bottom: 32px
}

.fcta-inner .btn-lg {
  padding: 15px 32px
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border)
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 40px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 14px 0 18px;
  line-height: 1.7;
  max-width: 260px
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px
}

.footer-socials a {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: var(--t)
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px)
}

.seda-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 200, 150, 0.07);
  border: 1px solid rgba(0, 200, 150, 0.15);
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: var(--t)
}

.footer-col a:hover {
  color: var(--white)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted)
}

/* ── FLOATING CHAT ───────────────────────────────────────── */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 200, 150, 0.35);
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 200, 150, 0.45)
}

.bubble-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 150, 0.35);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1
  }

  100% {
    transform: scale(1.55);
    opacity: 0
  }
}

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 998;
  width: 340px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all
}

.chat-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.chat-panel-head strong {
  font-size: 0.875rem;
  flex: 1
}

.chat-close {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 3px;
  transition: var(--t)
}

.chat-close:hover {
  color: var(--white)
}

.chat-panel-msgs {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 280px;
  overflow-y: auto
}

.chat-panel-input {
  display: flex;
  gap: 7px;
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg3)
}

.chat-panel-input input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 11px;
  color: var(--white);
  font-size: 0.8rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.chat-panel-input input:focus {
  border-color: var(--green)
}

.chat-panel-input input::placeholder {
  color: var(--muted)
}

.chat-panel-input button {
  background: var(--green);
  color: #0A0E1A;
  border-radius: 7px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--t);
  flex-shrink: 0;
}

.chat-panel-input button:hover {
  background: var(--green2)
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1024px) {
  .wrap {
    padding: 0 24px
  }

  .browse-header,
  .row-meta {
    padding: 0 24px
  }

  .row-track {
    padding: 6px 24px 14px
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cat-card:nth-child(2n) {
    border-right: none
  }

  .cat-card:nth-child(3) {
    border-right: 1px solid var(--border)
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .partner-card:nth-child(2n) {
    border-right: none
  }

  .partner-card:nth-child(3) {
    border-right: 1px solid var(--border)
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
  }

  .ai-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    padding: 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px)
  }

  .nav-links.open {
    display: flex
  }

  .hamburger {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .hero-inner {
    padding: 120px 0 80px
  }

  .hero-h1 {
    font-size: 2.8rem
  }

  .cat-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 8px
  }

  .cat-card,
  .partner-card {
    border-radius: var(--r2) !important;
    border: 1px solid var(--border) !important
  }

  .partners-cta {
    flex-direction: column;
    text-align: center
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .chat-panel {
    width: calc(100vw - 32px);
    right: 16px
  }

  .editorial-strip .wrap {
    gap: 28px
  }
}

@media(max-width:480px) {
  .hero-h1 {
    font-size: 2.2rem
  }

  .hero-stats {
    gap: 20px
  }

  .es-n {
    font-size: 2rem
  }

  .c-card {
    width: 185px
  }
}

/* ── TRIAL BAR ───────────────────────────────────────────── */
.trial-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, rgba(0, 200, 150, 0.12), rgba(245, 166, 35, 0.12));
  border-bottom: 1px solid rgba(0, 200, 150, 0.2);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
  backdrop-filter: blur(16px);
}

.trial-bar strong {
  color: var(--green)
}

.trial-bar a {
  color: var(--gold);
  font-weight: 700;
  padding: 3px 10px;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 5px;
  transition: var(--t);
  font-size: 0.72rem;
}

.trial-bar a:hover {
  background: rgba(245, 166, 35, 0.1)
}

.trial-bar .tb-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px;
}

.trial-bar.hidden {
  display: none
}

/* When trial bar is shown, push navbar down */
.has-trial-bar .navbar {
  top: 38px
}

/* ── NAV USER ────────────────────────────────────────────── */
.nav-user {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-user-name {
  font-size: 0.82rem;
  color: var(--muted2);
  font-weight: 500;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #0A0E1A;
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.nav-avatar:hover {
  opacity: 0.85
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 160px;
  padding: 6px;
  display: none;
  z-index: 5;
  box-shadow: var(--shadow2);
}

.nav-avatar:focus-within .nav-dropdown,
.nav-avatar.open .nav-dropdown {
  display: block
}

.nav-dropdown a,
.nav-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--muted2);
  border-radius: 6px;
  transition: var(--t);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-dropdown a:hover,
.nav-dropdown button:hover {
  color: var(--white);
  background: var(--surface)
}

.nav-dropdown .nd-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0
}

.nav-dropdown .nd-logout {
  color: #f87171 !important
}

/* ── AI PRE-FORM MODAL ───────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all
}

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  width: 100%;
  max-width: 420px;
  padding: 32px;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1
}

.modal-icon {
  font-size: 2.2rem;
  margin-bottom: 12px
}

.modal-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px
}

.modal-box p.sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6
}

.mf {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px
}

.mf label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted2)
}

.mf input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: var(--t);
}

.mf input:focus {
  border-color: var(--green)
}

.mf input::placeholder {
  color: var(--muted)
}

.modal-err {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #f87171;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 0.78rem;
  margin-bottom: 10px;
  display: none;
}

.modal-err.show {
  display: block
}

.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 16px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5
}

.modal-consent input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
  margin-top: 2px;
  flex-shrink: 0
}

.modal-consent a {
  color: var(--green)
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  background: rgba(15, 21, 37, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
}

.cookie-banner.show {
  transform: translateY(0)
}

.cb-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cb-text {
  flex: 1;
  min-width: 240px
}

.cb-text p:first-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.cb-text p:last-child {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55
}

.cb-text a {
  color: var(--green)
}

.cb-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0
}

.cb-btn {
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: none;
  font-family: 'Outfit', sans-serif;
}

.cb-customize {
  background: var(--bg3);
  color: var(--muted2);
  border: 1px solid var(--border)
}

.cb-customize:hover {
  color: var(--white);
  border-color: var(--border2)
}

.cb-reject {
  background: var(--bg3);
  color: var(--white);
  border: 1px solid var(--border2)
}

.cb-reject:hover {
  border-color: rgba(255, 255, 255, 0.4)
}

.cb-accept {
  background: var(--green);
  color: #0A0E1A
}

.cb-accept:hover {
  background: var(--green2)
}

/* Cookie modal */
.cb-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cb-modal-inner {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  width: 100%;
  max-width: 440px;
  padding: 28px;
}

.cb-modal-inner h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px
}

.cb-modal-inner>p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5
}

.cb-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  gap: 14px;
}

.cb-option:last-of-type {
  border-bottom: none
}

.cb-option>div {
  flex: 1
}

.cb-option strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px
}

.cb-option small {
  font-size: 0.75rem;
  color: var(--muted)
}

/* Toggle switch */
.cb-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0
}

.cb-toggle input {
  opacity: 0;
  width: 0;
  height: 0
}

.cb-toggle span {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--t);
}

.cb-toggle span::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--t);
}

.cb-toggle input:checked+span {
  background: rgba(0, 200, 150, 0.2);
  border-color: var(--green)
}

.cb-toggle input:checked+span::before {
  background: var(--green);
  left: 18px
}

.cb-toggle input:disabled+span {
  opacity: 0.5;
  cursor: not-allowed
}

.cb-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap
}

/* ── WELCOME TOAST ───────────────────────────────────────── */
.welcome-toast {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 900;
  background: var(--bg2);
  border: 1px solid rgba(0, 200, 150, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateX(120%);
  transition: transform 0.4s var(--ease);
}

.welcome-toast.show {
  transform: translateX(0)
}

.wt-line1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px
}

.wt-line2 {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5
}

.wt-close {
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem
}

@media(max-width:600px) {
  .cb-content {
    padding: 16px 20px
  }

  .cb-actions {
    width: 100%
  }

  .trial-bar {
    font-size: 0.7rem;
    padding: 7px 12px
  }

  .modal-box {
    padding: 24px 20px
  }
}