:root {
  --ink: #1d1234;
  --ink-soft: #675f73;
  --purple: #ad13ef;
  --purple-dark: #230342;
  --magenta: #ff31ca;
  --lavender: #f7f1ff;
  --line: rgba(40, 9, 69, 0.1);
  --shadow: 0 24px 70px rgba(52, 6, 84, 0.12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width:100%; overflow-x:clip; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.noise {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  width: min(1280px, calc(100% - 40px)); height: 82px; margin: 12px auto 0; padding: 0 22px;
  position: fixed; left: 50%; transform: translateX(-50%); top: 0; z-index: 100;
  display: flex; align-items: center; border: 1px solid transparent; border-radius: 22px;
  transition: .35s ease;
}
.site-header.scrolled {
  height: 66px; top: 8px; background: rgba(255,255,255,.83); border-color: rgba(34,3,65,.08);
  box-shadow: 0 16px 45px rgba(35,3,66,.1); backdrop-filter: blur(20px);
}
.brand { display:flex; align-items:center; gap:8px; }
.brand img { width: 40px; height:40px; display: block; animation:header-logo-spin 12s linear infinite; }
.brand span { font:800 19px "Manrope",sans-serif; letter-spacing:-.04em; }
@keyframes header-logo-spin { to { rotate:360deg; } }
.legal-page .site-header:not(.scrolled) {
  background:rgba(255,255,255,.94); border-color:rgba(34,3,65,.08);
  box-shadow:0 12px 36px rgba(35,3,66,.08); backdrop-filter:blur(20px);
}
.desktop-nav { display: flex; gap: 34px; margin: auto; }
.desktop-nav a, .login-link { font-size: 14px; font-weight: 600; color: #40394a; transition: .2s; }
.desktop-nav a:hover, .login-link:hover { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.button {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border-radius: 999px; color: #fff; font-weight: 700; font-size: 14px;
  background: linear-gradient(110deg, #7c12f4 0%, #c50be9 58%, #ff35b5 130%);
  box-shadow: 0 12px 30px rgba(174,18,242,.24); transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(174,18,242,.32); }
.button-small { padding: 11px 18px; font-size: 13px; }
.button-large { padding: 16px 24px; }
.button-secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(35,3,66,.07); }
.button-light { background: #fff; color: var(--purple-dark); box-shadow: 0 14px 38px rgba(0,0,0,.18); }
.menu-button, .mobile-menu { display: none; }

.hero {
  min-height: 1030px; padding-top: 170px; position: relative; text-align: center;
}
.hero::before {
  content:""; position:absolute; width: 850px; height: 500px; top: 10px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(205,183,255,.3), transparent 68%); z-index:-2;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .55; z-index: -1; }
.hero-orb-one { width: 260px; height: 260px; background: #e9d9ff; top: 160px; left: -180px; }
.hero-orb-two { width: 220px; height: 220px; background: #dffbf4; top: 480px; right: -170px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; color: #7f3b9c; text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; font-weight: 800;
}
.eyebrow span { width: 22px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 {
  margin: 22px auto 20px; max-width: 920px; font-size: clamp(54px, 6.7vw, 92px); line-height: .98;
  letter-spacing: -.06em; font-weight: 800;
}
h1 span, .section-heading h2 span { color: var(--purple); }
.hero-lead { max-width: 680px; margin: 0 auto; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-proof p { margin: 0; font-size: 12px; text-align: left; color: #7a7183; line-height: 1.5; }
.hero-proof strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px; margin-left: -7px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg,#d9bcff,#91f6db); border: 2px solid white; font-size: 10px; font-weight: 800;
}
.social-chip {
  position: absolute; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px;
  color: white; box-shadow: 0 18px 35px rgba(48,18,65,.12);
  animation: float 6s ease-in-out infinite;
}
.social-chip svg { width: 24px; height: 24px; fill: currentColor; }
.chip-linkedin { left: 4%; top: 270px; background: #0a66c2; transform: rotate(-8deg); }
.chip-facebook { left: 12%; top: 450px; background: #1877f2; animation-delay: -2s; }
.chip-instagram { right: 8%; top: 440px; background: linear-gradient(135deg,#804cff,#ff3f9a,#ffbe64); animation-delay: -4s; }
.chip-tiktok { right: 4%; top: 235px; background: #18151d; animation-delay: -1s; }
.chip-pinterest { right: 16%; top: 360px; background: #e60023; animation-delay: -3s; }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }

.product-stage { position: relative; margin: 120px auto 70px; max-width: 1100px; }
.stage-glow {
  position: absolute; inset: 5% 10% -3%; background: linear-gradient(110deg,rgba(255,145,233,.35),rgba(176,137,255,.4),rgba(110,244,220,.28));
  filter: blur(70px); border-radius: 50%; z-index: -1;
}
.app-window {
  overflow: hidden; height: 565px; background: #fff; border: 1px solid rgba(63,7,93,.1); border-radius: 26px;
  box-shadow: 0 35px 90px rgba(45,3,71,.18), 0 3px 15px rgba(64,9,94,.08); text-align: left;
  transform: perspective(1600px) rotateX(2deg);
}
.app-topbar { height: 62px; display: flex; align-items: center; gap: 16px; padding: 0 20px; border-bottom: 1px solid #eee9f1; }
.app-topbar img { width: 28px; height:28px; }
.app-brand-name { margin-left:-10px; font:800 12px "Manrope"; }
.workspace-pill, .mode-pill { padding: 7px 11px; border: 1px solid #eee8f2; border-radius: 999px; font-size: 10px; }
.workspace-pill span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--purple); margin-right: 5px; }
.topbar-spacer { flex: 1; }
.mode-pill { color: var(--purple); background: #faf5ff; font-weight: 700; }
.user-pill { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #251034; color: white; font-size: 9px; }
.app-layout { display: grid; grid-template-columns: 190px 1fr; height: calc(100% - 62px); }
.app-sidebar { padding: 25px 15px; border-right: 1px solid #eee9f1; }
.nav-item { display: flex; gap: 11px; align-items: center; padding: 11px 13px; margin-bottom: 5px; border-radius: 12px; font-size: 11px; color: #695f70; }
.nav-item i { font-style: normal; width: 18px; text-align: center; font-size: 15px; }
.nav-item.active { color: var(--purple); background: linear-gradient(90deg,#f6e9ff,#f3efff); font-weight: 700; }
.dashboard { padding: 30px; background: radial-gradient(circle at 100% 100%,#eafaf7,transparent 35%),radial-gradient(circle at 40% 100%,#fff1e9,transparent 40%),#fbfafc; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: end; }
.dashboard-heading small { color: #8b8090; }
.dashboard-heading h3 { margin: 5px 0 0; font-size: 20px; }
.dashboard-heading button, .prompt-line button { border: 0; border-radius: 999px; padding: 10px 15px; background: linear-gradient(90deg,#9c15f4,#e21bd7); color: white; font-size: 10px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 22px 0 16px; }
.mini-stat { background: rgba(255,255,255,.9); border: 1px solid #eee9f0; border-radius: 14px; padding: 13px; }
.mini-stat span,.mini-stat em { display: block; font-size: 8px; color: #8b8190; font-style: normal; }
.mini-stat strong { display: block; font-size: 21px; margin: 8px 0; }
.mini-stat em { color: #15a969; }
.dashboard-panels { display: grid; grid-template-columns: 1.8fr 1fr; gap: 14px; }
.chart-card,.next-posts { min-height: 265px; padding: 15px; border: 1px solid #eee9f0; background: rgba(255,255,255,.88); border-radius: 16px; }
.card-title { display: flex; justify-content: space-between; font-size: 10px; }
.card-title span { color: #9b909f; font-size: 8px; }
.chart { position: relative; height: 190px; margin-top: 22px; }
.chart-lines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg,transparent 0 42px,#eee9f1 43px); }
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chart .line { fill: none; stroke: var(--purple); stroke-width: 4; stroke-linecap: round; }
.chart .area { fill: url(#area); }
.next-posts article { display: flex; gap: 9px; align-items: center; padding: 14px 0; border-bottom: 1px solid #f0ecf2; }
.post-thumb { width: 38px; height: 38px; border-radius: 9px; flex: none; }
.post-thumb.pink { background: linear-gradient(145deg,#ff85d1,#7f26ef); }
.post-thumb.purple { background: linear-gradient(145deg,#39105d,#bb20db); }
.post-thumb.cyan { background: linear-gradient(145deg,#78e5db,#8255e9); }
.next-posts b,.next-posts small { display:block; font-size: 8px; }
.next-posts small { color:#9b909f; margin-top:4px; }
.floating-note {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: rgba(255,255,255,.92); border: 1px solid #eee7f2; border-radius: 14px; box-shadow: 0 18px 50px rgba(52,6,84,.15); text-align: left;
  animation: float 5s ease-in-out infinite;
}
.floating-note > span { width: 28px; height: 28px; display:grid; place-items:center; border-radius: 9px; color:white; background:linear-gradient(135deg,var(--purple),var(--magenta)); }
.floating-note b,.floating-note small { display:block; font-size: 10px; }
.floating-note small { color:#978d9b; margin-top:3px; }
.note-one { left:-45px; top:80px; }
.note-two { right:-38px; bottom:70px; animation-delay:-2s; }

.trusted-strip { padding: 30px 24px 34px; text-align:center; border-top:1px solid #f1edf3; border-bottom:1px solid #f1edf3; }
.trusted-strip p { margin:0 0 20px; color:#8a7f8e; font-size:12px; }
.network-list { display:flex; justify-content:center; flex-wrap:wrap; gap:clamp(26px,6vw,80px); color:#4c4353; font-weight:700; opacity:.7; }
.section { padding-block: 130px; }
.section-heading { max-width: 760px; margin: 0 auto 58px; text-align:center; }
.section-heading h2 { margin:18px 0; font-size:clamp(38px,5vw,62px); line-height:1.08; letter-spacing:-.045em; }
.section-heading > p { max-width:620px; margin:auto; color:var(--ink-soft); line-height:1.7; }
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.step-card { position:relative; min-height:285px; padding:32px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; transition:.35s; }
.step-card:hover { translate:0 -8px; box-shadow:var(--shadow); border-color:rgba(174,18,242,.22); }
.step-number { position:absolute; right:24px; top:20px; color:#e8dfee; font:700 42px "Manrope"; }
.step-icon { width:54px; height:54px; display:grid; place-items:center; border-radius:17px; background:linear-gradient(145deg,#f7ebff,#fff); color:var(--purple); font-size:24px; box-shadow:0 12px 25px rgba(172,18,241,.12); }
.step-card h3 { margin:34px 0 12px; font-size:21px; }
.step-card p,.feature-copy p { color:var(--ink-soft); line-height:1.65; margin:0; font-size:14px; }

.features-section { padding-top:80px; }
.bento-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:18px; }
.feature-card { overflow:hidden; position:relative; isolation:isolate; contain:paint; min-height:480px; padding:34px; border:1px solid rgba(174,18,242,.16); border-radius:30px; background:linear-gradient(145deg,#fff,#fbf5ff); }
.feature-card::after { content:""; position:absolute; width:230px; height:230px; border-radius:50%; background:#e4fff7; filter:blur(70px); right:-90px; bottom:-100px; }
.feature-large { min-height:560px; }
.feature-wide { min-height:480px; }
.feature-copy { position:relative; z-index:2; max-width:570px; }
.feature-tag { display:inline-flex; padding:7px 10px; border-radius:999px; background:#f1dcff; color:#8a12bc; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.feature-copy h3 { margin:16px 0 10px; font-size:27px; letter-spacing:-.025em; }
.creation-demo { position:absolute; z-index:2; left:34px; right:34px; bottom:32px; padding:22px; border:1px solid white; border-radius:22px; background:rgba(255,255,255,.72); box-shadow:0 18px 44px rgba(40,5,62,.1); backdrop-filter:blur(18px); }
.platform-pills { display:flex; gap:6px; margin-bottom:12px; }
.platform-pills span { padding:5px 8px; border-radius:99px; background:#f4f0f5; color:#8a818d; font-size:8px; }
.platform-pills .selected { color:var(--purple); background:#f2ddff; }
.prompt-line { display:flex; justify-content:space-between; align-items:center; padding:8px 8px 8px 13px; border:1px solid #e7dfe9; border-radius:999px; color:#a096a5; font-size:9px; background:white; }
.prompt-line button { padding:8px 13px; }
.creation-result { display:grid; grid-template-columns:120px 1fr; gap:16px; margin-top:16px; }
.generated-visual { height:130px; padding:14px; border-radius:15px; display:flex; align-items:end; color:white; font-size:11px; background:linear-gradient(145deg,#31104c,#d221dc 70%,#ff70c3); }
.generated-copy { padding:12px 5px; }
.generated-copy i { display:block; height:6px; border-radius:5px; margin-bottom:10px; background:#e9e4eb; }
.generated-copy i:nth-child(2){width:84%}.generated-copy i:nth-child(3){width:92%}.generated-copy i:nth-child(4){width:63%}
.generated-copy button { border:0; color:var(--purple); background:transparent; font-size:9px; font-weight:700; }
.calendar-demo { position:absolute; left:30px; right:30px; bottom:30px; z-index:2; padding:18px; border-radius:20px; background:white; box-shadow:0 18px 44px rgba(40,5,62,.1); }
.calendar-header { display:flex; justify-content:space-between; font-size:10px; margin-bottom:14px; }
.calendar-grid { display:grid; grid-template-columns:repeat(5,1fr); grid-auto-rows:43px; border:1px solid #eee8f0; }
.calendar-grid span { border-right:1px solid #eee8f0; border-bottom:1px solid #eee8f0; position:relative; }
.calendar-post { margin:4px; padding:5px!important; border:0!important; border-radius:6px; font-size:6px; color:white; }
.p1{background:#9e3ae5}.p2{background:#e736ad}.p3{background:#6138c9}.best-time::after{content:"";position:absolute;inset:7px;border:1px dashed var(--purple);border-radius:8px}
.auto-demo { position:absolute; z-index:2; bottom:40px; left:34px; right:34px; display:flex; align-items:center; justify-content:center; gap:45px; }
.auto-ring { width:145px; height:145px; border-radius:50%; display:flex; flex-direction:column; justify-content:center; align-items:center; background:radial-gradient(circle,#fff 55%,transparent 57%),conic-gradient(var(--purple) 0 84%,#eee6f3 84%); }
.auto-ring span { font:800 26px "Manrope"; }.auto-ring small{color:#8c8191}
.auto-demo ul { list-style:none; padding:0; margin:0; }
.auto-demo li { padding:9px 0; font-size:12px; }.auto-demo li span{color:#14a86a;margin-right:7px}
.analytics-demo { position:absolute; z-index:2; bottom:32px; left:34px; right:34px; padding:22px; height:190px; display:grid; grid-template-columns:1.6fr 1fr; gap:20px; border-radius:22px; background:white; box-shadow:0 18px 44px rgba(40,5,62,.1); }
.analytics-bars { display:flex; align-items:end; gap:10px; border-bottom:1px solid #e8e2eb; }
.analytics-bars i { flex:1; min-height:15px; border-radius:7px 7px 0 0; background:linear-gradient(0deg,#c70cec,#8c44f4); }
.analytics-score { display:flex; flex-direction:column; justify-content:center; padding-left:15px; border-left:1px solid #eee8f0; }
.analytics-score small { color:#897f8e }.analytics-score strong{font:800 32px "Manrope";margin:7px 0}.analytics-score span{font-size:10px;color:#15a969}

.quote-section { overflow:hidden; color:white; background:var(--purple-dark); }
.quote-inner { position:relative; text-align:center; padding-block:10px; }
.quote-mark { position:absolute; left:0; top:-80px; color:rgba(255,255,255,.07); font:800 280px Georgia; }
blockquote { position:relative; margin:0; font:700 clamp(36px,5vw,64px)/1.15 "Manrope"; letter-spacing:-.045em; }
blockquote span { color:#e37aff; }
.quote-inner p { max-width:650px; margin:28px auto 0; color:#c7b5d5; line-height:1.7; }
.pricing-section { padding-bottom:100px; }
.billing-toggle { width:max-content; margin:-30px auto 42px; padding:5px; border-radius:999px; background:#f4eff6; }
.billing-toggle button { border:0; cursor:pointer; padding:10px 14px; border-radius:999px; color:#776d7d; background:transparent; font-size:12px; font-weight:700; }
.billing-toggle button.active { color:white; background:var(--purple-dark); box-shadow:0 8px 22px rgba(35,3,66,.2); }
.billing-toggle button span { color:#9f22cf; margin-left:4px; }
.billing-toggle button.active span { color:#e8a8ff; }
.pricing-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; align-items:stretch; }
.price-card { position:relative; display:flex; flex-direction:column; padding:26px; border:1px solid var(--line); border-radius:24px; background:white; transition:.3s; }
.price-card:hover { translate:0 -7px; box-shadow:var(--shadow); }
.price-card.featured { border-color:var(--purple); background:linear-gradient(155deg,#2c074a,#160129); color:white; transform:scale(1.025); box-shadow:0 24px 60px rgba(80,3,119,.22); }
.recommended { position:absolute; right:17px; top:17px; padding:6px 8px; border-radius:99px; color:#5d1279; background:#f3c9ff; font-size:8px; font-weight:800; text-transform:uppercase; }
.plan-label { font-size:10px; color:var(--purple); font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.featured .plan-label { color:#e992ff; }
.price-card h3 { margin:10px 0 5px; font-size:26px; }.price-card p{min-height:42px;margin:0;color:#817784;font-size:12px;line-height:1.5}.featured p{color:#cbbbd2}
.price { margin:25px 0 18px; }.price strong{font:800 29px "Manrope"}.price span{color:#8a7e8e;font-size:11px}.featured .price span{color:#bdabc5}
.price-card .button { order:3;width:100%;margin-top:auto;margin-bottom:0 }
.price-card ul { order:2;list-style:none;padding:20px 0;margin:0 0 20px;border-top:1px solid #eee8f0 }
.featured ul { border-color:rgba(255,255,255,.12); }
.price-card li { position:relative; padding:7px 0 7px 20px; font-size:11px; color:#5f5665; }
.featured li { color:#e4dbe8; }
.price-card li::before { content:"✓"; position:absolute; left:0; color:var(--purple); font-weight:800; }
.price-card li.feature-disabled { color:#aaa2ad;text-decoration:line-through }
.price-card li.feature-disabled::before { content:"×";color:#aaa2ad }
.pricing-note { text-align:center; color:#8e8392; font-size:11px; margin-top:26px; }
.faq-section { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.faq-section .section-heading { position:sticky; top:120px; margin:0; text-align:left; }
.faq-list { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; display:flex; justify-content:space-between; align-items:center; text-align:left; padding:24px 0; border:0; cursor:pointer; background:transparent; color:var(--ink); font-weight:700; }
.faq-item button i { width:26px;height:26px;display:grid;place-items:center;border:1px solid #ddd4e1;border-radius:50%;font-style:normal;transition:.25s}
.faq-item.open button i { rotate:45deg; color:var(--purple); border-color:var(--purple); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease; }
.faq-answer p { overflow:hidden; margin:0; color:var(--ink-soft); line-height:1.65; font-size:14px; }
.faq-item.open .faq-answer { grid-template-rows:1fr; }
.faq-item.open .faq-answer p { padding-bottom:24px; }
.final-cta { overflow:hidden; position:relative; margin-top:30px; margin-bottom:100px; min-height:350px; padding:60px; border-radius:34px; display:flex; align-items:center; justify-content:space-between; color:white; background:linear-gradient(120deg,#20033b,#6c0795 65%,#ba16dc); }
.final-cta h2 { margin:16px 0 12px; font-size:clamp(38px,5vw,60px); line-height:1.05; letter-spacing:-.045em; }
.final-cta p { color:#d7c2e1; }.final-cta .feature-tag{color:white;background:rgba(255,255,255,.14)}
.cta-orb { position:absolute;width:320px;height:320px;border-radius:50%;right:18%;bottom:-220px;background:#ff3dc8;filter:blur(40px);opacity:.42}
.final-cta > *:not(.cta-orb) { position:relative;z-index:2 }
footer { color:white; background:#0f0715; }
.footer-main { display:flex; justify-content:space-between; padding-block:65px; }
.footer-brand > div { position:relative; display:flex; align-items:center; gap:9px; }
.footer-brand > div::after { content:"";position:absolute;left:16px;top:50%;z-index:2;width:8px;height:8px;translate:0 -50%;border-radius:50%;background:#fff;box-shadow:0 0 12px rgba(255,255,255,.5);pointer-events:none }
.footer-brand img { width:40px;height:40px;animation:footer-logo-spin 9s linear infinite }.footer-brand b{font:800 20px "Manrope"}.footer-brand p{color:#9f92a7;font-size:13px}
@keyframes footer-logo-spin { to { rotate:360deg } }
.footer-links { display:flex; gap:80px; }.footer-links div{display:flex;flex-direction:column;gap:12px}.footer-links b{margin-bottom:5px;font-size:12px}.footer-links a{color:#9f92a7;font-size:12px}.footer-links a:hover{color:white}
.footer-bottom { padding-block:20px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; color:#786e7e; font-size:10px; }
.footer-bottom a { color:#a79aad; transition:color .2s; }
.footer-bottom a:hover { color:white; }
.reveal { opacity:0; translate:0 24px; transition:opacity .75s ease,translate .75s ease; transition-delay:var(--delay,0ms); }
.reveal.visible { opacity:1; translate:0 0; }

/* Pages tarifs et légales */
.active-link { color: var(--purple) !important; }
.pricing-hero, .legal-hero {
  position: relative; overflow: hidden; padding: 190px 0 110px; text-align: center;
  background:
    radial-gradient(circle at 16% 35%, rgba(226,199,255,.55), transparent 28%),
    radial-gradient(circle at 84% 65%, rgba(209,255,243,.6), transparent 26%),
    linear-gradient(180deg,#fff,#fbf8ff);
}
.pricing-hero::after, .legal-hero::after {
  content:""; position:absolute; width:420px; height:420px; left:50%; bottom:-330px; translate:-50% 0;
  border-radius:50%; background:#d232ff; filter:blur(80px); opacity:.15;
}
.pricing-hero h1, .legal-hero h1 { margin:20px auto; max-width:920px; }
.pricing-hero p, .legal-hero p { max-width:690px; margin:0 auto 30px; color:var(--ink-soft); font-size:17px; line-height:1.7; }
.pricing-page-section { padding-top:110px; }
.plan-comparison,.add-ons-section{margin-top:58px}.comparison-heading{text-align:center;max-width:720px;margin:0 auto 32px}.comparison-heading h2{margin:14px 0 10px;font-size:clamp(30px,4vw,44px)}.comparison-heading p{margin:0;color:var(--ink-soft);line-height:1.65}.comparison-scroll{overflow-x:auto;border:1px solid var(--line);border-radius:26px;background:white;box-shadow:0 20px 60px rgba(56,10,78,.08)}.comparison-table{width:100%;min-width:790px;border-collapse:collapse;text-align:center}.comparison-table th,.comparison-table td{padding:17px 16px;border-bottom:1px solid #eee8f0;font-size:12px}.comparison-table thead th{padding-block:21px;color:var(--ink);font:800 14px "Manrope";background:#faf7fc}.comparison-table thead th:first-child,.comparison-table tbody th{text-align:left}.comparison-table tbody th{color:#655a6a;font-weight:700}.comparison-table tbody tr:last-child>*{border-bottom:0}.comparison-table .recommended-column{background:#fbf1ff}.comparison-table .feature-disabled{color:#a59da9;text-decoration:line-through}.comparison-table thead .recommended-column{color:#75129d}.comparison-table thead span{display:block;width:max-content;margin:6px auto 0;padding:4px 7px;border-radius:99px;color:white;background:var(--purple);font-size:7px;text-transform:uppercase}.add-ons-section{padding:48px;border-radius:32px;background:linear-gradient(145deg,#faf5fd,#f3ebfa)}.add-ons-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.add-on-card{padding:25px;border:1px solid rgba(169,21,241,.12);border-radius:22px;background:rgba(255,255,255,.9);box-shadow:0 14px 35px rgba(74,13,101,.07)}.add-on-icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;color:white;background:linear-gradient(135deg,#8d22e8,#d20fcf);font-size:20px}.add-on-card h3{margin:16px 0 14px;font-size:18px}.add-on-card ul{list-style:none;padding:0;margin:0}.add-on-card li{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid #eee7f1;color:#665b6a;font-size:12px}.add-on-card li strong{white-space:nowrap;color:var(--ink);font-size:14px}.add-on-card small{display:block;margin-top:3px;color:var(--purple);font-size:9px;font-weight:700}.add-ons-note{margin:25px 0 0;text-align:center;color:#786d7d;font-size:11px;line-height:1.6}
.checkout-steps { padding-top:20px; padding-bottom:120px; }

.legal-hero { padding-bottom:95px; color:white; background:
  radial-gradient(circle at 20% 40%,rgba(176,32,233,.25),transparent 30%),
  linear-gradient(130deg,#17012d,#3e075d 65%,#26023e); }
.legal-hero .eyebrow{color:#e5a3ff}.legal-hero h1{font-size:clamp(50px,6.2vw,80px)}.legal-hero p{color:#cfbdd9}
.legal-layout{display:grid;grid-template-columns:230px minmax(0,780px);justify-content:center;gap:70px;padding-top:95px;padding-bottom:125px}
.legal-toc{position:sticky;top:110px;align-self:start;display:flex;flex-direction:column;padding:22px;border:1px solid var(--line);border-radius:20px;background:#fbf8fd}
.legal-toc b{margin-bottom:12px;font:800 13px "Manrope";text-transform:uppercase;letter-spacing:.08em}.legal-toc a{padding:8px 0;color:#786d7d;font-size:12px}.legal-toc a:hover{color:var(--purple)}
.legal-content{min-width:0}.legal-intro{margin:0 0 50px;padding:26px;border-left:3px solid var(--purple);border-radius:0 18px 18px 0;background:#faf5fd;color:#5e5264;font-size:16px!important}
.legal-content section{position:relative;padding:0 0 45px;margin-bottom:45px;border-bottom:1px solid var(--line)}
.legal-content section:last-child{margin-bottom:0;border:0}.legal-content section>span{position:absolute;left:-48px;top:4px;color:#d9cce0;font:800 14px "Manrope"}
.legal-content h2{margin:0 0 17px;font-size:28px;letter-spacing:-.025em}.legal-content p,.legal-content li{color:#645969;font-size:14px;line-height:1.8}.legal-content a{color:#9815c9;text-decoration:underline}.legal-content ul{padding-left:20px}.legal-content li{padding:4px 0}
.legal-facts{display:grid;grid-template-columns:1fr 1fr;gap:12px}.legal-facts p{margin:0;padding:17px;border-radius:15px;background:#faf7fc}.legal-facts strong{display:block;color:var(--ink);font-size:11px;text-transform:uppercase;letter-spacing:.06em}

@media (max-width: 1020px) {
  .desktop-nav { gap:18px; }
  .hero { min-height:920px; }
  .app-window { height:490px; }
  .app-layout { grid-template-columns:145px 1fr; }
  .app-sidebar { padding-inline:10px; }.dashboard{padding:22px}.nav-item{padding:9px 7px}.stat-grid{gap:7px}
  .steps { grid-template-columns:1fr; }.step-card{min-height:auto}
  .pricing-grid { grid-template-columns:repeat(2,1fr); }.price-card.featured{transform:none}
  .faq-section { grid-template-columns:1fr; }.faq-section .section-heading{position:static;text-align:center}
  .final-cta { padding:46px; flex-direction:column; text-align:center; gap:25px; }
  .add-ons-grid{grid-template-columns:1fr 1fr}.add-on-card:last-child{grid-column:1/-1}
  .legal-layout{grid-template-columns:190px minmax(0,1fr);gap:45px}
}
@media (max-width: 760px) {
  body { width:100%; }
  .section-shell { width:min(100% - 30px,1180px); }
  .site-header { width:calc(100% - 20px); padding:0 15px; height:68px; }
  .brand img { width:35px;height:35px }.brand span{font-size:17px}
  .desktop-nav,.header-actions { display:none; }
  .menu-button { margin-left:auto;width:42px;height:42px;display:flex;flex-direction:column;justify-content:center;gap:6px;align-items:center;border:0;border-radius:50%;background:#f8f2fb;z-index:2 }
  .menu-button span{width:18px;height:2px;background:var(--ink);transition:.25s}.menu-button.open span:first-child{rotate:45deg;translate:0 4px}.menu-button.open span:last-child{rotate:-45deg;translate:0 -4px}
  .mobile-menu { position:fixed;left:10px;right:10px;top:84px;padding:20px;display:flex;flex-direction:column;gap:6px;border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.96);box-shadow:var(--shadow);backdrop-filter:blur(20px);opacity:0;visibility:hidden;translate:0 -10px;transition:.25s }
  .mobile-menu.open{opacity:1;visibility:visible;translate:0 0}.mobile-menu a{padding:11px 8px;font-weight:600}.mobile-menu .button{margin-top:8px}
  .hero { min-height:auto; padding-top:145px; padding-bottom:75px; }
  .hero-copy { width:100%; min-width:0; }
  .hero .eyebrow { max-width:100%; font-size:9px; letter-spacing:.08em; }
  h1 { max-width:100%; font-size:clamp(42px,12.5vw,52px); overflow-wrap:anywhere; }
  .hero-lead { font-size:16px; }.hero-actions{flex-direction:column}.hero-actions .button{width:100%}.hero-proof{margin-top:22px}
  .social-cloud { display:none; }
  .product-stage { margin-top:60px; }
  .app-window { height:385px; border-radius:17px; }
  .app-topbar { height:46px;padding:0 10px}.app-topbar img{width:22px;height:22px}.app-brand-name{font-size:8px;margin-left:-11px}.workspace-pill{display:none}.mode-pill{font-size:7px;padding:5px 7px}
  .app-layout { grid-template-columns:55px 1fr;height:calc(100% - 46px) }
  .app-sidebar { padding:15px 6px; }.nav-item{justify-content:center;padding:8px 3px}.nav-item span{display:none}.nav-item i{font-size:13px}
  .dashboard{padding:14px}.dashboard-heading h3{font-size:13px}.dashboard-heading small{font-size:7px}.dashboard-heading button{font-size:7px;padding:7px}
  .stat-grid{grid-template-columns:repeat(2,1fr);margin:13px 0 9px}.mini-stat{padding:7px}.mini-stat strong{font-size:13px;margin:4px 0}.mini-stat span,.mini-stat em{font-size:6px}
  .dashboard-panels{grid-template-columns:1fr}.chart-card{min-height:150px;padding:10px}.chart{height:100px;margin-top:10px}.next-posts{display:none}
  .floating-note{display:none}.trusted-strip{padding-block:28px}.network-list{gap:18px;font-size:11px}
  .section{padding-block:85px}.section-heading{margin-bottom:38px}.section-heading h2{font-size:39px}
  .bento-grid { grid-template-columns:1fr; }.feature-card,.feature-large,.feature-wide{min-height:480px;padding:24px;clip-path:inset(0 round 30px)}.feature-copy h3{font-size:23px}
  .creation-demo,.calendar-demo,.analytics-demo{left:20px;right:20px;bottom:22px}.creation-demo{padding:15px}.creation-result{grid-template-columns:100px 1fr}.generated-visual{height:115px}
  .auto-demo{left:24px;right:24px;gap:20px;flex-direction:column}.auto-ring{width:120px;height:120px}.auto-demo li{font-size:11px}
  .analytics-demo{height:210px;display:flex;flex-direction:column;gap:10px;padding:18px}.analytics-score{position:static;order:1;width:100%;padding:0 0 9px;border:0;border-bottom:1px solid #eee8f0}.analytics-score strong{display:inline-block;font-size:23px;margin:5px 8px 0 0}.analytics-score span{display:inline-block}.analytics-bars{order:2;width:100%;min-height:95px;flex:1;padding-top:0}
  blockquote{font-size:35px}.quote-mark{display:none}
  .pricing-grid{grid-template-columns:1fr}.price-card{padding:24px}.billing-toggle{margin-top:-15px}
  .plan-comparison,.add-ons-section{margin-top:42px}.add-ons-section{padding:32px 18px}.add-ons-grid{grid-template-columns:1fr}.add-on-card:last-child{grid-column:auto}.comparison-heading{text-align:left}.comparison-table th,.comparison-table td{padding:14px 12px}
  .faq-list{margin-top:-20px}.faq-item button{font-size:14px;gap:20px}
  .final-cta{min-height:420px;padding:38px 22px;margin-bottom:70px}.final-cta h2{font-size:40px}
  .footer-main{flex-direction:column;gap:45px}.footer-links{display:grid;grid-template-columns:repeat(2,1fr);gap:38px}.footer-bottom{gap:15px;flex-direction:column}
  .pricing-hero,.legal-hero{padding:145px 0 75px}.pricing-hero h1,.legal-hero h1{font-size:44px}.pricing-hero p,.legal-hero p{font-size:15px}
  .pricing-page-section{padding-top:80px}
  .legal-layout{display:block;padding-top:60px;padding-bottom:85px}.legal-toc{display:none}.legal-content section>span{position:static;display:block;margin-bottom:8px}.legal-content h2{font-size:25px}.legal-intro{padding:20px}.legal-facts{grid-template-columns:1fr}
}
@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.reveal{opacity:1;translate:none}
}
