:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(0 0% 17%);
  --hero-btn: hsl(213 90% 78%);
  --hero-btn-deep: hsl(213 80% 62%);
  --muted: hsl(0 0% 45%);
  --line: hsl(0 0% 90%);
  --soft: hsl(213 90% 96%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--background); color: var(--foreground); font-family: "Poppins", ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
svg { display: block; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.025em; line-height: 1.12; }
:focus-visible { outline: 2px solid var(--hero-btn-deep); outline-offset: 3px; border-radius: 6px; }

.wrap { padding-left: 20px; padding-right: 20px; }
@media (min-width: 1024px) { .wrap { padding-left: 64px; padding-right: 64px; } }

/* Motion */
@keyframes fade-up { from { transform: translateY(20px); opacity: 0; filter: blur(4px); } to { transform: translateY(0); opacity: 1; filter: blur(0); } }
.fade-up { opacity: 0; animation: fade-up 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-up.d1 { animation-delay: 150ms; }
.reveal { opacity: 0; transform: translateY(20px); filter: blur(4px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1), filter .7s; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
@keyframes drift { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(8%, -6%) scale(1.15); } 100% { transform: translate(0,0) scale(1); } }
@keyframes drift2 { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(-10%, 8%) scale(1.2); } 100% { transform: translate(0,0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .blob { animation: none !important; }
}

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; position: relative; }
.logo { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; }
.nav-links { display: none; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: .875rem; font-weight: 600; opacity: .7; transition: opacity .2s; }
.nav-links a:hover, .nav-links a[aria-current] { opacity: 1; }
.nav-right { display: none; align-items: center; gap: 24px; }
.nav-right .login { font-size: .875rem; font-weight: 600; }
.menu-btn { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 9999px; border: 2px solid var(--foreground); }
.mobile-menu { display: none; flex-direction: column; gap: 16px; padding: 8px 20px 24px; border-bottom: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 600; }
@media (min-width: 768px) { .nav-links, .nav-right { display: flex; } .menu-btn, .mobile-menu { display: none !important; } }
@media (min-width: 1024px) { .nav { padding-top: 24px; padding-bottom: 24px; } }

/* Buttons */
.pill-btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 9999px; background: var(--hero-btn); color: #fff; font-size: .875rem; font-weight: 600; padding: 12px 24px; transition: opacity .2s, transform .2s; }
.pill-btn:hover { opacity: .9; }
.pill-btn.sm { padding: 10px 20px; }
.outline-btn { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--foreground); border-radius: 9999px; padding: 8px 20px; font-size: .875rem; font-weight: 500; transition: background .2s, color .2s; }
.outline-btn:hover { background: var(--foreground); color: #fff; }
.link { font-size: .875rem; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.arrow-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; background: var(--background); color: var(--foreground); flex-shrink: 0; transition: transform .2s; }
.arrow-btn:hover { transform: scale(1.05); }
.badge { display: inline-block; border-radius: 9999px; background: var(--background); color: var(--foreground); padding: 6px 16px; font-size: .75rem; font-weight: 500; }
.badge.soft { background: var(--soft); }

/* Hero */
.hero { display: flex; flex-direction: column; min-height: 100vh; }
.hero .content { flex: 1; padding-bottom: 32px; }
.hero .grid { display: grid; grid-template-columns: 1fr; gap: 32px; height: 100%; align-items: stretch; }
.hero .left { display: flex; flex-direction: column; justify-content: space-between; }
.hero h1 { font-size: 2rem; font-weight: 400; line-height: 1.08; }
.hero h1 .line { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.img-pill { display: inline-block; width: 80px; height: 40px; border-radius: 9999px; flex-shrink: 0; background: linear-gradient(120deg, hsl(213 90% 78%), hsl(200 90% 88%), hsl(230 80% 82%)); background-size: 200% 200%; animation: shimmer 6s ease-in-out infinite; }
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero .ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; padding-top: 24px; }
.hero .bottom { display: none; }
.hero .bottom p { max-width: 28rem; font-size: .875rem; opacity: .8; }
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 40px; margin-top: 32px; }
.logos span { font-size: 1.5rem; font-weight: 700; }
.hero .right { display: flex; flex-direction: column; gap: 16px; }
.card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; background: #1c1c1c; border-radius: 1.5rem; padding: 24px; color: #fff; isolation: isolate; }
.card .z { position: relative; z-index: 10; }
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .9; z-index: 0; }
.blob.a { width: 60%; height: 80%; left: -10%; top: -20%; background: hsl(213 90% 60%); animation: drift 14s ease-in-out infinite; }
.blob.b { width: 55%; height: 70%; right: -15%; bottom: -25%; background: hsl(200 85% 70%); animation: drift2 18s ease-in-out infinite; }
.blob.c { width: 40%; height: 50%; right: 20%; top: 10%; background: hsl(235 70% 65%); animation: drift 22s ease-in-out infinite reverse; }
.grid-lines { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 40px 40px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.card-1 { flex: 1; min-height: 240px; }
.card-1 h2 { max-width: 28rem; font-size: 1.5rem; }
.card-1 .foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-top: 24px; }
.card-1 .foot p { max-width: 20rem; font-size: .75rem; color: rgba(255,255,255,.85); }
.row { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-sm { min-height: 180px; padding: 20px; }
.card-sm .top { display: flex; align-items: center; justify-content: space-between; }
.card-sm .bot { padding-top: 24px; }
.card-sm h3 { font-size: 1.125rem; }
.card-sm .num { font-size: 2.25rem; font-weight: 500; line-height: 1; }
.card-sm .desc { margin-top: 8px; font-size: .75rem; color: rgba(255,255,255,.8); }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } .img-pill { width: 96px; height: 48px; } }
@media (min-width: 1024px) {
  .hero { height: 100vh; overflow: hidden; }
  .hero .content { padding-bottom: 82px; }
  .hero .grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .hero .bottom { display: block; }
  .card { border-radius: 2.5rem; padding: 32px; }
  .card-1 h2 { font-size: 1.875rem; }
  .card-1 .foot p { font-size: .875rem; }
  .arrow-btn { width: 48px; height: 48px; }
  .row { gap: 16px; }
  .card-sm h3 { font-size: 1.5rem; }
  .card-sm .num { font-size: 4.5rem; }
  .card-sm .desc, .badge { font-size: .875rem; }
}
@media (min-width: 1280px) { .hero h1 { font-size: 4.5rem; } }

/* Sections */
.section { padding-top: 72px; padding-bottom: 72px; }
@media (min-width: 1024px) { .section { padding-top: 112px; padding-bottom: 112px; } }
.section-head { max-width: 40rem; margin-bottom: 40px; }
.section-head h2 { font-size: 2rem; font-weight: 400; }
.section-head p { margin-top: 12px; color: var(--muted); }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } .section-head { margin-bottom: 56px; } }
.eyebrow { display: inline-block; margin-bottom: 16px; }
.ticker-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.ticker { display: flex; gap: 56px; width: max-content; animation: ticker 40s linear infinite; }
.ticker span { font-weight: 600; font-size: .875rem; white-space: nowrap; opacity: .7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker { animation: none; } }

.tiles { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tiles { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.tile { border: 1px solid var(--line); border-radius: 1.5rem; padding: 28px; background: var(--background); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px hsl(213 60% 40% / .35); }
.tile .icon { width: 44px; height: 44px; border-radius: 9999px; background: var(--soft); display: flex; align-items: center; justify-content: center; color: var(--hero-btn-deep); margin-bottom: 20px; }
.tile h3 { font-size: 1.125rem; margin-bottom: 8px; }
.tile p { font-size: .875rem; color: var(--muted); }
.tile.dark { background: #1c1c1c; color: #fff; border-color: #1c1c1c; position: relative; overflow: hidden; isolation: isolate; }
.tile.dark p { color: rgba(255,255,255,.8); }
.tile.dark .icon { background: rgba(255,255,255,.12); color: #fff; }
@media (min-width: 1024px) { .tile { padding: 36px; border-radius: 2rem; } }

.split { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split.rev > :first-child { order: 2; } }
.split h2 { font-size: 1.75rem; font-weight: 400; }
.split p { margin-top: 14px; color: var(--muted); }
.split ul { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.split li { display: flex; gap: 10px; font-size: .9375rem; }
.split li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--hero-btn); flex-shrink: 0; margin-top: 10px; }
@media (min-width: 1024px) { .split h2 { font-size: 2.5rem; } }
.art { position: relative; min-height: 320px; border-radius: 2rem; overflow: hidden; background: #1c1c1c; isolation: isolate; }
.art .ui { position: absolute; inset: 0; z-index: 2; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; }
.ui-row { background: rgba(255,255,255,.92); color: var(--foreground); border-radius: 14px; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; font-size: .8125rem; font-weight: 500; backdrop-filter: blur(8px); }
.ui-row .ok { color: hsl(150 60% 38%); }
.ui-row .pend { color: hsl(35 90% 45%); }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.stat { border-radius: 1.5rem; background: var(--soft); padding: 28px; }
.stat .v { font-size: 2.25rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.stat .l { font-size: .875rem; color: var(--muted); margin-top: 8px; }
@media (min-width: 1024px) { .stat .v { font-size: 3rem; } .stat { padding: 36px; border-radius: 2rem; } }

.pricing { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .pricing { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.plan { border: 1px solid var(--line); border-radius: 2rem; padding: 32px; display: flex; flex-direction: column; }
.plan.feat { background: #1c1c1c; color: #fff; border-color: #1c1c1c; position: relative; overflow: hidden; isolation: isolate; }
.plan h3 { font-size: 1.25rem; }
.plan .rate { font-size: 3rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin: 20px 0 4px; }
.plan .rate small { font-size: 1rem; font-weight: 400; letter-spacing: 0; }
.plan .sub { font-size: .875rem; color: var(--muted); }
.plan.feat .sub { color: rgba(255,255,255,.75); }
.plan ul { list-style: none; margin: 24px 0 32px; display: grid; gap: 10px; flex: 1; font-size: .9rem; }
.plan li { display: flex; gap: 10px; }
.plan li::before { content: "✓"; font-weight: 700; color: var(--hero-btn-deep); }
.plan.feat li::before { color: var(--hero-btn); }
.plan .pill-btn { justify-content: center; }
.plan.feat .pill-btn { background: #fff; color: var(--foreground); }

.cta-band { border-radius: 2rem; background: #1c1c1c; color: #fff; padding: 48px 28px; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.cta-band h2 { font-size: 2rem; font-weight: 400; max-width: 30rem; margin: 0 auto; }
.cta-band p { margin: 16px auto 28px; max-width: 32rem; color: rgba(255,255,255,.8); }
.cta-band .pill-btn { background: #fff; color: var(--foreground); }
@media (min-width: 1024px) { .cta-band { padding: 96px 48px; border-radius: 2.5rem; } .cta-band h2 { font-size: 3rem; } }

/* Page hero */
.page-hero { padding-top: 40px; padding-bottom: 48px; }
.page-hero h1 { font-size: 2.25rem; font-weight: 400; max-width: 36rem; }
.page-hero p { margin-top: 16px; color: var(--muted); max-width: 36rem; font-size: 1.0625rem; }
@media (min-width: 1024px) { .page-hero { padding-top: 72px; padding-bottom: 72px; } .page-hero h1 { font-size: 4rem; } }

.prose { max-width: 44rem; }
.prose h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 12px; }
.prose h3 { font-size: 1.125rem; margin-top: 28px; margin-bottom: 8px; }
.prose p, .prose li { color: var(--muted); font-size: .9875rem; }
.prose p + p { margin-top: 12px; }
.prose ul { padding-left: 20px; margin-top: 8px; display: grid; gap: 6px; }
.prose .meta { font-size: .8125rem; margin-bottom: 8px; }
.prose strong { color: var(--foreground); font-weight: 600; }

/* Forms */
.form { display: grid; gap: 16px; }
.form .two { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form .two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: .8125rem; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; background: #fff; transition: border-color .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--hero-btn-deep); }
.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 64px; } }
.info-card { border-radius: 2rem; background: var(--soft); padding: 32px; display: grid; gap: 20px; align-content: start; }
.info-card h3 { font-size: 1rem; }
.info-card p { font-size: .9rem; color: var(--muted); }
.notice { display: none; border-radius: 14px; background: var(--soft); padding: 14px 16px; font-size: .875rem; }
.notice.show { display: block; }

/* Research */
.rent-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.rent-table th, .rent-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); }
.rent-table th { font-weight: 600; font-size: .8125rem; }
.rent-table td.num { font-variant-numeric: tabular-nums; }
.up { color: hsl(150 60% 38%); } .down { color: hsl(0 70% 50%); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 1.5rem; padding: 8px 12px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 180px; }
.bars div { flex: 1; background: var(--hero-btn); border-radius: 8px 8px 4px 4px; position: relative; transition: height .8s cubic-bezier(.16,1,.3,1); height: 0; }
.bars.in div { height: var(--h); }
.bars div span { position: absolute; bottom: -24px; left: 0; right: 0; text-align: center; font-size: .6875rem; color: var(--muted); }
.qa { border-top: 1px solid var(--line); }
.qa details { border-bottom: 1px solid var(--line); }
.qa summary { cursor: pointer; padding: 18px 0; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-weight: 400; font-size: 1.25rem; color: var(--muted); }
.qa details[open] summary::after { content: "–"; }
.qa .a { padding-bottom: 20px; color: var(--muted); font-size: .9375rem; max-width: 44rem; }
.qa cite { display: block; margin-top: 8px; font-size: .8125rem; font-style: normal; color: var(--hero-btn-deep); }

/* Team */
.founder { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .founder { grid-template-columns: 1fr 1.4fr; gap: 64px; } }
.portrait { border-radius: 2rem; aspect-ratio: 4/5; background: #1c1c1c; position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: flex-end; padding: 28px; color: #fff; }
.portrait .name { font-size: 1.5rem; font-weight: 500; }
.portrait .role { font-size: .875rem; color: rgba(255,255,255,.8); }
.portrait .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 6rem; font-weight: 500; color: rgba(255,255,255,.35); z-index: 1; letter-spacing: -0.05em; }
.timeline { display: grid; gap: 0; margin-top: 8px; }
.timeline div { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); font-size: .9375rem; }
.timeline b { font-weight: 600; }
.timeline span { color: var(--muted); }

/* Footer */
footer { border-top: 1px solid var(--line); padding-top: 56px; padding-bottom: 32px; }
.foot-grid { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-grid h4 { font-size: .8125rem; font-weight: 600; margin-bottom: 14px; }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid li a { font-size: .875rem; opacity: .7; transition: opacity .2s; }
.foot-grid li a:hover { opacity: 1; }
.foot-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .foot-brand { grid-column: auto; } }
.foot-brand p { font-size: .875rem; color: var(--muted); max-width: 20rem; margin-top: 10px; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .8125rem; color: var(--muted); }

/* ===== Additions: richer home ===== */
.phone { position: relative; width: 260px; max-width: 100%; margin: 0 auto; aspect-ratio: 9/19; border-radius: 40px; background: #1c1c1c; padding: 12px; box-shadow: 0 40px 80px -40px hsl(213 60% 30% / .6); isolation: isolate; }
.phone::before { content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 90px; height: 24px; border-radius: 12px; background: #1c1c1c; z-index: 3; }
.phone .screen { position: relative; overflow: hidden; border-radius: 30px; background: var(--background); height: 100%; padding: 60px 14px 14px; display: grid; gap: 10px; align-content: start; }
.phone .screen .row-ui { border-radius: 14px; background: var(--soft); padding: 10px 12px; font-size: .7rem; font-weight: 500; display: flex; justify-content: space-between; opacity: 0; transform: translateY(10px); animation: fade-up .7s cubic-bezier(.16,1,.3,1) forwards; }
.phone .screen .row-ui:nth-child(1) { animation-delay: .3s } .phone .screen .row-ui:nth-child(2) { animation-delay: .5s } .phone .screen .row-ui:nth-child(3) { animation-delay: .7s } .phone .screen .row-ui:nth-child(4) { animation-delay: .9s } .phone .screen .row-ui:nth-child(5) { animation-delay: 1.1s }
.phone .screen .hdr { font-size: .8rem; font-weight: 600; margin-bottom: 4px; }
.phone-stage { position: relative; padding: 40px 0; }
.float { position: absolute; border-radius: 9999px; background: var(--soft); padding: 10px 16px; font-size: .75rem; font-weight: 600; box-shadow: 0 10px 30px -14px hsl(213 60% 30% / .5); animation: bob 5s ease-in-out infinite; white-space: nowrap; }
.float.f1 { left: 0; top: 18%; } .float.f2 { right: 0; top: 40%; animation-delay: 1.2s; } .float.f3 { left: 4%; bottom: 14%; animation-delay: 2.4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 640px) { .float { display: none; } }

.orbit { position: relative; aspect-ratio: 1; max-width: 420px; margin: 0 auto; }
.orbit .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed hsl(213 60% 80%); animation: spin 40s linear infinite; }
.orbit .ring.r2 { inset: 18%; animation-duration: 28s; animation-direction: reverse; }
.orbit .ring.r3 { inset: 36%; animation-duration: 18s; }
.orbit .core { position: absolute; inset: 40%; border-radius: 50%; background: var(--hero-btn); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .875rem; box-shadow: 0 0 0 12px hsl(213 90% 78% / .25), 0 0 0 28px hsl(213 90% 78% / .12); }
.orbit .node { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--line); border-radius: 9999px; padding: 8px 14px; font-size: .75rem; font-weight: 600; white-space: nowrap; animation: unspin 40s linear infinite; }
.orbit .ring.r2 .node { animation-duration: 28s; animation-direction: reverse; }
.orbit .ring.r3 .node { animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes unspin { to { transform: translateX(-50%) rotate(-360deg); } }
@media (prefers-reduced-motion: reduce) { .orbit .ring, .orbit .node, .float, .phone .row-ui { animation: none; opacity: 1; transform: translateX(-50%); } .float, .phone .row-ui { transform: none; } }

.steps { display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step { border-radius: 1.5rem; padding: 28px; background: var(--soft); position: relative; }
.step::before { counter-increment: step; content: counter(step); display: flex; width: 36px; height: 36px; border-radius: 50%; background: var(--foreground); color: #fff; align-items: center; justify-content: center; font-weight: 600; font-size: .875rem; margin-bottom: 18px; }
.step h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.step p { font-size: .875rem; color: var(--muted); }

.compare { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; gap: 20px; } }
.compare .col { border-radius: 2rem; padding: 32px; border: 1px solid var(--line); }
.compare .col.dark { background: #1c1c1c; color: #fff; border-color: #1c1c1c; position: relative; overflow: hidden; isolation: isolate; }
.compare h3 { font-size: 1.125rem; margin-bottom: 16px; }
.compare ul { list-style: none; display: grid; gap: 10px; font-size: .9rem; }
.compare .col:not(.dark) li { color: var(--muted); text-decoration: line-through; text-decoration-color: hsl(0 0% 70%); }
.compare .col.dark li::before { content: "✓ "; color: var(--hero-btn); font-weight: 700; }

.wave { position: relative; height: 80px; overflow: hidden; }
.wave svg { position: absolute; inset: 0; width: 200%; height: 100%; animation: wave 12s linear infinite; }
@keyframes wave { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wave svg { animation: none; } }

.quotebar { border-radius: 2rem; background: var(--soft); padding: 36px; font-size: 1.25rem; font-weight: 400; letter-spacing: -0.01em; max-width: 48rem; }
@media (min-width: 1024px) { .quotebar { font-size: 1.75rem; padding: 56px; } }
.marq-logos { display: flex; flex-wrap: wrap; gap: 14px; }
.marq-logos span { border: 1px solid var(--line); border-radius: 9999px; padding: 8px 16px; font-size: .8125rem; font-weight: 600; }
.plans-mini { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .plans-mini { grid-template-columns: repeat(3,1fr); } }
.plan-mini { border-radius: 1.5rem; border: 1px solid var(--line); padding: 24px; }
.plan-mini .r { font-size: 2rem; font-weight: 500; letter-spacing: -.03em; }
.plan-mini .t { font-weight: 600; font-size: .9375rem; }
.plan-mini .s { font-size: .8125rem; color: var(--muted); margin-top: 6px; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; } }

/* ===== Polish layer: micro-interactions & decorative shapes ===== */
/* Reading progress bar */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--hero-btn), var(--hero-btn-deep)); z-index: 100; transition: width .1s linear; }

/* Sticky glass header */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.75); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: box-shadow .3s, padding .3s; }
.nav.scrolled { box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px hsl(213 60% 30% / .35); }
@media (min-width: 1024px) { .nav.scrolled { padding-top: 14px; padding-bottom: 14px; } }
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo img { width: 28px; height: 28px; border-radius: 50%; box-shadow: 0 0 0 3px hsl(213 90% 78% / .25); transition: transform .4s cubic-bezier(.16,1,.3,1); }
.logo:hover img { transform: rotate(-12deg) scale(1.08); }
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--hero-btn); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }

/* Buttons: shine sweep + arrow nudge */
.pill-btn { position: relative; overflow: hidden; }
.pill-btn::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); transition: left .6s cubic-bezier(.16,1,.3,1); }
.pill-btn:hover::after { left: 130%; }
.pill-btn svg, .outline-btn svg { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.pill-btn:hover svg { transform: translate(2px, -2px); }
.pill-btn:active { transform: scale(.97); }
.arrow-btn svg { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.arrow-btn:hover svg { transform: translate(2px,-2px); }
.link { position: relative; text-decoration: none; }
.link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: currentColor; transform-origin: right; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.link:hover::after { transform: scaleX(0); transform-origin: left; }

/* Eyebrow badge with live dot */
.badge.soft.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.badge.soft.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--hero-btn-deep); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 hsl(213 80% 62% / .5); } 50% { box-shadow: 0 0 0 6px hsl(213 80% 62% / 0); } }

/* Page hero: soft aurora + floating shapes */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -40%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, hsl(213 90% 78% / .35), transparent 65%); filter: blur(20px); z-index: -1; animation: drift 16s ease-in-out infinite; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background-image: radial-gradient(hsl(0 0% 0% / .06) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(ellipse 60% 80% at 85% 40%, #000, transparent); }
.shape { position: absolute; z-index: -1; pointer-events: none; animation: bob 6s ease-in-out infinite; }
.shape.s1 { right: 12%; top: 18%; width: 64px; height: 28px; border-radius: 9999px; background: var(--hero-btn); opacity: .9; }
.shape.s2 { right: 6%; top: 48%; width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--hero-btn-deep); animation-delay: 1.5s; }
.shape.s3 { right: 22%; top: 60%; width: 14px; height: 14px; border-radius: 4px; background: var(--foreground); opacity: .15; transform: rotate(20deg); animation-delay: 3s; }
.shape.s4 { right: 30%; top: 22%; width: 40px; height: 40px; border-radius: 50%; background: var(--soft); animation-delay: 2s; }
@media (max-width: 767px) { .shape { display: none; } .page-hero::before { width: 300px; height: 300px; } }

/* Hero (home) accents */
.hero .content { position: relative; }
.hero .content::before { content: ""; position: absolute; left: -10%; bottom: -20%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, hsl(213 90% 78% / .28), transparent 65%); filter: blur(30px); z-index: -1; pointer-events: none; }
.hero h1 .line .outline-btn { box-shadow: 0 0 0 0 hsl(213 90% 78% / .5); animation: ring 3s ease-out infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 hsl(213 90% 78% / .45); } 70% { box-shadow: 0 0 0 14px hsl(213 90% 78% / 0); } 100% { box-shadow: 0 0 0 0 hsl(213 90% 78% / 0); } }

/* Dark cards: cursor-following glow + gentle lift */
.card, .tile.dark, .plan.feat, .cta-band, .art, .compare .col.dark { --mx: 50%; --my: 50%; }
.card::after, .tile.dark::after, .plan.feat::after, .cta-band::after, .art::after, .compare .col.dark::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(260px circle at var(--mx) var(--my), rgba(255,255,255,.16), transparent 60%); opacity: 0; transition: opacity .4s; }
.card:hover::after, .tile.dark:hover::after, .plan.feat:hover::after, .cta-band:hover::after, .art:hover::after, .compare .col.dark:hover::after { opacity: 1; }
.card, .art { transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s; }
.card:hover, .art:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -40px hsl(213 60% 20% / .6); }
.card > .blob, .art > .blob { transition: transform 1.2s cubic-bezier(.16,1,.3,1); }

/* Light tiles & plans: gradient border on hover */
.tile:not(.dark), .plan:not(.feat), .stat, .step, .plan-mini { position: relative; }
.tile:not(.dark)::before, .plan:not(.feat)::before, .plan-mini::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, var(--hero-btn), transparent 50%, var(--hero-btn-deep)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; pointer-events: none; }
.tile:not(.dark):hover::before, .plan:not(.feat):hover::before, .plan-mini:hover::before { opacity: 1; }
.tile .icon { transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s; }
.tile:hover .icon { transform: rotate(-8deg) scale(1.08); background: var(--hero-btn); color: #fff; }
.tile.dark:hover .icon { background: rgba(255,255,255,.22); }
.stat { overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -20px; bottom: -20px; width: 90px; height: 90px; border-radius: 50%; background: hsl(213 90% 78% / .35); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.stat:hover::after { transform: scale(1.6); }
.stat .v, .stat .l { position: relative; z-index: 1; }
.step { transition: transform .4s cubic-bezier(.16,1,.3,1); }
.step:hover { transform: translateY(-4px); }
.step:hover::before { background: var(--hero-btn-deep); }

/* Staggered reveal for grids */
.tiles.reveal > *, .steps.reveal > *, .stats.reveal > *, .pricing.reveal > *, .plans-mini.reveal > * { opacity: 0; transform: translateY(16px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.tiles.reveal.in > *, .steps.reveal.in > *, .stats.reveal.in > *, .pricing.reveal.in > *, .plans-mini.reveal.in > * { opacity: 1; transform: none; }
.reveal.in > :nth-child(2) { transition-delay: .08s; } .reveal.in > :nth-child(3) { transition-delay: .16s; } .reveal.in > :nth-child(4) { transition-delay: .24s; } .reveal.in > :nth-child(5) { transition-delay: .32s; } .reveal.in > :nth-child(6) { transition-delay: .4s; } .reveal.in > :nth-child(7) { transition-delay: .48s; } .reveal.in > :nth-child(8) { transition-delay: .56s; } .reveal.in > :nth-child(9) { transition-delay: .64s; }

/* UI rows inside art: slide in */
.art .ui-row { opacity: 0; transform: translateX(12px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.art.in .ui-row, .reveal.in .art .ui-row { opacity: 1; transform: none; }
.art .ui-row:nth-child(2) { transition-delay: .1s; } .art .ui-row:nth-child(3) { transition-delay: .2s; } .art .ui-row:nth-child(4) { transition-delay: .3s; }
.ui-row .ok::before, .ui-row .pend::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; vertical-align: middle; background: currentColor; }

/* Accordion */
.qa summary::after { transition: transform .3s cubic-bezier(.16,1,.3,1); }
.qa details[open] summary::after { transform: rotate(180deg); content: "+"; }
.qa details[open] summary { color: var(--hero-btn-deep); }
.qa .a { animation: fade-up .5s cubic-bezier(.16,1,.3,1); }

/* Forms */
.field input, .field textarea, .field select { transition: border-color .2s, box-shadow .2s, transform .2s; }
.field input:focus, .field textarea:focus, .field select:focus { box-shadow: 0 0 0 4px hsl(213 90% 78% / .3); }

/* Table rows */
.rent-table tbody tr { transition: background .2s; }
.rent-table tbody tr:hover { background: var(--soft); }

/* Footer */
footer { position: relative; overflow: hidden; }
footer::before { content: ""; position: absolute; left: 50%; bottom: -260px; width: 700px; height: 400px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, hsl(213 90% 78% / .25), transparent 65%); filter: blur(30px); pointer-events: none; }
.foot-grid li a { display: inline-block; transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .2s; }
.foot-grid li a:hover { transform: translateX(4px); }

/* Back to top */
.to-top { position: fixed; right: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 50%; background: var(--foreground); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s; z-index: 60; box-shadow: 0 10px 30px -10px hsl(0 0% 0% / .4); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--hero-btn-deep); }

/* Selection */
::selection { background: var(--hero-btn); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .page-hero::before, .shape, .badge.soft.eyebrow::before, .hero h1 .line .outline-btn, .pill-btn::after { animation: none; }
  .tiles.reveal > *, .steps.reveal > *, .stats.reveal > *, .pricing.reveal > *, .plans-mini.reveal > *, .art .ui-row { opacity: 1; transform: none; transition: none; }
}

/* ===== Illustrated feature sections (flat illustrations) ===== */
.illus { width: 150px; height: 130px; margin-bottom: 22px; overflow: visible; }
.illus .fl { animation: bob 5s ease-in-out infinite; transform-origin: center; }
.illus .fl2 { animation: bob 6s ease-in-out infinite; animation-delay: 1s; transform-origin: center; }
.illus .spin { animation: spin 14s linear infinite; transform-origin: center; }
.illus .pulse { animation: dot 2.2s ease-in-out infinite; transform-origin: center; }
.illus .pulse:nth-child(2) { animation-delay: .5s } .illus .pulse:nth-child(3) { animation-delay: 1s } .illus .pulse:nth-child(4) { animation-delay: 1.5s }
@keyframes dot { 0%,100% { transform: scale(1); opacity: .7 } 50% { transform: scale(1.35); opacity: 1 } }
.illus .draw { stroke-dasharray: 120; stroke-dashoffset: 120; }
.reveal.in .illus .draw { animation: draw 1.4s cubic-bezier(.16,1,.3,1) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.illus .tick { stroke-dasharray: 60; stroke-dashoffset: 60; }
.reveal.in .illus .tick { animation: draw 1s cubic-bezier(.16,1,.3,1) .6s forwards; }
.illus .grow { transform-origin: bottom; animation: grow 3s ease-in-out infinite; }
.illus .grow:nth-child(2) { animation-delay: .4s } .illus .grow:nth-child(3) { animation-delay: .8s }
@keyframes grow { 0%,100% { transform: scaleY(.85) } 50% { transform: scaleY(1) } }
.illus .swing { transform-origin: top center; animation: swing 4s ease-in-out infinite; }
@keyframes swing { 0%,100% { transform: rotate(-4deg) } 50% { transform: rotate(4deg) } }
.illus .cursor { animation: cursor 4s ease-in-out infinite; }
@keyframes cursor { 0%,100% { transform: translate(0,0) } 40% { transform: translate(-18px,-12px) } 60% { transform: translate(-18px,-12px) scale(.9) } }
.illus-lg { width: 100%; max-width: 420px; height: auto; margin: 0 auto; display: block; overflow: visible; }

.standout { position: relative; }
.standout .grid2 { display: grid; gap: 40px 64px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .standout .grid2 { grid-template-columns: 1fr 1fr; gap: 64px 96px; } }
.standout h2.big, .forwho h2.big { font-size: 2rem; font-weight: 600; text-align: center; margin-bottom: 56px; }
@media (min-width: 1024px) { .standout h2.big, .forwho h2.big { font-size: 3rem; margin-bottom: 80px; } }
.feat h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 14px; }
.feat p { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 34rem; }
.feat p a { color: var(--hero-btn-deep); }
@media (min-width: 1024px) { .feat h3 { font-size: 1.75rem; } }

/* faint decorative shapes scattered behind */
.deco { position: absolute; pointer-events: none; z-index: 0; color: hsl(213 60% 88%); opacity: .8; }
.deco svg { width: 100%; height: 100%; display: block; }
.deco.ring1 { width: 90px; height: 90px; left: 18%; top: -10px; animation: bob 8s ease-in-out infinite; }
.deco.ring2 { width: 130px; height: 130px; left: 42%; top: 55%; animation: bob 10s ease-in-out infinite 2s; }
.deco.ring3 { width: 70px; height: 70px; left: 8%; bottom: 20px; animation: bob 7s ease-in-out infinite 1s; }
.deco.dash1 { width: 80px; height: 30px; left: 40%; top: 22%; transform: rotate(-30deg); }
.deco.dash2 { width: 50px; height: 20px; right: 18%; top: 14%; transform: rotate(80deg); }
.deco.key { width: 90px; height: 60px; right: 6%; bottom: 10%; }
.standout > *:not(.deco) { position: relative; z-index: 1; }
@media (max-width: 767px) { .deco { display: none; } }

.forwho { background: var(--soft); }
.forwho .grid3 { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .forwho .grid3 { grid-template-columns: repeat(3, 1fr); gap: 48px; } }

.simple { background: var(--soft); }
.simple .split p strong { color: var(--foreground); font-weight: 600; }
.avail { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 28px; font-size: .9375rem; color: var(--muted); }
.avail .os { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--foreground); box-shadow: 0 6px 16px -10px hsl(213 60% 30% / .5); transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, color .3s; }
.avail .os:hover { transform: translateY(-4px); background: var(--hero-btn); color: #fff; }
.avail .os svg { width: 20px; height: 20px; }

.nolog h2 { font-size: 2rem; font-weight: 600; }
@media (min-width: 1024px) { .nolog h2 { font-size: 3rem; } }
.nolog p { color: var(--muted); font-size: 1.0625rem; line-height: 1.85; margin-top: 18px; }
.nolog p strong { color: var(--foreground); font-weight: 600; }
.nolog p a { color: var(--hero-btn-deep); }
.illus-lg .scan { animation: scan 3s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: translateY(0) } 50% { transform: translateY(22px) } }
.illus-lg .shimmer-line { animation: lineflash 3s ease-in-out infinite; }
.illus-lg .shimmer-line:nth-of-type(2) { animation-delay: .4s } .illus-lg .shimmer-line:nth-of-type(3) { animation-delay: .8s }
@keyframes lineflash { 0%,100% { opacity: .35 } 50% { opacity: 1 } }
.illus-lg .device { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.illus-lg .d1 { animation: bob 6s ease-in-out infinite } .illus-lg .d2 { animation: bob 7s ease-in-out infinite 1s } .illus-lg .d3 { animation: bob 5.5s ease-in-out infinite 2s } .illus-lg .d4 { animation: bob 6.5s ease-in-out infinite .5s }
@media (prefers-reduced-motion: reduce) { .illus *, .illus-lg *, .deco { animation: none !important; } .illus .draw, .illus .tick { stroke-dashoffset: 0; } }

/* ===== Professional pass: type scale, rhythm, surfaces ===== */
:root { --shadow-soft: 0 24px 48px -32px hsl(213 60% 30% / .35); --radius-lg: 2rem; --radius-md: 1.5rem; }
body { font-size: 1rem; line-height: 1.65; }
h1, h2, h3, h4 { letter-spacing: -0.03em; }

/* Unified section rhythm: no top padding; consistent bottom gap */
.section { padding-top: 0; padding-bottom: 88px; }
.ticker-wrap { margin-bottom: 88px; }
.page-hero { padding-bottom: 56px; }
.section.forwho, .section.simple { padding-top: 88px; padding-bottom: 88px; margin-bottom: 88px; }
.section.standout { padding-top: 8px; }
@media (min-width: 1024px) {
  .section { padding-bottom: 128px; }
  .ticker-wrap { margin-bottom: 128px; }
  .page-hero { padding-bottom: 80px; }
  .section.forwho, .section.simple { padding-top: 112px; padding-bottom: 112px; margin-bottom: 128px; }
}
.section.nolog { padding-bottom: 88px; }

/* Unified heading scale */
.section-head h2, .standout h2.big, .forwho h2.big, .nolog h2, .split h2, .cta-band h2, .page-hero h1 { font-weight: 500; }
.section-head h2, .standout h2.big, .forwho h2.big, .nolog h2 { font-size: 2.125rem; line-height: 1.1; }
.split h2 { font-size: 1.875rem; line-height: 1.12; }
.cta-band h2 { font-size: 2.125rem; }
.section-head p, .split > div > p, .nolog p, .feat p, .tile p, .step p, .plan .sub { color: var(--muted); }
.feat h3, .tile h3, .step h3, .plan h3, .card-sm h3 { font-weight: 500; }
.feat h3 { font-size: 1.375rem; }
.feat p { font-size: .9875rem; line-height: 1.75; }
.standout h2.big, .forwho h2.big { margin-bottom: 48px; }
@media (min-width: 1024px) {
  .section-head h2, .standout h2.big, .forwho h2.big, .nolog h2 { font-size: 3rem; }
  .split h2 { font-size: 2.5rem; }
  .cta-band h2 { font-size: 3rem; }
  .feat h3 { font-size: 1.5rem; }
  .standout h2.big, .forwho h2.big { margin-bottom: 72px; }
}
.section-head { margin-bottom: 40px; }
@media (min-width: 1024px) { .section-head { margin-bottom: 56px; } }

/* Hero refinements */
.hero .bottom p { color: var(--muted); opacity: 1; }
.logos { gap: 10px 28px; margin-top: 28px; }
.logos span { font-size: .875rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.logos span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--hero-btn); margin-right: 8px; vertical-align: middle; }

/* Surfaces: consistent radius and hover shadow */
.tile, .plan, .stat, .step, .plan-mini, .info-card, .table-wrap, .quotebar, .compare .col { border-radius: var(--radius-md); }
@media (min-width: 1024px) { .tile, .plan, .compare .col, .info-card, .cta-band, .art, .portrait { border-radius: var(--radius-lg); } }
.tile:hover { box-shadow: var(--shadow-soft); }
.tile.dark:hover { box-shadow: 0 30px 60px -40px hsl(0 0% 0% / .6); }

/* Compare: quieter light column */
.compare .col:not(.dark) { background: var(--soft); border-color: transparent; }
.compare .col:not(.dark) h3 { color: var(--muted); }
.compare .col:not(.dark) li { text-decoration-color: hsl(213 30% 75%); }

/* Ticker: lighter */
.ticker-wrap { border-color: var(--line); padding: 16px 0; }
.ticker span { font-size: .8125rem; letter-spacing: .01em; opacity: .55; }

/* Buttons: consistent height */
.pill-btn { padding: 12px 22px; line-height: 1.2; }
.pill-btn.sm { padding: 10px 18px; }
.outline-btn { line-height: 1.2; }

/* Forms & cards */
.info-card { background: var(--soft); }
.field input, .field textarea, .field select { border-radius: 12px; }

/* Footer polish */
footer { padding-top: 64px; }
.foot-meta { margin-top: 6px !important; font-size: .8125rem !important; color: var(--muted); }
.foot-grid h4 { text-transform: none; letter-spacing: 0; color: var(--foreground); }
.foot-bottom { font-size: .8125rem; }

/* Nav: refine */
.nav-links a { font-weight: 500; opacity: .75; }
.nav-right .login { font-weight: 500; }

/* Decorative shapes: subtler */
.deco { opacity: .55; }
.shape.s1 { opacity: .75; }
.page-hero::before { opacity: .8; }

/* ===== Fix: content always above decorative blobs in every dark surface ===== */
.z { position: relative; z-index: 10; }
.card, .tile.dark, .plan.feat, .cta-band, .art, .compare .col.dark, .portrait { isolation: isolate; }
.card .blob, .tile.dark .blob, .plan.feat .blob, .cta-band .blob, .art .blob, .compare .col.dark .blob, .portrait .blob { z-index: 0; opacity: .7; }
.grid-lines { z-index: 1; }
/* soft dark scrim between blobs and text for guaranteed contrast */
.card::before, .tile.dark::before, .plan.feat::before, .cta-band::before, .art::before, .compare .col.dark::before, .portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,20,20,.15) 0%, rgba(20,20,20,.45) 100%);
}
.art::before { background: linear-gradient(180deg, rgba(20,20,20,.05) 0%, rgba(20,20,20,.35) 100%); }
.cta-band .z, .compare .col.dark .z, .tile.dark .z, .plan.feat .z { text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.cta-band h2, .compare .col.dark h3, .compare .col.dark li, .tile.dark h3, .plan.feat h3, .plan.feat .rate { color: #fff; }
.cta-band p, .tile.dark p { color: rgba(255,255,255,.88); }
.compare .col.dark li { color: rgba(255,255,255,.95); }
.compare .col.dark li::before { color: hsl(213 90% 82%); }
.art .ui { z-index: 10; }
/* blobs: keep palette in the site's blue family */
.blob.a { background: hsl(213 85% 58%); }
.blob.b { background: hsl(205 80% 66%); }
.blob.c { background: hsl(222 70% 62%); }

/* ===== Fix: orbit graphic — explicit box, robust sizing ===== */
.orbit { position: relative; width: min(100%, 440px); max-width: none; aspect-ratio: auto; margin: 0 auto; }
.orbit::before { content: ""; display: block; padding-top: 100%; }
.orbit .ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed hsl(213 60% 78%); }
.orbit .ring.r2 { inset: 17%; }
.orbit .ring.r3 { inset: 34%; }
.orbit .core { position: absolute; inset: 41%; border-radius: 50%; background: var(--hero-btn-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .9375rem; letter-spacing: -.01em; box-shadow: 0 0 0 10px hsl(213 90% 78% / .22), 0 0 0 24px hsl(213 90% 78% / .1); }
.orbit .node { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: #fff; border: 1px solid var(--line); border-radius: 9999px; padding: 8px 14px; font-size: .75rem; font-weight: 600; white-space: nowrap; box-shadow: 0 8px 20px -12px hsl(213 60% 30% / .4); color: var(--foreground); }
.orbit .ring.r1 { animation: spin 40s linear infinite; } .orbit .ring.r1 .node { animation: unspin2 40s linear infinite; }
.orbit .ring.r2 { animation: spin 28s linear infinite reverse; } .orbit .ring.r2 .node { animation: unspin2 28s linear infinite reverse; }
.orbit .ring.r3 { animation: spin 18s linear infinite; } .orbit .ring.r3 .node { animation: unspin2 18s linear infinite; }
@keyframes unspin2 { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-360deg); } }
.orbit .ring.r2 .node { animation-name: unspin2r; }
@keyframes unspin2r { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit .ring.r2 { animation-direction: normal; animation-name: spinr; }
@keyframes spinr { to { transform: rotate(-360deg); } }
.orbit .ring.r2 .node { animation-direction: normal; }
.orbit .dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--hero-btn); }
.orbit .ring.r1 .dot { left: 50%; bottom: 0; transform: translate(-50%, 50%); }
.orbit .ring.r2 .dot { right: 0; top: 50%; transform: translate(50%, -50%); }
.orbit .ring.r3 .dot { left: 0; top: 50%; transform: translate(-50%, -50%); }
@media (max-width: 640px) { .orbit .node { font-size: .6875rem; padding: 6px 10px; } .orbit .core { font-size: .8125rem; } }
@media (prefers-reduced-motion: reduce) { .orbit .ring, .orbit .node { animation: none !important; } }

/* ===== Spacing tightening (final rhythm) ===== */
.section { padding-bottom: 64px; }
.ticker-wrap { margin-bottom: 64px; }
.page-hero { padding-top: 32px; padding-bottom: 40px; }
.section.forwho, .section.simple { padding-top: 64px; padding-bottom: 64px; margin-bottom: 64px; }
.section.standout { padding-top: 0; }
.standout .grid2 { gap: 40px 48px; }
.standout h2.big, .forwho h2.big { margin-bottom: 40px; }
.section-head { margin-bottom: 32px; }
.split { gap: 32px; }
.illus { margin-bottom: 16px; }
.feat p { max-width: 30rem; }
.section-head h2, .standout h2.big, .forwho h2.big, .nolog h2 { font-size: 2rem; }
.split h2 { font-size: 1.75rem; }
.cta-band h2 { font-size: 2rem; }
.cta-band { padding: 56px 28px; }
footer { padding-top: 48px; }
.foot-bottom { margin-top: 36px; }
@media (min-width: 1024px) {
  .section { padding-bottom: 96px; }
  .ticker-wrap { margin-bottom: 96px; }
  .page-hero { padding-top: 56px; padding-bottom: 56px; }
  .section.forwho, .section.simple { padding-top: 88px; padding-bottom: 88px; margin-bottom: 96px; }
  .standout .grid2 { gap: 56px 96px; }
  .standout h2.big, .forwho h2.big { margin-bottom: 56px; }
  .section-head { margin-bottom: 44px; }
  .split { gap: 64px; }
  .section-head h2, .standout h2.big, .forwho h2.big, .nolog h2 { font-size: 2.625rem; }
  .split h2 { font-size: 2.25rem; }
  .cta-band h2 { font-size: 2.625rem; }
  .cta-band { padding: 80px 48px; }
  .page-hero h1 { font-size: 3.5rem; }
}
/* Section heads: wider measure so headings don't stack into 3 lines */
.section-head { max-width: 46rem; }
.section-head h2 { text-wrap: balance; }
/* Illustrated grid rows align at top; decorations never add height */
.standout .grid2 > .feat { align-self: start; }
.deco { max-height: 0; overflow: visible; }
.deco svg { height: auto; }
.deco.ring1 { width: 80px; } .deco.ring2 { width: 110px; top: 50%; } .deco.ring3 { width: 60px; }
.deco.key { width: 80px; }

/* ===== CTA groups: global layout + secondary button style ===== */
.ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding-top: 24px; }
.ctas .link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 9999px; border: 1.5px solid var(--line); background: #fff; font-size: .875rem; font-weight: 600; color: var(--foreground); text-decoration: none; transition: border-color .25s, background .25s, transform .25s cubic-bezier(.16,1,.3,1); line-height: 1.2; }
.ctas .link::after { content: none; }
.ctas .link:hover { border-color: var(--hero-btn-deep); background: var(--soft); transform: translateY(-1px); }
.ctas .link::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--hero-btn); }
.hero .ctas .link { border: 0; background: transparent; padding: 11px 4px; }
.hero .ctas .link::before { content: none; }
.hero .ctas .link { text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--hero-btn); text-decoration-thickness: 1.5px; }
.hero .ctas .link:hover { transform: none; text-decoration-color: var(--foreground); }

/* ===== Button system (final) ===== */
button, .pill-btn, .outline-btn, .link, .arrow-btn, .badge, .avail .os, .to-top { letter-spacing: 0 !important; word-spacing: normal; font-family: inherit; }
h1 .outline-btn, h1 .pill-btn { letter-spacing: 0 !important; line-height: 1.2; font-weight: 500; }

/* Primary */
.pill-btn { background: linear-gradient(180deg, hsl(213 90% 80%), hsl(213 88% 72%)); color: #fff; font-weight: 600; font-size: .9375rem; padding: 13px 24px; border-radius: 9999px; box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 8px 20px -10px hsl(213 80% 55% / .6); transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, filter .25s; }
.pill-btn:hover { opacity: 1; filter: brightness(1.04); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 14px 28px -12px hsl(213 80% 55% / .7); }
.pill-btn:active { transform: translateY(0) scale(.985); }
.pill-btn.sm { padding: 10px 18px; font-size: .875rem; }
.pill-btn svg { width: 16px; height: 16px; }
.cta-band .pill-btn, .plan.feat .pill-btn { background: #fff; color: var(--foreground); box-shadow: 0 10px 24px -14px rgba(0,0,0,.5); }

/* Secondary (outline) — used inside the hero headline */
.outline-btn { border: 1.5px solid var(--foreground); background: #fff; padding: 10px 18px; font-size: .9375rem; font-weight: 500; border-radius: 9999px; gap: 10px; animation: none !important; box-shadow: none; transition: background .25s, color .25s, transform .25s cubic-bezier(.16,1,.3,1); }
.outline-btn:hover { background: var(--foreground); color: #fff; transform: translateY(-1px); }
.outline-btn svg { width: 14px; height: 14px; }
.hero h1 .line .outline-btn { box-shadow: none; }
@media (min-width: 1024px) { .outline-btn { padding: 12px 22px; font-size: 1.0625rem; } .hero h1 .line { gap: 16px; } }

/* Tertiary (ghost pill) — "See pricing" and similar */
.link, .hero .ctas .link, .ctas .link { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 9999px; border: 1.5px solid var(--line); background: #fff; color: var(--foreground); font-size: .9375rem; font-weight: 600; text-decoration: none !important; transition: border-color .25s, background .25s, transform .25s cubic-bezier(.16,1,.3,1); line-height: 1.2; }
.link::after, .hero .ctas .link::after { content: none !important; }
.link::before, .ctas .link::before, .hero .ctas .link::before { content: "→"; font-weight: 500; width: auto; height: auto; background: none; border-radius: 0; order: 2; transition: transform .25s cubic-bezier(.16,1,.3,1); }
.link:hover, .hero .ctas .link:hover { border-color: var(--foreground); background: var(--soft); transform: translateY(-1px); text-decoration: none; }
.link:hover::before { transform: translateX(3px); }
.nav .login { display: inline; padding: 0; border: 0; background: none; }
.prose .link, .qa .link, p .link:not(.ctas .link) { display: inline; padding: 0; border: 0; background: none; text-decoration: underline !important; text-underline-offset: 4px; }
.prose .link::before, p .link::before { content: none; }

/* Circle arrow buttons */
.arrow-btn { box-shadow: 0 8px 18px -10px rgba(0,0,0,.35); }
.arrow-btn:hover { background: var(--hero-btn); color: #fff; transform: scale(1.06); }

/* Focus rings for all buttons */
.pill-btn:focus-visible, .outline-btn:focus-visible, .link:focus-visible, .arrow-btn:focus-visible { outline: 2px solid var(--hero-btn-deep); outline-offset: 3px; }
