/* Numbers, bento, pricing, request form, FAQ, CTA */

/* ---------- Numbers ---------- */
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); padding-bottom: clamp(5rem, 10vw, 9rem); }
.num { padding: 2.2rem 1.4rem 0 0; border-right: 1px solid var(--line); }
.num + .num { padding-left: 1.6rem; }
.num:last-child { border-right: 0; }
.num b { display: block; font: 400 clamp(3.4rem, 6.4vw, 6.4rem)/.9 var(--serif); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.num span { display: block; margin-top: 1rem; color: var(--muted); max-width: 18ch; }
@media (max-width: 800px) { .numbers { grid-template-columns: 1fr 1fr; } .num:nth-child(2) { border-right: 0; } .num:nth-child(n+3) { border-top: 1px solid var(--line); } .num:nth-child(3) { padding-left: 0; } }

/* ---------- Bento ---------- */
.features { padding-bottom: clamp(5rem, 10vw, 9rem); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tile { position: relative; min-height: 320px; padding: 2rem; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; isolation: isolate; }
.tile.t-wide { grid-column: span 2; }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .5s;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,31,.13), transparent 60%); }
.tile::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; opacity: 0; transition: opacity .5s; pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,31,.7), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.tile:hover::before, .tile:hover::after { opacity: 1; }
.tile h3 { font: 500 1.35rem/1.2 var(--sans); letter-spacing: -.025em; margin: auto 0 .5rem; }
.tile p { margin: 0; color: var(--muted); max-width: 40ch; }
.tile-art { height: 120px; display: flex; align-items: center; margin-bottom: 1.6rem; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .tile.t-wide { grid-column: auto; } .tile { min-height: 280px; } }

.art-stars { gap: .4rem; font-size: 3.4rem; color: #ffc44d; }
.art-stars span { display: inline-block; animation: star 2.8s var(--ease-out) infinite; }
.art-stars span:nth-child(2) { animation-delay: .1s; } .art-stars span:nth-child(3) { animation-delay: .2s; } .art-stars span:nth-child(4) { animation-delay: .3s; } .art-stars span:nth-child(5) { animation-delay: .4s; }
@keyframes star { 0%, 60%, 100% { transform: scale(1) rotate(0); filter: none; } 20% { transform: scale(1.25) rotate(-12deg); filter: drop-shadow(0 0 14px rgba(255,196,77,.7)); } }
.art-gauge svg { width: 150px; fill: none; stroke-width: 7; stroke-linecap: round; }
.art-gauge path { stroke: var(--bg-3); }
.art-gauge .g-fill { stroke: var(--good); stroke-dasharray: 126; stroke-dashoffset: 126; transition: stroke-dashoffset 1.6s var(--ease-out); }
.art-gauge .needle { stroke: var(--fg); stroke-width: 3; transform-origin: 50px 55px; transform: rotate(-80deg); transition: transform 1.6s var(--ease-out); }
.tile.in .art-gauge .g-fill { stroke-dashoffset: 4; }
.tile.in .art-gauge .needle { transform: rotate(78deg); }
.art-ring { position: relative; width: 120px; justify-content: center; color: var(--accent); }
.art-ring svg { width: 52px; height: 52px; animation: wiggle 2.4s ease-in-out infinite; }
.art-ring::before, .art-ring::after { content: ""; position: absolute; left: 50%; top: 50%; width: 70px; height: 70px; margin: -35px; border-radius: 50%; border: 1px solid var(--accent); animation: ring 2.4s var(--ease-out) infinite; }
.art-ring::after { animation-delay: .6s; }
@keyframes wiggle { 0%, 40%, 100% { transform: rotate(0); } 5%, 15%, 25% { transform: rotate(-14deg); } 10%, 20%, 30% { transform: rotate(14deg); } }
.art-pin { position: relative; width: 120px; justify-content: center; color: var(--accent); }
.art-pin svg { width: 50px; height: 50px; position: relative; z-index: 1; animation: drop 2.6s var(--ease-out) infinite; }
.art-pin i { position: absolute; left: 50%; bottom: 22px; width: 60px; height: 18px; margin-left: -30px; border-radius: 50%; border: 1px solid var(--accent); animation: ring 2.6s var(--ease-out) infinite; }
@keyframes drop { 0% { transform: translateY(-40px); opacity: 0; } 25% { transform: translateY(0); opacity: 1; } 32% { transform: translateY(-8px); } 40%, 85% { transform: translateY(0); opacity: 1; } 100% { opacity: 0; } }
.art-stack { flex-wrap: wrap; align-content: center; gap: .6rem; }
.art-stack span { font: 500 .8rem/1 var(--mono); padding: .7rem 1rem; border-radius: 99px; border: 1px solid var(--line-2); color: var(--fg-2); opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), border-color .3s, color .3s; }
.art-stack span:hover { border-color: var(--accent); color: var(--fg); }
.tile.in .art-stack span { opacity: 1; transform: none; }
.art-stack span:nth-child(2) { transition-delay: .08s; } .art-stack span:nth-child(3) { transition-delay: .16s; } .art-stack span:nth-child(4) { transition-delay: .24s; } .art-stack span:nth-child(5) { transition-delay: .32s; } .art-stack span:nth-child(6) { transition-delay: .4s; }

/* ---------- Pricing ---------- */
@property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.pricing { padding-bottom: clamp(5rem, 10vw, 9rem); }
.plans { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; perspective: 1400px; }
.plan { position: relative; padding: clamp(1.8rem, 3.4vw, 3rem); border-radius: 30px; background: var(--bg-2); border: 1px solid var(--line); display: flex; flex-direction: column; transform-style: preserve-3d; will-change: transform; }
.plan-hot { border-color: transparent; background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, conic-gradient(from var(--angle), transparent 0 60%, var(--accent) 80%, #ffc2a8 88%, transparent 100%) border-box; border: 1.5px solid transparent; animation: spin-border 5s linear infinite; }
@keyframes spin-border { to { --angle: 360deg; } }
.plan-top { display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem; }
.plan-top h3 { font: 500 1.5rem/1 var(--sans); letter-spacing: -.03em; }
.plan-tag { font: 500 .7rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; padding: .55rem .8rem; border-radius: 99px; background: var(--accent); color: #0a0a0b; }
.plan-tag.soft { background: var(--bg-3); color: var(--fg-2); }
.plan-price { display: flex; align-items: baseline; gap: .8rem; margin: 2rem 0 .3rem; }
.plan-price b { font: 400 clamp(4.4rem, 8vw, 7rem)/.85 var(--serif); letter-spacing: -.04em; }
.plan-price s { font: 400 1.8rem/1 var(--serif); color: var(--muted); }
.plan-price small { font-size: 1.1rem; color: var(--muted); }
.plan-sub { margin: 0; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 2.2rem 0 2.4rem; display: grid; gap: .85rem; }
.plan li { display: flex; gap: .8rem; align-items: baseline; color: var(--fg-2); }
.plan li::before { content: ""; flex: none; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg) translateY(-3px); }
.plan .btn { margin-top: auto; align-self: flex-start; }
.guarantee { margin-top: 1rem; display: flex; align-items: center; gap: 1.6rem; padding: 1.4rem 2rem 1.4rem 1.4rem; border-radius: 24px; border: 1px dashed var(--line-2); }
.guarantee p { margin: 0; color: var(--fg-2); } .guarantee strong { color: var(--fg); font-weight: 600; }
.seal { position: relative; flex: none; width: 96px; height: 96px; display: grid; place-items: center; }
.seal svg { position: absolute; inset: 0; animation: spin 16s linear infinite; }
.seal text { font: 500 8.6px var(--mono); letter-spacing: 1.6px; fill: var(--accent); }
.seal b { font-size: 1.6rem; color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .guarantee { flex-direction: column; align-items: flex-start; } }

/* ---------- Request ---------- */
.request { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; padding-bottom: clamp(5rem, 10vw, 9rem); }
.request-copy h2 { margin: 1rem 0 1.5rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 1.6rem; padding: clamp(1.8rem, 3.4vw, 3rem); border-radius: 30px; background: var(--bg-2); border: 1px solid var(--line); }
.field { position: relative; }
.field-wide, .form .btn, .form-note, .form-error { grid-column: 1 / -1; }
.field input, .field select { width: 100%; height: 54px; padding: 18px 0 6px; background: transparent; border: 0; border-bottom: 1px solid var(--line-2); color: var(--fg); font: 400 1.05rem/1 var(--sans); border-radius: 0; appearance: none; outline: none; }
.field select option { background: var(--bg-2); color: var(--fg); }
.field label { position: absolute; left: 0; top: 22px; color: var(--muted); pointer-events: none; transform-origin: left; transition: transform .45s var(--ease-out), color .3s; }
.field::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.field:focus-within::after { transform: scaleX(1); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field select:focus + label, .field select:valid + label { transform: translateY(-22px) scale(.78); color: var(--fg-2); }
.field select { cursor: pointer; }
.form .btn { justify-self: start; }
.form-note { color: var(--muted); font-size: .85rem; } .form-note a { color: var(--fg-2); text-decoration: underline; text-underline-offset: 3px; }
.form-error { margin: -1rem 0 0; color: #ff8a7a; font-size: .9rem; min-height: 0; }
.form-error:empty { display: none; }
@media (max-width: 900px) { .request { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { padding-bottom: clamp(5rem, 10vw, 9rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: clamp(1.4rem, 2.6vw, 2rem) 0; font: 400 clamp(1.25rem, 2.2vw, 1.8rem)/1.2 var(--sans); letter-spacing: -.03em; transition: color .3s, padding .5s var(--ease-out); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); padding-left: .6rem; }
.faq summary i { position: relative; flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .5s var(--ease-out), background .3s, border-color .3s; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; margin: -.75px 0 0 -7px; background: currentColor; }
.faq summary i::after { transform: rotate(90deg); transition: transform .5s var(--ease-out); }
.faq details[open] summary i { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); color: #0a0a0b; }
.faq details[open] summary i::after { transform: rotate(0); }
.faq-a { overflow: hidden; }
.faq-a p { margin: 0 0 2rem; max-width: 62ch; color: var(--fg-2); font-size: 1.05rem; }

/* ---------- CTA ---------- */
.cta { border-top: 1px solid var(--line); padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 9rem); overflow: hidden; }
.cta-marquee { overflow: hidden; }
.cta-marquee > div { display: flex; align-items: center; gap: 3vw; width: max-content; font: italic 400 clamp(5rem, 15vw, 15rem)/1 var(--serif); letter-spacing: -.04em; white-space: nowrap; }
.cta-marquee i { font-style: normal; font-size: .3em; color: var(--accent); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: clamp(2rem, 5vw, 4rem); }
.cta-orb { position: relative; flex: none; width: clamp(150px, 16vw, 210px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #0a0a0b; transition: background .5s var(--ease-out); }
.cta-orb:hover { background: var(--fg); }
.cta-orb svg { position: absolute; inset: 8%; animation: spin 14s linear infinite; }
.cta-orb text { font: 600 11px var(--mono); letter-spacing: 2.2px; fill: #0a0a0b; }
.cta-orb span { font-size: 2.6rem; transition: transform .6s var(--ease-out); }
.cta-orb:hover span { transform: rotate(45deg); }
@media (max-width: 640px) { .cta-inner { flex-direction: column; align-items: flex-start; } }

@media (prefers-reduced-motion: reduce) {
  .art-gauge .g-fill { stroke-dashoffset: 4; } .art-gauge .needle { transform: rotate(78deg); }
  .art-stack span { opacity: 1; transform: none; }
}
