/* ===========================================================
   ProGig — shared design system (reused from the bfyaı sites)
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #7c3aed;
  --purple-lt: #a78bfa;
  --purple-dk: #4c1d95;
  --sky: #38bdf8;
  --sky-dk: #0284c7;
  --green: #4ade80;
  --red: #f87171;
  --amber: #fbbf24;
  --bg: #08050f;
  --surface: #110d1f;
  --surface2: #1a1432;
  --border: rgba(124,58,237,0.18);
  --text: #f1f0f8;
  --text2: #a09ab8;
  --text3: #6d6685;
  --glass: rgba(17,13,31,0.72);
  --nav-bg: rgba(8,5,15,0.8);
  --nav-shadow: 0 4px 32px rgba(0,0,0,0.4);
  --radius: 20px;
  color-scheme: dark;
}
:root[data-theme="light"] {
  --purple-lt: #6d28d9;
  --bg: #f5f4fb;
  --surface: #ffffff;
  --surface2: #efecf7;
  --border: rgba(124,58,237,0.20);
  --text: #191430;
  --text2: #564f6d;
  --text3: #8a839c;
  --glass: rgba(255,255,255,0.78);
  --nav-bg: rgba(245,244,251,0.85);
  --nav-shadow: 0 6px 28px rgba(124,58,237,0.15);
  color-scheme: light;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color .3s ease, color .3s ease;
}

/* ── BRAND MARK — pro + gig ─────────────────── */
.bm { font-weight: 800; letter-spacing: -0.4px; }
.bm .gig {
  background: linear-gradient(135deg, var(--purple-lt), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 64px;
  backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: background-color .3s, box-shadow .3s, border-color .3s;
}
#nav.scrolled { box-shadow: var(--nav-shadow); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--sky-dk));
  box-shadow: 0 6px 18px rgba(124,58,237,0.4);
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-logo-text { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; line-height: 1.15; }
.nav-logo-text .brand { display: block; white-space: nowrap; }
.nav-logo-text .suffix { font-size: 11px; font-weight: 600; color: var(--text2); letter-spacing: 0; }
.nav-logo-text .sub { display: block; font-size: 10.5px; font-weight: 500; color: var(--text2); letter-spacing: 0.3px; margin-top: 1px; }

/* segmented Pro | Gig switch */
.pg-switch {
  display: inline-flex; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 11px; padding: 3px; gap: 2px;
}
.pg-switch a {
  font-size: 13px; font-weight: 600; color: var(--text2); text-decoration: none;
  padding: 6px 15px; border-radius: 8px; transition: background .2s, color .2s, box-shadow .2s;
}
.pg-switch a.active { background: linear-gradient(135deg, var(--purple), var(--sky-dk)); color: #fff; box-shadow: 0 6px 16px rgba(124,58,237,0.35); }
.pg-switch a:not(.active):hover { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--sky-dk));
  color: #fff; border: none; padding: 9px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }
.theme-toggle {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.theme-toggle:hover { transform: translateY(-1px); border-color: rgba(124,58,237,0.5); color: var(--purple-lt); }
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }
.nav-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 22px; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--sky-dk));
  color: #fff; text-decoration: none; border: none;
  padding: 16px 32px; border-radius: 14px; font-size: 16px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.55); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); text-decoration: none;
  padding: 16px 32px; border-radius: 14px; font-size: 16px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.4); }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 5vw 60px; position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 3fr 2.6fr;
  column-gap: 48px; row-gap: 0; align-items: center;
  max-width: 1280px; width: 100%;
}
.hero-badge-wrap, .hero-badge { grid-column: 1; grid-row: 1; align-self: end; justify-self: start; }
.hero-text { grid-column: 1; grid-row: 2; align-self: start; text-align: left; }
.hero-inner > .pg-hero-visual { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -5%; right: -10%;
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(56,189,248,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--purple-lt);
  margin-bottom: 24px; animation: fadeUp .6s ease both;
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-lt); animation: pulse 2s infinite; }
.hero h1 {
  font-size: clamp(38px, 6vw, 76px); font-weight: 900; line-height: 1.05;
  letter-spacing: -3px; margin-bottom: 24px; animation: fadeUp .7s .1s ease both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--purple-lt) 0%, var(--sky) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px); color: var(--text2); max-width: 540px;
  margin: 0 0 36px; font-weight: 400; line-height: 1.65; animation: fadeUp .7s .2s ease both;
}
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }
.hero-trial { margin-top: 18px; font-size: 13px; color: var(--text3); animation: fadeUp .7s .4s ease both; }
.hero-trial span { color: var(--green); font-weight: 600; }

/* ── HERO VISUAL — profile + gig cards ──────── */
.pg-hero-visual {
  position: relative; width: 100%; max-width: 460px; margin: 0 auto;
  aspect-ratio: 1 / 1; animation: fadeUp .8s .4s ease both;
}
.pg-hero-visual .glow {
  position: absolute; inset: 12% 12%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22), transparent 70%); pointer-events: none;
}
.pg-card {
  position: absolute; background: var(--glass); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45); padding: 18px;
}
.pg-card.profile { top: 3%; left: 0; width: 60%; animation: coreFloat 6s ease-in-out infinite; }
.pg-card.gig { bottom: 4%; right: 0; width: 64%; animation: coreFloat 6s ease-in-out infinite 1.6s; }
.pg-prof-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.pg-avatar {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--sky-dk));
  color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.pg-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
.pg-role { font-size: 11.5px; color: var(--text2); }
.pg-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pg-chips span {
  font-size: 10.5px; font-weight: 600; color: var(--purple-lt);
  background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.25);
  padding: 2px 9px; border-radius: 100px;
}
.pg-lines { display: flex; flex-direction: column; gap: 7px; }
.pg-lines i { height: 7px; border-radius: 4px; display: block; background: linear-gradient(90deg, rgba(124,58,237,0.4), rgba(56,189,248,0.12)); }
.pg-pdf {
  position: absolute; bottom: -12px; right: -10px; font-size: 11px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--sky-dk));
  padding: 6px 12px; border-radius: 10px; box-shadow: 0 10px 24px rgba(124,58,237,0.45);
}
.pg-gig-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.pg-gig-title { font-size: 13.5px; font-weight: 700; }
.pg-gig-status {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap;
  color: var(--amber); background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3);
  padding: 3px 9px; border-radius: 100px;
}
.pg-progress { height: 8px; border-radius: 100px; background: rgba(124,58,237,0.14); overflow: hidden; margin-bottom: 14px; }
.pg-progress-bar { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--purple), var(--sky)); }
.pg-milestones { display: flex; flex-direction: column; gap: 8px; }
.pg-ms { font-size: 12px; color: var(--text2); }
.pg-ms.done { color: var(--green); }
.pg-plus {
  position: absolute; top: 47%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  font-size: 12px; font-weight: 700; color: var(--text);
  background: var(--surface2); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.pg-plus b { color: var(--purple-lt); }

/* ── SECTION SHELL ──────────────────────────── */
section.block { padding: 90px 5vw; position: relative; }
.block-inner { max-width: 1180px; margin: 0 auto; }
.tint { background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04), transparent); }
.tint-sky { background: linear-gradient(180deg, transparent, rgba(56,189,248,0.04), transparent); }
.section-label {
  text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  color: var(--purple-lt); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  letter-spacing: -1.5px; margin-bottom: 12px;
}
.section-sub { text-align: center; color: var(--text2); font-size: 16px; max-width: 600px; margin: 0 auto 52px; }

/* ── OFFER / FEATURE CARDS ──────────────────── */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.offer-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.offer-card::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent); }
.offer-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.45); box-shadow: 0 24px 56px rgba(124,58,237,0.16); }
.offer-card .ic { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.ic.p { background: rgba(124,58,237,0.2); }
.ic.s { background: rgba(56,189,248,0.15); }
.ic.g { background: rgba(74,222,128,0.15); }
.ic.a { background: rgba(251,191,36,0.15); }
.offer-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.offer-card > p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.offer-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); }
.offer-list li .ck { color: var(--green); flex-shrink: 0; font-weight: 700; }

/* ── AUDIENCE PANELS (freelancer vs client) ─── */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.aud-tabs { display: flex; gap: 4px; padding: 4px; width: fit-content; max-width: 100%; margin: 0 auto 30px; border-radius: 14px; background: var(--surface2); border: 1px solid var(--border); }
.aud-tab { font-size: 14px; font-weight: 600; color: var(--text2); background: none; border: none; cursor: pointer; padding: 9px 20px; border-radius: 10px; white-space: nowrap; transition: background .2s, color .2s, box-shadow .2s; }
.aud-tab.active { color: #fff; background: linear-gradient(135deg, var(--purple), var(--sky-dk)); box-shadow: 0 6px 16px rgba(124,58,237,0.35); }
.aud-tab[data-aud="client"].active { background: linear-gradient(135deg, #15803d, var(--green)); box-shadow: 0 6px 16px rgba(74,222,128,0.3); }
.aud-tab:not(.active):hover { color: var(--text); }
.aud-stage { max-width: 600px; margin: 0 auto; }
.aud-card {
  display: none;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.aud-card.active { display: block; animation: fadeUp .4s ease both; }
.aud-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,0.28); }
.aud-card.free:hover { border-color: rgba(124,58,237,0.45); }
.aud-card.client:hover { border-color: rgba(74,222,128,0.4); }
.aud-head { padding: 24px 26px 22px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--border); }
.aud-card.free .aud-head { background: linear-gradient(135deg, rgba(124,58,237,0.16), transparent 70%); }
.aud-card.client .aud-head { background: linear-gradient(135deg, rgba(74,222,128,0.14), transparent 70%); }
.aud-ic { width: 52px; height: 52px; border-radius: 15px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 25px; }
.aud-card.free .aud-ic { background: rgba(124,58,237,0.2); }
.aud-card.client .aud-ic { background: rgba(74,222,128,0.18); }
.aud-head h3 { font-size: 20px; font-weight: 700; line-height: 1.1; margin-bottom: 6px; }
.aud-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 2px 10px; border-radius: 100px; }
.aud-card.free .aud-tag { color: var(--purple-lt); background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.3); }
.aud-card.client .aud-tag { color: var(--green); background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); }
.aud-body { padding: 24px 26px 26px; }
.aud-body > p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.aud-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.aud-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); }
.aud-list li .ck { flex-shrink: 0; font-weight: 700; }
.aud-card.free .aud-list .ck { color: var(--purple-lt); }
.aud-card.client .aud-list .ck { color: var(--green); }
/* mini app-screen mock */
.aud-mock { background: var(--glass); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.aud-mock-head { font-size: 11px; font-weight: 700; letter-spacing: .3px; color: var(--text3); text-transform: uppercase; margin-bottom: 12px; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--border); }
.mock-row:first-of-type { border-top: none; padding-top: 2px; }
.mock-dot { width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0; }
.mock-dot.p { background: rgba(124,58,237,0.28); }
.mock-dot.s { background: rgba(56,189,248,0.24); }
.mock-txt { flex: 1; display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.mock-txt b { font-size: 12.5px; font-weight: 700; color: var(--text); }
.mock-txt span { font-size: 11px; color: var(--text2); }
.mock-cta { font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 8px; color: #fff; white-space: nowrap; background: linear-gradient(135deg, var(--purple), var(--sky-dk)); }
.mock-cta.green { background: linear-gradient(135deg, #15803d, var(--green)); }
.mock-applicants { display: flex; align-items: center; margin-bottom: 6px; }
.mock-applicants .av { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--purple), var(--sky-dk)); border: 2px solid var(--surface); margin-left: -8px; }
.mock-applicants .av:first-child { margin-left: 0; }
.mock-applicants .av.more { background: var(--surface2); color: var(--text2); }

/* ── SMALL CARD GRID (templates / values) ───── */
.sol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.sol-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform .3s, border-color .3s;
}
.sol-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.sol-card .ic-sm { font-size: 28px; margin-bottom: 14px; display: block; }
.sol-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.sol-card p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }
.sol-card .tag { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--purple-lt); }

/* ── STEPS ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s, border-color .3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.step .num {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--sky-dk)); box-shadow: 0 8px 20px rgba(124,58,237,0.35);
}
.step h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ── CROSS-LINK BANNER ──────────────────────── */
.crosslink {
  max-width: 940px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(56,189,248,0.06));
  border: 1px solid var(--border); border-radius: 22px; padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.crosslink h3 { font-size: 22px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 5px; }
.crosslink p { font-size: 14.5px; color: var(--text2); max-width: 520px; }

/* ── VALUES ─────────────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.work-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform .3s, border-color .3s;
}
.work-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.4); }
.work-card-icon { font-size: 32px; margin-bottom: 14px; }
.work-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.work-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ── CTA BANNER ─────────────────────────────── */
section.cta-banner {
  padding: 84px 5vw; text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(56,189,248,0.06) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; color: var(--text2); margin-bottom: 34px; }
.hero-actions.center { justify-content: center; }

/* ── CONTACT ────────────────────────────────── */
section.contact { padding: 90px 5vw; }
.contact-box { text-align: center; max-width: 620px; margin: 0 auto; }
.contact-email {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px; padding: 14px 28px; margin-bottom: 16px;
  color: var(--purple-lt); font-size: 16px; font-weight: 700; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.contact-email:hover { background: rgba(124,58,237,0.28); border-color: rgba(124,58,237,0.6); }
.contact-meta { font-size: 13px; color: var(--text3); }
.contact-alt { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  padding: 52px 5vw 32px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1280px; margin: 0 auto;
}
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; letter-spacing: .5px; }
.footer-col a { display: block; font-size: 13px; color: var(--text3); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--purple-lt); }
.footer-bottom {
  grid-column: 1 / -1; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text3); flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--text3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--purple-lt); }
.footer-legal { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ── LEGAL PAGES ────────────────────────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 124px 5vw 40px; }
.legal-wrap h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 8px; }
.legal-updated { color: var(--text3); font-size: 13px; margin-bottom: 20px; }
.legal-intro { color: var(--text2); font-size: 16px; line-height: 1.75; margin-bottom: 12px; }
.legal-wrap h2 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; margin: 34px 0 10px; }
.legal-wrap p { color: var(--text2); font-size: 14.5px; line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 20px; }
.legal-wrap li { color: var(--text2); font-size: 14.5px; line-height: 1.75; margin-bottom: 8px; }
.legal-wrap a { color: var(--purple-lt); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap strong { color: var(--text); font-weight: 600; }
.legal-highlight {
  background: rgba(74,222,128,0.07); border: 1px solid rgba(74,222,128,0.22);
  border-radius: 16px; padding: 20px 24px; margin: 22px 0;
  color: var(--text2); font-size: 14.5px; line-height: 1.8;
}
.legal-highlight strong { color: var(--green); }
.legal-toc { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 8px; }
.legal-toc a {
  font-size: 12.5px; font-weight: 600; color: var(--text2); text-decoration: none;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 6px 13px; border-radius: 100px; transition: border-color .2s, color .2s;
}
.legal-toc a:hover { color: var(--text); border-color: rgba(124,58,237,0.5); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes coreFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pg-card, .hero-badge-dot { animation: none; }
}

/* ── MOBILE ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .nav-logo-text { font-size: 19px; }
  .nav-logo-text .suffix { display: none; }
  nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    width: 100vw; height: calc(100vh - 64px);
    background: var(--bg); padding: 32px 7vw; gap: 22px; z-index: 99;
    align-items: flex-start; overflow-y: auto;
  }
  nav.open .nav-links a { font-size: 18px; }
  .hero { padding: 84px 5vw 48px; justify-content: flex-start; min-height: auto; }
  .hero-inner { display: flex; flex-direction: column; gap: 0; }
  .hero-badge { order: 1; align-self: center; margin: 0 0 10px; }
  .hero-inner > .pg-hero-visual { order: 2; max-width: 340px; margin: 0 auto 18px; }
  .hero-text { order: 3; text-align: center; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-trial { text-align: center; }
  section.block { padding: 64px 5vw; }
  .aud-grid { grid-template-columns: 1fr; }
  .crosslink { text-align: center; justify-content: center; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .pg-switch a { padding: 6px 11px; font-size: 12px; }
}
