:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #1d1b18;
  --ink-2: #3a3631;
  --muted: #6f6a62;
  --line: #ebe6de;
  --line-2: #e2dcd2;
  --accent: #e0583a;
  --accent-deep: #c4452a;
  --accent-soft: #fdeae3;
  --green: #268a52;
  --green-soft: #e2f3e8;
  --blue: #3667d1;
  --blue-soft: #e5edfc;
  --amber: #b27812;
  --amber-soft: #fbf0d8;
  --sans: "Figtree", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow-sm: 0 1px 2px rgba(29, 27, 24, .05), 0 2px 8px rgba(29, 27, 24, .04);
  --shadow-lg: 0 2px 4px rgba(29, 27, 24, .04), 0 24px 60px -12px rgba(29, 27, 24, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.025em; }
p { margin: 0; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 6px 16px -6px rgba(29,27,24,.5); }
.btn-dark:hover { box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 10px 24px -8px rgba(29,27,24,.55); }
.btn-light { background: var(--surface); color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-light:hover { border-color: #d3ccc0; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--ink); height: 50px; padding: 0 26px; }
.btn-block { width: 100%; }
.btn.is-soon { opacity: .6; cursor: default; pointer-events: none; }

/* Nav */
.nav-wrap { position: fixed; inset: 14px 16px auto; z-index: 50; display: flex; justify-content: center; pointer-events: none; }
.nav {
  pointer-events: auto; width: min(1080px, 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 8px 8px 18px; border-radius: 999px;
  background: rgba(250, 248, 244, .6); border: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  transition: background .35s var(--ease), border-color .35s, box-shadow .35s var(--ease), width .45s var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, .82); border-color: var(--line); box-shadow: 0 8px 30px -12px rgba(29,27,24,.18); width: min(900px, 100%); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.03em; font-size: 17px; }
.brand-mark { width: 34px; height: 34px; display: block; object-fit: contain; transition: transform .35s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; color: var(--ink-2); font-size: 14px; font-weight: 500; transition: background .2s, color .2s; }
.nav-links a:hover { background: rgba(29,27,24,.05); color: var(--ink); }

/* Hero */
.hero { position: relative; padding: 112px 16px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-glow {
  position: absolute; z-index: -1; top: 40px; left: 50%; width: min(900px, 100vw); height: 620px; transform: translateX(-50%);
  background:
    radial-gradient(closest-side at 35% 45%, rgba(224, 88, 58, .13), transparent),
    radial-gradient(closest-side at 68% 40%, rgba(242, 176, 94, .16), transparent),
    radial-gradient(closest-side at 50% 70%, rgba(54, 103, 209, .06), transparent);
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translateX(-50%) translateY(20px) scale(1.06); } }
/* Posy pops in from posy.js, so no CSS entrance here. */
.hero-posy { width: 188px; height: 188px; margin-bottom: 4px; }
.hero-posy img { width: 100%; height: 100%; display: block; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 500; color: var(--ink-2); transition: border-color .2s;
}
.badge:hover { border-color: var(--line-2); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(224,88,58,.5); animation: ping 2.2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 7px rgba(224,88,58,0); } 100% { box-shadow: 0 0 0 0 rgba(224,88,58,0); } }
.hero-title { margin-top: 26px; font-size: clamp(46px, 7.4vw, 92px); line-height: 1.02; letter-spacing: -.045em; max-width: 12ch; }
.hero-title .word { display: inline-block; }
.hero-title .serif { font-size: 1.08em; letter-spacing: -.03em; }
.hero-sub { margin-top: 24px; max-width: 560px; font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); }
.hero-ctas { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-meta { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; color: var(--muted); font-size: 13.5px; }
.hero-meta li { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta li::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4 7.2l2 2 4-4.4' fill='none' stroke='%23268a52' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }

.hero-in { opacity: 0; transform: translateY(18px); filter: blur(6px); animation: rise .9s var(--ease) forwards; animation-delay: calc(var(--d) * 90ms + 80ms); }
@keyframes rise { to { opacity: 1; transform: none; filter: blur(0); } }

/* Mockup */
.mock-stage { margin-top: 64px; width: min(1080px, 100%); perspective: 1600px; }
.mock-stage.hero-in { animation-name: rise-tilt; animation-duration: 1.3s; }
@keyframes rise-tilt { from { opacity: 0; transform: translateY(50px) rotateX(14deg) scale(.97); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
.mock {
  position: relative; text-align: left; border-radius: 20px; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden;
  font-size: 13px;
}
.mock-bar { height: 44px; display: flex; align-items: center; gap: 14px; padding: 0 16px; border-bottom: 1px solid var(--line); background: #fcfbf9; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 10px; height: 10px; border-radius: 50%; background: #e6e0d6; }
.mock-url { flex: 1; text-align: center; color: var(--muted); font-size: 12px; }
.mock-conn { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-2); padding: 4px 10px; background: var(--bg); border-radius: 999px; border: 1px solid var(--line); }
.mock-conn i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.mock-body { display: grid; grid-template-columns: 330px 1fr; min-height: 380px; }
.mock-compose { padding: 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.mock-label { font-weight: 600; font-size: 14px; }
.mock-image { position: relative; height: 150px; border-radius: 12px; overflow: hidden; background: linear-gradient(180deg, #ffd9b8, #ffc9a3 60%, #f7b48d); }
.mock-sun { position: absolute; width: 56px; height: 56px; border-radius: 50%; background: #fff5e6; top: 30px; left: 58%; box-shadow: 0 0 40px 10px rgba(255,245,230,.7); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-6px); } }
.mock-hill { position: absolute; border-radius: 50%; }
.mock-hill-a { width: 260px; height: 160px; background: #e0583a; left: -60px; bottom: -100px; opacity: .85; }
.mock-hill-b { width: 280px; height: 170px; background: #c4452a; right: -80px; bottom: -120px; }
.mock-caption { min-height: 64px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-2); line-height: 1.45; background: #fdfcfa; }
.mock-caret { display: inline-block; width: 1.5px; height: 14px; background: var(--accent); vertical-align: -2px; margin-left: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mock-row { display: flex; gap: 8px; align-items: center; }
.mock-select { flex: 1; padding: 8px 10px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-btn { padding: 8px 14px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 12px; transition: transform .15s var(--ease), background .2s; }
.mock-btn.pressed, .mock-approve.pressed { transform: scale(.93); }
.mock-queue { padding: 20px; display: flex; flex-direction: column; gap: 14px; background: #fdfcfa; }
.mock-queue-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 14px; }
.mock-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; margin-left: 4px; border-radius: 999px; background: var(--line); font-size: 11px; transition: transform .3s var(--ease); }
.mock-count.bump { transform: scale(1.25); }
.mock-tabs { display: flex; gap: 2px; padding: 3px; background: #f3efe8; border-radius: 999px; }
.mock-tabs i { font-style: normal; font-weight: 500; font-size: 11.5px; padding: 4px 10px; border-radius: 999px; color: var(--muted); }
.mock-tabs i.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.mock-list { display: flex; flex-direction: column; gap: 10px; }
.mock-post { display: flex; gap: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: box-shadow .3s, border-color .3s; }
.mock-post.enter { animation: slot .7s var(--ease); }
.mock-post.leave { animation: unslot .5s var(--ease) forwards; }
@keyframes slot { from { opacity: 0; transform: translateY(-12px) scale(.98); max-height: 0; padding-block: 0; margin-bottom: -10px; } 50% { max-height: 120px; } to { opacity: 1; transform: none; max-height: 120px; } }
@keyframes unslot { to { opacity: 0; transform: translateX(16px); } }
.mock-post.live { border-color: #bfe2cc; box-shadow: 0 0 0 4px var(--green-soft); }
.mock-thumb { flex: 0 0 64px; height: 64px; border-radius: 10px; }
.t-1 { background: linear-gradient(180deg, #ffd9b8, #f7b48d); position: relative; overflow: hidden; }
.t-1::after { content: ""; position: absolute; width: 90px; height: 50px; border-radius: 50%; background: var(--accent); bottom: -28px; left: -10px; }
.t-2 { background: radial-gradient(circle at 30% 35%, #f6d59a 0 18%, transparent 19%), linear-gradient(135deg, #c7875a, #8e5234); }
.t-3 { background: radial-gradient(circle at 50% 38%, #f3d7c3 0 16%, transparent 17%), radial-gradient(ellipse at 50% 100%, #3a5a7a 0 42%, transparent 43%), #dbe6ef; }
.mock-post-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.mock-post-body p { color: var(--ink-2); font-size: 12.5px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mock-post-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.mock-time { color: var(--muted); font-size: 11px; white-space: nowrap; }
.mock-actions { display: flex; gap: 6px; }
.mock-approve { padding: 5px 10px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; transition: transform .15s var(--ease), opacity .3s; }
.mock-ghost { padding: 5px 10px; border-radius: 999px; border: 1px solid var(--line); font-size: 11px; color: var(--muted); }
.mock-cursor { position: absolute; top: 0; left: 0; z-index: 3; opacity: 0; transform: translate(60%, 300px); transition: transform .9s var(--ease), opacity .4s; filter: drop-shadow(0 3px 5px rgba(0,0,0,.2)); pointer-events: none; }
.mock-cursor.show { opacity: 1; }
.mock-cursor.click svg { animation: tap .3s var(--ease); }
@keyframes tap { 50% { transform: scale(.82); } }
.mock-toast {
  position: absolute; right: 18px; bottom: 18px; z-index: 2; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px 10px 10px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 12.5px;
  opacity: 0; transform: translateY(12px) scale(.96); transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.mock-toast.show { opacity: 1; transform: none; }
.mock-toast-posy { width: 30px; height: 30px; margin: -6px 0 -6px -2px; }

/* Chips */
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; white-space: nowrap; transition: background .35s, color .35s; }
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip-draft { background: var(--amber-soft); color: var(--amber); }
.chip-scheduled { background: var(--blue-soft); color: var(--blue); }
.chip-publishing { background: #f1ede6; color: var(--ink-2); }
.chip-publishing::before { animation: pulse 1s ease-in-out infinite; }
.chip-published { background: var(--green-soft); color: var(--green); }
.chip-pop { animation: pop .45s var(--ease); }
@keyframes pop { 40% { transform: scale(1.12); } }
@keyframes pulse { 50% { opacity: .3; } }

/* Sections */
.section { width: min(1080px, 100% - 32px); margin: 0 auto; padding: 110px 0 0; }
.section-narrow { width: min(760px, 100% - 32px); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.kicker { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 14px; padding: 4px 12px; background: var(--accent-soft); border-radius: 999px; }
.section-head h2 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -.04em; }
.section-head h2 .serif { font-size: 1.06em; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 17px; }

.reveal { opacity: 0; transform: translateY(26px); filter: blur(4px); transition: opacity .8s var(--ease), transform .9s var(--ease), filter .8s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 14px 14px 26px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-art { height: 170px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; position: relative; overflow: hidden; margin-bottom: 22px; }
.step-num { display: block; margin: 0 12px 6px; font-size: 13px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.step h3 { margin: 0 12px; font-size: 22px; }
.step p { margin: 8px 12px 0; color: var(--muted); font-size: 15px; }

.ap-card { width: 130px; padding: 10px; border-radius: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 7px; transform: rotate(-4deg); }
.ap-img { height: 60px; border-radius: 8px; background: linear-gradient(180deg, #ffd9b8, #f7b48d); }
.ap-line { height: 7px; border-radius: 4px; background: #eee8df; width: 100%; transform-origin: left; transform: scaleX(0); }
.ap-line.short { width: 60%; }
.in .ap-line { animation: grow 1s .5s var(--ease) forwards; }
.in .ap-line.short { animation-delay: .8s; }
.in .ap-card { animation: settle 1.2s var(--ease) forwards; }
@keyframes grow { to { transform: scaleX(1); } }
@keyframes settle { from { transform: rotate(-12deg) translateY(20px); } to { transform: rotate(-4deg); } }

.art-approve { gap: 12px; align-content: center; }
.aa-pill { width: 84px; height: 46px; border-radius: 999px; background: #e7e1d7; position: relative; transition: background .5s var(--ease) .6s; }
.aa-knob { position: absolute; top: 5px; left: 5px; width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.15); transition: transform .6s var(--ease) .6s; }
.aa-label { font-size: 13px; font-weight: 600; color: var(--green); opacity: 0; transform: translateY(6px); transition: all .5s var(--ease) 1s; }
.in .aa-pill { background: var(--green); }
.in .aa-knob { transform: translateX(38px); }
.in .aa-label { opacity: 1; transform: none; }

.art-publish { align-content: center; gap: 10px; padding: 0 30px; }
.ab-track { width: 170px; height: 6px; border-radius: 999px; background: #e7e1d7; position: relative; }
.ab-track::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--green)); transform-origin: left; transform: scaleX(0); transition: transform 1.2s var(--ease) .5s; }
.ab-dot { position: absolute; z-index: 1; top: 50%; left: 0; width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); transition: left 1.2s var(--ease) .5s, border-color .6s 1.3s; }
.ab-labels { width: 190px; display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--muted); }
.in .ab-track::after { transform: scaleX(1); }
.in .ab-dot { left: 100%; border-color: var(--green); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tile-wide { grid-column: span 2; background: linear-gradient(160deg, #fff 40%, #fff6f2); }
.tile-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 20px; }
.tile-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tile h3 { font-size: 20px; }
.tile p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.tile-flow { margin-top: 26px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tile-flow .chip { font-size: 13px; padding: 6px 13px; }
.flow-line { flex: 1; min-width: 24px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 11px); background-size: 22px 2px; animation: march 1.2s linear infinite; }
@keyframes march { to { background-position: 22px 0; } }
.tile-agents { position: relative; overflow: hidden; }
.agent-stack { display: flex; margin-top: 22px; }
.agent-stack span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; margin-left: -8px; transition: transform .3s var(--ease); }
.agent-stack span:first-child { margin-left: 0; }
.tile-agents:hover .agent-stack span { transform: translateY(-3px); }
.tile-agents:hover .agent-stack span:nth-child(2) { transition-delay: .04s; }
.tile-agents:hover .agent-stack span:nth-child(3) { transition-delay: .08s; }
.agent-stack .add { background: var(--bg); color: var(--muted); border: 2px dashed var(--line-2); }

/* Pricing */
.billing-toggle { position: relative; display: flex; width: max-content; margin: -20px auto 36px; padding: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.bt-option { position: relative; z-index: 1; border: 0; background: none; padding: 8px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--muted); transition: color .3s; display: inline-flex; align-items: center; gap: 6px; }
.bt-option.active { color: #fff; }
.bt-save { font-size: 11px; padding: 2px 6px; border-radius: 999px; background: var(--green-soft); color: var(--green); }
.bt-indicator { position: absolute; top: 4px; bottom: 4px; left: 4px; border-radius: 999px; background: var(--ink); transition: transform .45s var(--ease), width .45s var(--ease); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; gap: 18px; padding: 30px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan h3 { font-size: 20px; }
.plan-desc { color: var(--muted); font-size: 14.5px; margin-top: -12px; }
.plan-featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 30px 60px -20px rgba(29,27,24,.45); }
.plan-featured .plan-desc, .plan-featured .per { color: #b9b2a7; }
.plan-featured .plan-list li { color: #e9e4dc; }
.plan-featured .plan-list li::before { background-color: rgba(255,255,255,.1); }
.plan-tag { position: absolute; top: 26px; right: 26px; padding: 4px 10px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; }
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.price { font-size: 48px; font-weight: 700; letter-spacing: -.04em; font-variant-numeric: tabular-nums; display: inline-block; }
.price.swap { animation: swap .45s var(--ease); }
@keyframes swap { 0% { opacity: 1; transform: none; } 45% { opacity: 0; transform: translateY(-10px); } 55% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: none; } }
.per { color: var(--muted); font-size: 14px; }
.plan-list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plan-list li::before { content: ""; flex: 0 0 18px; height: 18px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5.5 9.3l2.3 2.3 4.7-5' fill='none' stroke='%23268a52' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/18px no-repeat; }
.plan-featured .plan-list li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5.5 9.3l2.3 2.3 4.7-5' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; border: 0; background: none; text-align: left; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.faq-plus { position: relative; flex: 0 0 28px; height: 28px; border-radius: 50%; background: var(--bg); transition: background .3s, transform .45s var(--ease); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1.8px; margin: -.9px 0 0 -5.5px; border-radius: 2px; background: var(--ink); transition: transform .45s var(--ease); }
.faq-plus::after { transform: rotate(90deg); }
.faq-item.open .faq-plus { transform: rotate(180deg); background: var(--accent-soft); }
.faq-item.open .faq-plus::after { transform: rotate(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 15.5px; opacity: 0; transform: translateY(-6px); transition: opacity .35s, transform .45s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a p { opacity: 1; transform: none; transition-delay: .08s; }

/* CTA */
.cta { width: min(1080px, 100% - 32px); margin: 120px auto 0; }
.cta-card { position: relative; overflow: hidden; border-radius: 30px; background: var(--ink); color: #fff; text-align: center; padding: 90px 24px; }
.cta-card h2 { position: relative; font-size: clamp(34px, 5vw, 58px); line-height: 1.06; letter-spacing: -.04em; max-width: 15ch; margin: 0 auto; }
.cta-card h2 .serif { color: #ffb49f; }
.cta-card p { position: relative; margin: 18px auto 34px; color: #bdb6ab; font-size: 17px; }
.cta-card .btn { position: relative; }
.cta-posy { position: relative; display: block; width: 120px; height: 120px; margin: -30px auto 10px; }
.cta-orbs i { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; }
.cta-orbs i:nth-child(1) { width: 340px; height: 340px; background: #e0583a; top: -160px; left: -80px; animation: orb 12s ease-in-out infinite alternate; }
.cta-orbs i:nth-child(2) { width: 300px; height: 300px; background: #f2b05e; bottom: -170px; right: -40px; opacity: .35; animation: orb 15s ease-in-out infinite alternate-reverse; }
.cta-orbs i:nth-child(3) { width: 220px; height: 220px; background: #3667d1; bottom: -120px; left: 38%; opacity: .25; animation: orb 18s ease-in-out infinite alternate; }
@keyframes orb { to { transform: translate(60px, 30px) scale(1.15); } }

/* Footer */
.footer { width: min(1080px, 100% - 32px); margin: 0 auto; padding: 56px 0 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-note { color: var(--muted); font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-compose { border-right: 0; border-bottom: 1px solid var(--line); }
  .mock-url { display: none; }
  .steps, .bento, .plans { grid-template-columns: 1fr; }
  .tile-wide { grid-column: auto; }
  .plans { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero { padding-top: 120px; }
  .mock-tabs { display: none; }
  .mock-image { height: 120px; }
  .section { padding-top: 84px; }
  .cta-card { padding: 64px 20px; border-radius: 24px; }
  .hero-posy { width: 148px; height: 148px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .hero-in, .reveal { opacity: 1; transform: none; filter: none; }
}

.mock-label { display: flex; align-items: center; gap: 8px; }
.mock-agent { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; }
.mock-typing { color: var(--muted); font-weight: 500; font-size: 12px; transition: color .3s; }
.mock-typing.done { color: var(--green); }
.mock-by { font-size: 10.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.mock-by b { width: 14px; height: 14px; border-radius: 4px; display: inline-grid; place-items: center; background: var(--accent); color: #fff; font-size: 7px; }
