/* ============================================================
   HirePunk Landing v3 — section styles
   why features, viz cards, how steps, fit, roles, built-for,
   faq, cta, footer, responsive
   ============================================================ */

/* ---------- WHY FEATURES ---------- */
.why { background: var(--frost); }
.features { display: flex; flex-direction: column; gap: 120px; max-width: 1440px; margin: 0 auto; }
.feat { display: grid; grid-template-columns: 1fr 1.12fr; gap: 88px; align-items: center; }
.feat.flip .copy { order: 2; }
.feat.flip .visual { order: 1; }
.feat .copy h3 { margin: 18px 0 20px; }
.feat .copy .lead { font-size: 15px; max-width: 440px; }
.feat-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.feat-list li { font-family: var(--mono); font-size: 12.5px; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); line-height: 1.5; }
.feat-list li::before { content: "■"; color: var(--acid); font-size: 9px; line-height: 2.1; flex: none; }
.feat-list.one-col { grid-template-columns: 1fr; }

.feat .visual { position: relative; }
.viz {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 22px; position: relative; overflow: hidden;
  box-shadow: 0 30px 70px rgba(15,19,32,0.08);
}
.viz-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.viz-head .vt { font-family: var(--wide); font-weight: 700; font-size: 13px; text-transform: uppercase; }
.viz-head .vs { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); display: inline-flex; align-items: center; gap: 7px; }
.viz-head .vs .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); animation: blink 1.6s ease-in-out infinite; }

/* [01] sourcing sky — chips floating among clouds */
.skybox {
  position: relative; height: 400px; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(206,252,0,0.14), transparent 70%),
    linear-gradient(180deg, #EAF0F8, #F6F9FC);
  border: 1px solid var(--line);
}
.skybox .cloud { z-index: 1; }
.skychip {
  position: absolute; z-index: 3;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-2);
  border-radius: var(--r-pill); padding: 9px 15px; white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15,19,32,0.10);
  animation: cloud-bob var(--bob, 8s) ease-in-out infinite alternate;
  animation-delay: var(--bd, 0s);
  display: inline-flex; align-items: center; gap: 8px;
}
.skychip .sq { width: 7px; height: 7px; background: var(--acid); flex: none; }
.skychip.core { background: var(--ink); color: var(--frost); border-color: var(--ink); z-index: 4; }
.skychip.core .sq { border-radius: 50%; animation: blink 1.6s ease-in-out infinite; }
.skybox .foot {
  position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 5;
  display: flex; justify-content: space-between; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ash-2);
}
.skybox .foot b { color: var(--ink); }

/* [02] funnel — narrowing lanes */
.funnel { display: flex; flex-direction: column; gap: 16px; padding: 6px 2px 2px; }
.funnel .lane { display: flex; flex-direction: column; gap: 7px; }
.funnel .lane .top { display: flex; justify-content: space-between; align-items: baseline; font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ash-2); }
.funnel .lane .top .who { font-weight: 700; color: var(--ink); }
.funnel .lane .top .val { font-family: var(--wide); font-size: 16px; color: var(--ink); }
.funnel .bar { height: 32px; border-radius: 8px; background: var(--frost); border: 1px solid var(--line); overflow: hidden; }
.funnel .bar .fill {
  height: 100%; width: 0; border-radius: 7px; background: var(--ash);
  border-right: 1px solid var(--line);
  transition: width 1.4s cubic-bezier(.65,0,.25,1); transition-delay: var(--d, 0s);
}
.funnel .lane.hot .bar .fill { background: var(--acid); border-right: 0; }
.funnel .lane.final .bar .fill { background: var(--ink); }
.funnel.in .lane .fill { width: var(--to, 50%); }
.ratio-foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ratio-foot .big { font-family: var(--wide); font-weight: 700; font-size: 44px; line-height: 1; }
.ratio-foot .big em { color: var(--acid-ink); background: var(--acid); padding: 0 8px; }
.ratio-foot .note { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash-2); text-align: right; line-height: 1.6; }
.ratio-foot .note b { color: var(--ink); }

/* [03] qualification checklist */
.qual { display: flex; flex-direction: column; gap: 8px; }
.qual .qrow {
  display: flex; align-items: center; gap: 12px;
  background: var(--frost); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.qual .qrow .tk {
  width: 20px; height: 20px; border-radius: 6px; background: var(--ink); color: var(--acid);
  display: grid; place-items: center; font-size: 10px; font-weight: 700; flex: none;
}
.qual .qrow:nth-child(even) .tk { background: var(--acid); color: var(--ink); }
.qual .qrow.warn .tk { background: var(--paper); color: var(--danger); border: 1px solid var(--danger); }
.qual .qrow .mt { margin-left: auto; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }
.steps-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.steps-chips .schip {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 11px; color: var(--ash-2);
  background: var(--paper);
}
.steps-chips .lbl { flex-basis: 100%; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); margin-bottom: 2px; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--paper); border-top: 1px solid var(--line); }
.steps { max-width: 1440px; margin: 0 auto; display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 170px 1fr 1.05fr; gap: 56px;
  padding: 64px 0; border-top: 1px dashed var(--line); align-items: start;
}
.step:first-child { border-top: 0; }
.step .snum { font-family: var(--wide); font-weight: 700; font-size: 64px; line-height: 0.9; color: var(--ink); position: relative; }
.step .snum em { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.step .snum .sq { display: block; width: 12px; height: 12px; background: var(--acid); margin-top: 16px; }
.step .sbody h3 { margin: 0 0 16px; }
.step .sbody p { font-size: 14px; line-height: 1.75; color: var(--ash-2); margin: 0 0 14px; max-width: 460px; }
.step .sbody p strong { color: var(--ink); font-weight: 600; }
.step .sbody .nots { font-family: var(--mono); font-size: 12px; color: var(--ash-2); display: flex; flex-direction: column; gap: 6px; margin: 18px 0 0; }
.step .sbody .nots .no { display: flex; gap: 10px; align-items: center; }
.step .sbody .nots .no .x { color: var(--danger); font-weight: 700; }
.step .sbody .nots .no.yes .x { color: var(--acid-ink); background: var(--acid); border-radius: 4px; padding: 0 5px; }
.step .sbody .nots .no.yes { color: var(--ink); font-weight: 600; }
.step-cta { margin-top: 22px; }

/* aside cards per step */
.side-card {
  background: var(--frost); border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  box-shadow: 0 20px 50px rgba(15,19,32,0.06);
}
.side-card .sc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ash-2);
  padding-bottom: 11px; border-bottom: 1px solid var(--line); margin-bottom: 12px;
}
.side-card .sc-head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
.brief-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.brief-chips .chip { background: var(--paper); font-size: 10px; padding: 7px 12px; }
.brief-chips .chip b { color: var(--ash); font-weight: 500; font-size: 8.5px; letter-spacing: 0.1em; }
.brief-chips .chip.acid { background: var(--acid); }

.srclog { display: flex; flex-direction: column; gap: 8px; }
.srclog .ev { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.srclog .ev .ic { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; background: var(--ink); color: var(--acid); font-size: 10px; font-weight: 700; }
.srclog .ev.human .ic { background: var(--acid); color: var(--ink); }
.srclog .ev .h { font-size: 11px; font-weight: 700; }
.srclog .ev .s { font-size: 10.5px; color: var(--ash-2); line-height: 1.5; }

.mini-shortlist { display: flex; flex-direction: column; }
.mini-shortlist .msrow {
  display: grid; grid-template-columns: 26px 1.2fr 1fr 36px; gap: 10px; align-items: center;
  padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 10.5px;
}
.mini-shortlist .msrow:last-child { border-bottom: 0; }
.mini-shortlist .msrow .av { width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--frost); display: grid; place-items: center; font-size: 8px; font-weight: 700; }
.mini-shortlist .msrow.sel .av { background: var(--acid); color: var(--ink); }
.mini-shortlist .msrow .nm { font-weight: 700; white-space: nowrap; }
.mini-shortlist .msrow .rl { color: var(--ash-2); font-size: 9.5px; }
.mini-shortlist .msrow .tg { font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ash-2); }
.mini-shortlist .msrow .fit { font-family: var(--wide); font-size: 14px; text-align: right; }
.mini-shortlist .msrow.sel .fit { color: var(--acid-ink); background: var(--acid); border-radius: 6px; text-align: center; }
.includes { list-style: none; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; }
.includes li { font-size: 10px; letter-spacing: 0.03em; color: var(--ash-2); display: flex; gap: 7px; align-items: flex-start; line-height: 1.5; text-transform: uppercase; font-weight: 600; }
.includes li::before { content: "■"; color: var(--acid); font-size: 7px; line-height: 2.2; }

/* ---------- FIT STRIP ---------- */
.fit { background: var(--paper); border-top: 1px solid var(--line); }
.fit .fit-wrap { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.fit h2 { margin: 18px 0 20px; }
.fit .lead { max-width: 430px; font-size: 15px; }
.fit-keep { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 13px; font-weight: 700; }
.fit-keep .row { display: flex; gap: 12px; align-items: center; }
.fit-keep .row .sq { width: 9px; height: 9px; background: var(--acid); flex: none; }
.fit-keep .row em { color: var(--ash-2); font-weight: 500; }
.fit-chips { display: flex; flex-direction: column; gap: 10px; }
.fit-chips .fchip {
  display: flex; align-items: center; gap: 14px;
  background: var(--frost); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 18px; font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.fit-chips .fchip .tk { width: 22px; height: 22px; border-radius: 6px; background: var(--ink); color: var(--acid); display: grid; place-items: center; font-size: 11px; font-weight: 700; flex: none; }
.fit-chips .fchip:nth-child(even) .tk { background: var(--acid); color: var(--ink); }
.fit-chips .fchip .d { margin-left: auto; font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ash); text-align: right; }

/* ---------- ROLES ---------- */
.rolebar { background: var(--acid); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; position: relative; z-index: 3; }
.rolemarquee { display: flex; overflow: hidden; }
.rolemarquee .track {
  display: flex; gap: 52px; align-items: center; flex: none; padding: 17px 52px 17px 0;
  font-family: var(--wide); font-weight: 700; font-size: 25px; color: var(--ink); text-transform: uppercase;
  animation: marquee 36s linear infinite; white-space: nowrap;
}
.rolemarquee .track span { display: inline-flex; align-items: center; gap: 52px; }
.rolemarquee .track .x { font-family: var(--mono); font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.roles { background: var(--frost); }
.roles-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.role-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(15,19,32,0.10); border-color: var(--ink); }
.role-card .rc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.role-card h3 { font-family: var(--wide); font-weight: 700; font-size: 17px; line-height: 1.2; margin: 0; text-transform: uppercase; max-width: 220px; }
.role-card .idx { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--acid-ink); background: var(--acid); padding: 3px 8px; border-radius: 5px; letter-spacing: 0.08em; }
.role-card ul { list-style: none; margin: 0; padding: 0; }
.role-card li { font-family: var(--mono); font-size: 12px; color: var(--ash-2); padding: 7px 0; border-top: 1px dashed var(--line); display: flex; align-items: center; gap: 9px; }
.role-card li::before { content: "→"; color: var(--ash); font-size: 10px; }
.role-card li:hover { color: var(--ink); }

/* ---------- BUILT FOR ---------- */
.built { overflow: hidden; }
.built .built-wrap { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; position: relative; z-index: 3; }
.built h2 { margin: 18px 0 24px; }
.built .lead { max-width: 480px; }
.for-lines { margin-top: 34px; display: flex; flex-direction: column; }
.for-line {
  display: flex; gap: 16px; align-items: baseline; padding: 15px 0;
  border-top: 1px solid var(--line-dk-2); font-family: var(--mono); font-size: 14px; color: var(--ash-3);
}
.for-line .n { font-family: var(--wide); font-size: 11px; color: var(--ash); flex: none; width: 30px; }
.for-line b { color: var(--frost); font-weight: 600; }
.built .nots { display: flex; flex-direction: column; gap: 14px; justify-content: center; min-width: 0; align-items: flex-start; }
.not-line {
  font-family: var(--wide); font-weight: 700; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.12;
  color: var(--ash); position: relative; width: fit-content; max-width: 100%;
}
.not-line .strike { position: absolute; left: -2%; top: 52%; height: 5px; width: 0; background: var(--danger); transform: rotate(-1.2deg); transition: width .5s cubic-bezier(.7,0,.3,1); transition-delay: var(--d, 0s); }
.not-line.in .strike { width: 104%; }
.not-line.yes { color: var(--frost); font-size: clamp(28px, 2.9vw, 40px); margin-top: 20px; }
.not-line.yes em { color: var(--acid); }

/* ---------- FAQ ---------- */
.faq { background: var(--frost); }
.faq-wrap { max-width: 980px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .2s ease; }
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px;
  padding: 22px 26px; font-family: var(--mono); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .qn { font-family: var(--wide); font-size: 11px; color: var(--ash); flex: none; width: 28px; }
.faq-item summary .plus {
  margin-left: auto; width: 28px; height: 28px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-size: 14px; font-weight: 400; transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--acid); border-color: var(--acid); color: var(--ink); }
.faq-item .fa-body { padding: 0 26px 24px 70px; font-size: 13.5px; line-height: 1.75; color: var(--ash-2); max-width: 720px; }
.faq-item .fa-body strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: var(--frost); padding: 170px 48px 150px; overflow: hidden; position: relative; }
.cta-inner { position: relative; z-index: 5; max-width: 940px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta .sub { margin: 26px auto 0; max-width: 540px; font-size: 15px; line-height: 1.75; color: var(--ash-3); }
.cta .sub strong { color: var(--frost); font-weight: 600; }
.cta-actions { display: flex; gap: 12px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.cta .micro { margin-top: 26px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.cta .micro span { display: inline-flex; align-items: center; gap: 8px; }
.cta .micro .sq { width: 7px; height: 7px; background: var(--acid); }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--frost); border-top: 1px solid var(--line-dk-2); padding: 72px 48px 40px; }
.foot-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand .logo { color: var(--frost); font-size: 19px; }
.foot-brand p { font-size: 12px; color: var(--ash); line-height: 1.7; max-width: 300px; margin: 16px 0 0; }
.foot-col h4 { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); margin: 6px 0 16px; }
.foot-col a { display: block; font-family: var(--mono); font-size: 12.5px; color: var(--ash-3); text-decoration: none; padding: 5px 0; transition: color .15s ease; }
.foot-col a:hover { color: var(--acid); }
.foot-big {
  max-width: 1440px; margin: 72px auto 0; overflow: hidden;
  font-family: var(--wide); font-weight: 700; text-transform: uppercase;
  font-size: clamp(70px, 9.8vw, 148px); line-height: 0.94; letter-spacing: -0.01em;
  color: transparent; -webkit-text-stroke: 2px var(--ink-3);
  user-select: none; white-space: nowrap;
}
.foot-big em { color: var(--acid); -webkit-text-stroke: 0; }
.foot-meta {
  max-width: 1440px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--line-dk-2);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .hero-float { display: none; }
  .hero { padding-bottom: 230px; }
  .feat, .fit .fit-wrap, .built .built-wrap { grid-template-columns: 1fr; gap: 48px; }
  .feat.flip .copy { order: 0; } .feat.flip .visual { order: 1; }
  .feat .copy .lead, .fit .lead, .built .lead { max-width: 560px; }
  .step { grid-template-columns: 90px 1fr; }
  .step .saside { grid-column: 2; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .lead { justify-self: start; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .header { padding: 12px 16px; gap: 12px; }
  .header-cta .btn-ghost-light { display: none; }
  .sec-pad { padding: 88px 20px; }
  .hero { padding: 48px 20px 170px; }
  .hero h1 { margin-top: 26px; }
  .hero .sub { font-size: 14.5px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; margin-top: 28px; }
  .hero-actions .btn { justify-content: center; }
  .no-chips { gap: 8px; margin-top: 24px; }
  .no-chip { font-size: 10px; padding: 8px 13px; }
  .manifesto { padding: 110px 20px 100px; }
  .manifesto .wrap { gap: 34px; }
  .scrub { font-size: clamp(25px, 7.4vw, 40px); }
  .features { gap: 80px; }
  .feat-list { grid-template-columns: 1fr; }
  .viz { padding: 16px; }
  .skybox { height: 330px; }
  .skychip { font-size: 8.5px; padding: 6px 10px; }
  .ratio-foot .big { font-size: 34px; }
  .qual .qrow .mt { display: none; }
  .step { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .step .saside { grid-column: 1; }
  .step .snum { font-size: 44px; }
  .step .snum .sq { margin-top: 10px; }
  .includes { grid-template-columns: 1fr; }
  .mini-shortlist .msrow { grid-template-columns: 26px 1.2fr 36px; }
  .mini-shortlist .msrow .tg { display: none; }
  .fit-chips .fchip { flex-wrap: wrap; }
  .fit-chips .fchip .d { flex-basis: 100%; margin-left: 36px; text-align: left; }
  .rolemarquee .track { font-size: 19px; padding: 13px 40px 13px 0; gap: 40px; }
  .rolemarquee .track span { gap: 40px; }
  .roles-grid { grid-template-columns: 1fr; }
  .role-card { padding: 20px; }
  .not-line { font-size: clamp(19px, 5.6vw, 26px); }
  .not-line.yes { font-size: clamp(24px, 7vw, 34px); }
  .faq-item summary { padding: 18px 16px; font-size: 12px; gap: 12px; }
  .faq-item .fa-body { padding: 0 16px 20px 46px; font-size: 12.5px; }
  .cta { padding: 120px 20px 105px; }
  .cta .display-xl { font-size: clamp(30px, 8.6vw, 48px); }
  .cta .micro { gap: 10px 18px; }
  .footer { padding: 56px 20px 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-big { font-size: clamp(42px, 14vw, 90px); -webkit-text-stroke-width: 1.5px; margin-top: 48px; }
  .foot-meta { flex-direction: column; gap: 8px; }
}
@media (max-width: 430px) {
  .aud-toggle { padding: 4px; }
  .aud-btn { padding: 9px 11px; font-size: 10px; gap: 6px; }
  .aud-btn .ic { display: none; }
  .aud-btn .soon { font-size: 7.5px; padding: 2px 5px; }
  .header .logo { font-size: 15px; }
  .header .logo .mark { width: 24px; height: 24px; font-size: 12px; }
  .btn-lg { padding: 16px 22px; font-size: 13px; }
}
