/* ERB One — erb.one — "Voxel Builder World" theme
   Deep charcoal, grass-green + dirt-brown block accents, glowing cyan for god-mode elements.
   Pixel display font (Pixelify Sans) for headings, Inter for body. Original voxel art via voxel.js. */

:root {
  color-scheme: dark;
  --bg: #121417;
  --bg-2: #171a1f;
  --bg-3: #1d2128;
  --line: #2a2f38;
  --line-2: #3a414c;
  --ink: #0b0c0e;
  --text: #e8eaee;
  --text-2: #aab1bd;
  --text-3: #7c8594;
  --grass: #5fbf4a;
  --grass-2: #3f9a2f;
  --grass-3: #2e7d22;
  --dirt: #8a5a33;
  --dirt-2: #5e3d22;
  --cyan: #22d3ee;
  --cyan-2: #0ea5b7;
  --cyan-soft: rgba(34,211,238,.14);
  --glow: 0 0 10px rgba(34,211,238,.85), 0 0 28px rgba(34,211,238,.45);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pixel: "Pixelify Sans", "Silkscreen", ui-monospace, monospace;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --wrap: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px;
  overflow-x: clip; -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--pixel); font-weight: 600; line-height: 1.05; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(44px, 9vw, 112px); }
h2 { font-size: clamp(30px, 4.6vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); }
h4 { font-size: 20px; }
.wrap { width: min(100% - 2*var(--gutter), var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--grass); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.glow { color: var(--cyan); text-shadow: var(--glow); }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--pixel); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--grass); margin-bottom: 16px; }
.kicker::before { content: ""; width: 12px; height: 12px; background: var(--grass); box-shadow: 3px 3px 0 var(--grass-3); }
.kicker--cyan { color: var(--cyan); } .kicker--cyan::before { background: var(--cyan); box-shadow: 3px 3px 0 var(--cyan-2), var(--glow); }
.lead { color: var(--text-2); font-size: clamp(17px, 1.5vw, 20px); max-width: 62ch; }
section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 780px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head .lead { margin-top: 14px; }

/* ---------- block buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px;
  font-family: var(--pixel); font-size: 19px; letter-spacing: .02em; line-height: 1;
  color: var(--ink); background: var(--grass); border: 0; cursor: pointer;
  box-shadow: inset 0 3px 0 rgba(255,255,255,.35), inset 0 -3px 0 rgba(0,0,0,.18), 0 6px 0 var(--grass-3), 6px 6px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
  text-transform: uppercase;
}
.btn:hover { transform: translate(0, 2px); box-shadow: inset 0 3px 0 rgba(255,255,255,.35), inset 0 -3px 0 rgba(0,0,0,.18), 0 4px 0 var(--grass-3), 4px 4px 0 var(--ink); }
.btn:active { transform: translate(0, 6px); box-shadow: inset 0 3px 0 rgba(255,255,255,.35), inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 var(--grass-3), 0 0 0 var(--ink); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: square; }
.btn--cyan { background: var(--cyan); box-shadow: inset 0 3px 0 rgba(255,255,255,.45), inset 0 -3px 0 rgba(0,0,0,.18), 0 6px 0 var(--cyan-2), 6px 6px 0 var(--ink), 0 0 24px rgba(34,211,238,.35); }
.btn--cyan:hover { box-shadow: inset 0 3px 0 rgba(255,255,255,.45), inset 0 -3px 0 rgba(0,0,0,.18), 0 4px 0 var(--cyan-2), 4px 4px 0 var(--ink), 0 0 30px rgba(34,211,238,.5); }
.btn--cyan:active { box-shadow: inset 0 3px 0 rgba(255,255,255,.45), inset 0 -3px 0 rgba(0,0,0,.18), 0 0 0 var(--cyan-2), 0 0 0 var(--ink); }
.btn--sm { padding: 11px 16px; font-size: 16px; }
.link { font-family: var(--pixel); font-size: 18px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; border-bottom: 3px solid var(--line-2); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.link:hover { color: var(--cyan); border-color: var(--cyan); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(18,20,23,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 3px solid var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--pixel); font-size: 24px; line-height: 1; }
.brand__mark { width: 30px; height: 30px; image-rendering: pixelated; }
.brand b { color: var(--cyan); font-weight: 600; }
.nav__links { display: flex; gap: 4px; }
.nav__links a { padding: 8px 12px; font-family: var(--pixel); font-size: 17px; color: var(--text-2); border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); border-color: var(--grass); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 42px; height: 42px; border: 3px solid var(--line-2); background: var(--bg-2); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 3px; background: var(--text); transition: transform .25s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile { display: none; flex-direction: column; padding: 6px var(--gutter) 16px; border-top: 3px solid var(--line); background: var(--bg-2); }
.mobile a { padding: 12px 4px; font-family: var(--pixel); font-size: 20px; border-bottom: 1px solid var(--line); }
.mobile a:last-child { border: 0; }
.mobile:not([hidden]) { display: flex; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: calc(100vh - 70px); min-height: calc(100svh - 70px); display: grid; align-items: center; padding: clamp(40px, 6vw, 80px) 0; overflow: clip; }
.hero__in { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__title { text-transform: uppercase; line-height: .95; }
.hero__title .cursor { display: inline-block; width: .5em; height: .85em; background: var(--cyan); box-shadow: var(--glow); vertical-align: -.05em; margin-left: .12em; animation: blink 1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
.hero__sub { margin-top: 22px; font-family: var(--pixel); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.2; color: var(--text); }
.hero__sup { margin-top: 18px; color: var(--text-2); font-size: clamp(17px, 1.5vw, 20px); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.hero__scene { position: relative; }
.hero__scene [data-voxel] { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.5)); }
.hero__scene::before { content: ""; position: absolute; inset: 20% 10% 0; background: radial-gradient(closest-side, rgba(34,211,238,.18), transparent); filter: blur(30px); z-index: -1; }

/* page hero (subpages) */
.phero { padding: clamp(40px, 6vw, 72px) 0; border-bottom: 3px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.phero__in { display: grid; grid-template-columns: 1.4fr .7fr; gap: clamp(20px, 4vw, 56px); align-items: center; }
.phero h1 { font-size: clamp(34px, 5.5vw, 66px); text-transform: uppercase; }
.phero .lead { margin-top: 16px; }
.phero__art [data-voxel] { width: min(100%, 320px); margin-inline: auto; }

/* ---------- voxel svg + snap animation ---------- */
.vx { width: 100%; height: auto; overflow: visible; }
.js .vx-c { opacity: 0; transform: translateY(-40px); }
.js .built .vx-c { animation: snap .55s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes snap { 0% { opacity: 0; transform: translateY(-40px); } 70% { opacity: 1; transform: translateY(3px); } 100% { opacity: 1; transform: translateY(0); } }
.vx-resnap { animation: resnap .5s var(--ease) !important; animation-delay: 0ms !important; }
@keyframes resnap { 0% { transform: translateY(-14px); } 60% { transform: translateY(2px); } 100% { transform: translateY(0); } }
.vx-float { animation: floaty 3.2s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.vx-glow { filter: drop-shadow(0 0 6px rgba(34,211,238,.9)) drop-shadow(0 0 16px rgba(34,211,238,.5)); }
.vx-lit polygon { filter: drop-shadow(0 0 4px currentColor); }
.vx-lit { color: var(--cyan); animation: lit 2.2s ease-in-out infinite; }
@keyframes lit { 50% { opacity: .6; } }

/* ---------- block cards ---------- */
.card {
  position: relative; background: var(--bg-2); border: 3px solid var(--line);
  box-shadow: 8px 8px 0 var(--ink); transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s;
}
.card::before { content: ""; position: absolute; left: -3px; right: -3px; top: -3px; height: 10px; background: var(--grass); box-shadow: 0 4px 0 var(--dirt); }
.card:hover { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); border-color: var(--line-2); }
.card--cyan::before { background: var(--cyan); box-shadow: 0 4px 0 var(--cyan-2), var(--glow); }
.card--flat::before { display: none; }
.card__in { padding: 30px 26px 26px; }

/* doors */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.door { display: grid; grid-template-rows: auto 1fr auto; }
.door .card__in { display: grid; gap: 12px; align-content: start; }
.door__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.door__n { font-family: var(--pixel); font-size: 15px; color: var(--cyan); text-shadow: var(--glow); }
.door__icon { width: 74px; height: 74px; display: grid; place-items: center; }
.door__icon [data-voxel] { width: 100%; }
.door p { color: var(--text-2); font-size: 15.5px; }
.door__tag { font-family: var(--pixel); font-size: 17px; color: var(--grass); margin-top: 4px; }
.door .link { justify-self: start; margin: 0 26px 24px; }
.door--last { grid-column: span 3; }
.door--last .card__in { display: grid; grid-template-columns: 90px 1fr auto; gap: 24px; align-items: center; }
.door--last .door__icon { width: 90px; height: 90px; }
.door--last .link { margin: 0; align-self: center; }

/* builds */
.builds { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.build .card__in { display: grid; grid-template-columns: 1fr 110px; gap: 18px; }
.build__meta { font-family: var(--mono); font-size: 12.5px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.build h3 { font-size: 24px; }
.build p { color: var(--text-2); font-size: 15.5px; margin-top: 10px; }
.build__tag { font-family: var(--pixel); font-size: 17px; color: var(--cyan); margin-top: 14px; }
.build__icon { width: 110px; height: 110px; align-self: start; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; grid-column: 1 / -1; }
.chips span { font-family: var(--mono); font-size: 12px; padding: 4px 8px; background: var(--bg-3); border: 2px solid var(--line); color: var(--text-2); }

/* case blocks */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case .card__in { display: grid; gap: 14px; }
.case h3 { font-size: 22px; }
.case dl { display: grid; gap: 12px; margin: 0; }
.case dt { font-family: var(--pixel); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--grass); }
.case dd { margin: 2px 0 0; color: var(--text-2); font-size: 15px; }
.case dt.result { color: var(--cyan); }

/* crafting grid (how we work) */
.craft { display: grid; grid-template-columns: auto auto auto; gap: 28px; align-items: center; justify-content: center; }
.craft__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; background: var(--bg-3); border: 3px solid var(--line-2); box-shadow: 8px 8px 0 var(--ink); }
.slot { width: min(240px, 40vw); aspect-ratio: 1; background: var(--bg-2); border: 3px solid var(--line); padding: 16px; display: grid; align-content: start; gap: 8px; box-shadow: inset 4px 4px 0 rgba(0,0,0,.35); }
.slot b { font-family: var(--pixel); font-size: 30px; color: var(--grass); line-height: 1; }
.slot span { font-size: 15px; color: var(--text); line-height: 1.35; }
.craft__arrow { font-family: var(--pixel); font-size: 60px; color: var(--text-3); }
.craft__out { width: min(240px, 60vw); aspect-ratio: 1; display: grid; place-items: center; text-align: center; padding: 20px; background: var(--bg-3); border: 3px solid var(--cyan); box-shadow: 8px 8px 0 var(--ink), 0 0 30px rgba(34,211,238,.3); font-family: var(--pixel); font-size: 26px; line-height: 1.15; }
.craft__note { text-align: center; color: var(--text-2); margin-top: 32px; }

/* about */
.about__in { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about__text h2 { margin-bottom: 18px; }
.about__text p + p { margin-top: 14px; }
.about__text p { color: var(--text-2); }
.about__text p:first-of-type { color: var(--text); font-size: 19px; }
.about__art [data-voxel] { width: min(100%, 300px); margin-inline: auto; }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.about__facts li { padding: 14px; background: var(--bg-3); border: 2px solid var(--line); font-size: 14.5px; color: var(--text-2); }
.about__facts b { display: block; font-family: var(--pixel); font-size: 18px; color: var(--text); margin-bottom: 2px; }

/* door page content */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.list { display: grid; gap: 10px; }
.list li { position: relative; padding-left: 26px; color: var(--text-2); }
.list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; background: var(--grass); box-shadow: 3px 3px 0 var(--grass-3); }
.list--cyan li::before { background: var(--cyan); box-shadow: 3px 3px 0 var(--cyan-2); }
.list h4 { margin-bottom: 14px; }
.band { background: var(--bg-2); border-block: 3px solid var(--line); }
.cta { text-align: center; padding: clamp(64px, 8vw, 110px) 0; position: relative; overflow: clip; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(34,211,238,.12), transparent); pointer-events: none; }
.cta h2 { text-transform: uppercase; }
.cta .lead { margin: 16px auto 30px; }

/* contact */
.contact__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.cform { padding: 26px; display: grid; gap: 14px; }
.cform label { display: grid; gap: 6px; font-family: var(--pixel); font-size: 16px; color: var(--text-2); }
.cform input, .cform textarea { font: inherit; font-size: 16px; color: var(--text); padding: 12px 14px; border: 3px solid var(--line-2); background: var(--bg); box-shadow: inset 4px 4px 0 rgba(0,0,0,.35); transition: border-color .2s; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--cyan); }
.cform textarea { resize: vertical; min-height: 130px; }
.cform .btn { justify-self: start; margin-top: 6px; }
.cform__note { font-size: 13px; color: var(--text-3); }
.contact__ways { display: grid; gap: 12px; margin-top: 26px; }
.contact__ways a, .contact__ways span { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--bg-3); border: 2px solid var(--line); font-family: var(--pixel); font-size: 19px; }
.contact__ways a:hover { border-color: var(--cyan); color: var(--cyan); }
.contact__ways i { width: 12px; height: 12px; background: var(--grass); box-shadow: 3px 3px 0 var(--grass-3); flex: none; }
.calendly { margin-top: 28px; min-height: 120px; border: 3px dashed var(--line-2); display: grid; place-items: center; padding: 24px; text-align: center; color: var(--text-3); font-family: var(--pixel); font-size: 18px; }
.calendly iframe { width: 100%; min-height: 700px; border: 0; }

/* footer */
.footer { border-top: 3px solid var(--line); background: var(--bg-2); padding: 48px 0 28px; }
.footer__in { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.footer h4 { font-size: 18px; color: var(--text-2); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.footer ul { display: grid; gap: 6px; }
.footer a { color: var(--text-2); font-size: 15px; } .footer a:hover { color: var(--cyan); }
.footer__tag { margin-top: 12px; color: var(--text-2); font-size: 15px; max-width: 40ch; }
.footer__cta { margin-top: 18px; }
.footer__bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--text-3); }

/* reveal */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 1000px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__scene { order: -1; max-width: 520px; margin-inline: auto; }
  .hero { min-height: 0; }
  .doors { grid-template-columns: 1fr 1fr; }
  .door--last { grid-column: span 2; }
  .cases { grid-template-columns: 1fr; }
  .craft { grid-template-columns: 1fr; justify-items: center; }
  .craft__arrow { transform: rotate(90deg); }
  .about__in, .phero__in, .two, .contact__in { grid-template-columns: 1fr; }
  .phero__art { order: -1; }
  .footer__in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links, .nav__actions .btn { display: none; }
  .burger { display: flex; }
  .doors, .builds { grid-template-columns: 1fr; }
  .door--last { grid-column: auto; }
  .door--last .card__in { grid-template-columns: 1fr; }
  .build .card__in { grid-template-columns: 1fr; }
  .build__icon { width: 90px; height: 90px; }
  .about__facts { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; }
  .card { box-shadow: 6px 6px 0 var(--ink); }
  .slot { width: min(200px, 38vw); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .vx-c { opacity: 1; transform: none; }
}

/* ---------- forms: subscribe + status ---------- */
.sub { display: grid; gap: 8px; }
.sub > label { font-family: var(--pixel); font-size: 16px; color: var(--text-2); }
.sub__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.sub__row { display: flex; gap: 8px; flex-wrap: wrap; }
.sub__row input { flex: 1 1 180px; min-width: 0; font: inherit; font-size: 15px; color: var(--text); padding: 10px 12px; border: 3px solid var(--line-2); background: var(--bg); box-shadow: inset 4px 4px 0 rgba(0,0,0,.35); }
.sub__row input:focus { outline: none; border-color: var(--cyan); }
.sub__note { font-size: 13px; color: var(--text-3); }
.form__status { font-family: var(--pixel); font-size: 17px; min-height: 1.2em; }
.form__status.ok { color: var(--grass); }
.form__status.err { color: #f87171; }
form[data-ajax].is-busy .btn { opacity: .6; pointer-events: none; }
.footer__contact { margin-top: 14px; }

/* ---------- legal pages ---------- */
.legal { max-width: 78ch; }
.legal h2 { font-size: clamp(22px, 2.6vw, 30px); margin: 40px 0 12px; }
.legal h3 { font-size: 20px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--text-2); }
.legal p + p { margin-top: 12px; }
.legal ul { display: grid; gap: 8px; margin: 12px 0; }
.legal li { position: relative; padding-left: 22px; }
.legal li::before { content: ""; position: absolute; left: 0; top: .55em; width: 10px; height: 10px; background: var(--grass); box-shadow: 2px 2px 0 var(--grass-3); }
.legal .meta { font-family: var(--mono); font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
.legal a { color: var(--cyan); border-bottom: 1px solid transparent; } .legal a:hover { border-color: var(--cyan); }
.legal .toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 8px; }
.legal .toc a { font-family: var(--mono); font-size: 12.5px; padding: 6px 10px; background: var(--bg-3); border: 2px solid var(--line); color: var(--text-2); }
.legal .toc a:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- sent state ---------- */
.sent { animation: sentin .5s var(--ease); }
@keyframes sentin { from { opacity: 0; transform: translateY(10px); } }
.sent .card__in { display: grid; gap: 12px; justify-items: start; padding: 34px 30px; }
.sent h3 { font-size: 30px; color: var(--cyan); text-shadow: var(--glow); }
.sent p { color: var(--text); font-size: 17px; max-width: 48ch; }
.sent__sub { color: var(--text-2) !important; font-size: 15px !important; }
.sent .btn { margin-top: 8px; }
.sent__mark { display: block; width: 26px; height: 26px; background: var(--grass); box-shadow: 4px 4px 0 var(--grass-3), var(--glow); position: relative; }
.sent__mark::after { content: ""; position: absolute; left: 9px; top: 3px; width: 6px; height: 13px; border: solid var(--ink); border-width: 0 4px 4px 0; transform: rotate(45deg); }
.footer .sent .card__in { padding: 22px 20px; }
.footer .sent h3 { font-size: 24px; }
.footer .sent p { font-size: 14.5px; }
.footer .sent .sent__sub { font-size: 13px !important; }
