/* Labb landing — ported from labb-landing.html */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --cream: #FBFAF8;
  --paper: #FFFFFF;
  --ink: #16140F;
  --ink-soft: #6B665C;
  --ink-faint: #98938A;
  --rule: #EDEAE4;
  --line: #E2DED7;
  --orange: #E8672D;
  --orange-dark: #B4491C;
  --orange-tint: #FDEDE4;
  --orange-tint2: #F6D6C2;
  --green: #12A150;
  --green-tint: #E7F4EC;
  --green-dark: #127A42;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
[dir=rtl] body { font-family: 'IBM Plex Sans Arabic', 'Plus Jakarta Sans', sans-serif; }
h1, h2, h3, .disp { font-family: 'Sora', 'IBM Plex Sans Arabic', sans-serif; }
.num { font-family: 'JetBrains Mono', 'Sora', monospace; font-variant-numeric: tabular-nums; }
a { color: var(--orange); text-decoration: none; }
::selection { background: var(--orange-tint2); }
img, svg { display: block; }
button { font-family: inherit; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  box-sizing: border-box;
}
.rev {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.rev.on { opacity: 1; transform: none; }

/* perforation / ticket motifs */
.tear { position: relative; height: 0; border-top: 2px dashed var(--line); }
.tear::before, .tear::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
}
.tear::before { left: -9px; }
.tear::after { right: -9px; }
.tear.dark::before, .tear.dark::after { background: #16140F; }
.tear.panel::before, .tear.panel::after { background: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border-radius: 999px;
  padding: 7px 13px;
}

/* nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(251, 250, 248, .9);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1.5px solid var(--rule);
}
.navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 48px);
  max-width: 1180px;
  margin: 0 auto;
}
.navActions { display: flex; align-items: center; gap: 8px; flex: none; }
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  flex: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
}
.navlinks {
  flex: 1;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
}
.navlinks::-webkit-scrollbar { display: none; }
.navlinks a {
  flex: none;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.navlinks a:hover, .navlinks a.on { background: var(--ink); color: #fff; }
.progress { height: 2px; background: var(--rule); }
.progress i { display: block; height: 100%; background: var(--orange); width: 0%; transition: width .1s linear; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(232, 103, 45, .28); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #332F27; }
.btn-sm { padding: 8px 13px; font-size: 12.5px; border-radius: 999px; }
.btn-wa { background: var(--orange-tint); color: var(--orange-dark); }
.langbtn {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font: 700 12px inherit;
  color: var(--ink);
  cursor: pointer;
}
.langbtn:hover { border-color: var(--orange); color: var(--orange-dark); }

/* hero */
.hero {
  padding: clamp(30px, 5vw, 64px) 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  scroll-margin-top: 120px;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 14px 0;
}
.hero p.sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 22px;
}
.heroBtns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.heroBtns .btn { min-height: 56px; padding: 0 22px; font-size: 15.5px; }
.heronote { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 20px; display: block; }
.factrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  border-top: 1.5px solid var(--rule);
  padding-top: 16px;
}
.fact { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.fact svg { flex: none; }

.ticketWrap { display: flex; justify-content: center; }
.heroTicket {
  width: min(360px, 100%);
  background: var(--ink);
  border-radius: 26px;
  padding: 5px;
  transform: rotate(-2.2deg);
  box-shadow: 0 30px 60px rgba(22, 20, 15, .22);
}
.heroTicketInner {
  background: var(--paper);
  border-radius: 22px;
  padding: 26px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.htTop { display: flex; justify-content: space-between; align-items: center; }
.htVenue {
  font-weight: 700;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .05em;
}
.htLabel {
  text-align: center;
  font-weight: 700;
  font-size: 10.5px;
  color: var(--ink-faint);
  letter-spacing: .08em;
}
.liveTag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 10.5px;
  color: var(--green-dark);
  background: var(--green-tint);
  border-radius: 999px;
  padding: 4px 9px;
}
.liveDot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.ticketNum {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--orange);
  text-align: center;
  margin: 2px 0;
}
.ticketStatus {
  font-family: 'Sora', 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  line-height: 1.35;
}
.ticketSub { font-size: 13px; color: var(--ink-soft); text-align: center; max-width: 26ch; margin: 0 auto; }
.tickTear { margin: 6px 0; }
.barcode { display: flex; gap: 3px; align-items: flex-end; height: 26px; justify-content: center; }
.barcode i { display: block; width: 3px; background: var(--ink); border-radius: 1px; }
.htFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .04em;
}
.stagePicks { display: flex; gap: 6px; justify-content: center; padding-top: 2px; }
.stagePick {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  border: none;
  padding: 0;
}
.stagePick.on { background: var(--orange); width: 22px; border-radius: 5px; transition: width .2s; }

/* section shell */
section { padding: clamp(34px, 5vw, 68px) 0; scroll-margin-top: 120px; }
.shead {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 60ch;
  margin-bottom: clamp(20px, 3vw, 30px);
}
.shead h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0;
}
.lbl {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.shead p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* why */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--rule);
  border-radius: 22px;
  background: #fff;
}
@media (max-width: 820px) { .whyGrid { grid-template-columns: 1fr; } }
.whyCard {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-inline-end: 1.5px dashed var(--line);
}
.whyGrid .whyCard:last-child { border-inline-end: none; }
@media (max-width: 820px) {
  .whyCard { border-inline-end: none; border-bottom: 1.5px dashed var(--line); }
  .whyGrid .whyCard:last-child { border-bottom: none; }
}
.whyStat {
  font-weight: 800;
  font-size: 15px;
  color: var(--orange);
  background: var(--orange-tint);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyCard h3 { font-weight: 700; font-size: 19px; margin: 0; line-height: 1.3; }
.whyCard p { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; }

/* how */
.trackWrap { position: relative; padding-top: 6px; }
.track {
  position: absolute;
  top: 37px;
  left: 34px;
  right: 34px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  z-index: 0;
}
@media (max-width: 900px) { .track { display: none; } }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.stepCard { display: flex; flex-direction: column; gap: 12px; }
.stepNum {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.stepBody {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
}
.stepBody h4 { font-weight: 700; font-size: 15.5px; margin: 0; line-height: 1.3; }
.stepBody p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.stepTag { font-size: 11.5px; font-weight: 700; color: var(--orange-dark); margin-top: auto; }

/* features */
.featGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 820px) { .featGrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .featGrid { grid-template-columns: 1fr; } }
.featCard {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform .2s, box-shadow .2s;
}
.featCard:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(30, 24, 16, .08); }
.featCard.soon { background: var(--rule); border-style: dashed; }
.featCard h4 { font-weight: 700; font-size: 15px; margin: 0; }
.featCard p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.featCard.soon h4 { color: var(--ink-soft); }
.soonTag {
  align-self: flex-start;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ink-faint);
  background: #E8E3DB;
  border-radius: 999px;
  padding: 4px 9px;
}

/* product preview */
.previewGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .previewGrid { grid-template-columns: 1fr; } }
.previewCol .eyebrow { margin-bottom: 10px; }
.device {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(30, 24, 16, .08);
}
.deviceBar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #F4F1EC;
  border-bottom: 1.5px solid var(--rule);
}
.deviceBar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.deviceBar span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .04em;
  margin-inline-start: 6px;
}
.queueList { padding: 14px 0; }
.queueRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  margin: 0 14px;
}
.queueRow + .queueRow { margin-top: 8px; }
.queueRow .qn { font-weight: 800; font-size: 15px; color: var(--ink); min-width: 22px; }
.queueRow.on { border-color: var(--orange); }
.queueRow.on .qn { color: var(--orange); }
.queueMeta { flex: 1; min-width: 0; }
.queueMeta b { display: block; font-size: 13.5px; }
.queueMeta span { font-size: 11px; color: var(--ink-soft); }
.chip { font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 999px; flex: none; }
.chip.wait { background: var(--orange-tint); color: var(--orange-dark); }
.chip.idle { background: var(--rule); color: var(--ink-soft); }
.kpiRow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
.kpiRow.four { grid-template-columns: repeat(4, 1fr); padding: 0; margin-bottom: 16px; }
.kpi { background: #F4F1EC; border-radius: 12px; padding: 11px; }
.kpi b { display: block; font-weight: 700; font-size: 19px; }
.kpi span { font-size: 10px; color: var(--ink-soft); font-weight: 600; }
.reportPad { padding: 16px; }
.reportTitle { font-weight: 700; font-size: 18px; }
.reportSub { font-size: 12px; color: var(--ink-soft); margin-bottom: 12px; }
.peakLbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.bars { display: flex; align-items: flex-end; gap: 7px; height: 80px; padding: 0; }
.bars i { flex: 1; background: var(--orange-tint2); border-radius: 4px 4px 0 0; display: block; }
.bars i.peak { background: var(--orange); }
.devcap { font-size: 12px; color: var(--ink-faint); line-height: 1.5; margin-top: 10px; }

/* trust */
.trust {
  background: var(--ink);
  color: #fff;
  border-radius: 26px;
  padding: clamp(24px, 3.4vw, 42px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) { .trust { grid-template-columns: 1fr; } }
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 103, 45, .14) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  pointer-events: none;
}
.trust > * { position: relative; }
.trust .lbl { color: var(--orange); }
.trust h2 {
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.28;
  letter-spacing: -.02em;
  margin: 12px 0;
}
.trust p { font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, .72); margin: 0; }
.tpoint {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.tpoint svg { flex: none; margin-top: 2px; }
.tpoint span { font-size: 14.5px; line-height: 1.55; }
.thonest { font-size: 13px; color: rgba(255, 255, 255, .5); line-height: 1.6; margin-top: 6px; display: block; }

/* pricing */
.pricingBox {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
}
.sliderRow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.sliderRow label { font-weight: 700; font-size: 13.5px; flex: none; }
input[type=range] { flex: 1; min-width: 160px; accent-color: var(--orange); }
.tableCount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  min-width: 70px;
  text-align: end;
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1.5px solid var(--rule);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.tier.active { border-color: var(--orange); background: #FFF8F3; box-shadow: 0 16px 34px rgba(232, 103, 45, .14); }
.tier b { font-weight: 700; font-size: 16px; }
.tier .rangeTxt { font-size: 12.5px; color: var(--ink-soft); }
.tier .price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -.02em; }
.tier .per { font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.founding {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border-radius: 10px;
  padding: 8px 10px;
  margin-top: 4px;
}
.pricenote { font-size: 12.5px; color: var(--ink-faint); margin-top: 18px; line-height: 1.6; }

/* faq */
.faqGrid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(20px, 3vw, 40px); }
@media (max-width: 820px) { .faqGrid { grid-template-columns: 1fr; } }
.faqIntro { position: sticky; top: 110px; align-self: start; }
.faqIntro h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 9px 0 0;
}
.faqAsk {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px solid var(--orange-tint2);
  padding-bottom: 2px;
  margin-top: 8px;
  display: inline-block;
}
.faqItem {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}
.faqItem.open { border-color: var(--orange-tint2); }
.faqQ {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 17px 18px;
  cursor: pointer;
  text-align: start;
  font-family: inherit;
}
.faqQ span.q { font-weight: 700; font-size: 15px; flex: 1; color: var(--ink); }
.faqQ span.sign { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; color: var(--orange); flex: none; }
.faqA { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faqA p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0 18px 18px;
  border-top: 1px solid #F0ECE6;
  padding-top: 13px;
}

/* contact */
.contactGrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
@media (max-width: 820px) { .contactGrid { grid-template-columns: 1fr; } }
.contactIntro h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 9px 0 12px;
}
.contactIntro p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 20px; }
.contactIntro .btn { width: 100%; min-height: 56px; }
.contactIntro .heronote { margin-top: 14px; }
.contactCard {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 22px;
  padding: clamp(18px, 2.4vw, 26px);
}
.contactCardTitle { font-weight: 700; font-size: 14.5px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-weight: 600; font-size: 13px; }
.field input {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: 500 15px inherit;
  color: var(--ink);
  width: 100%;
}
.branchOpts { display: flex; gap: 8px; }
.branchOpts button {
  flex: 1;
  padding: 13px 0;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink-soft);
  font: 500 15px inherit;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  direction: ltr;
}
.branchOpts button.on { background: var(--orange-tint); border-color: var(--orange); color: var(--orange-dark); }
.submitNote { font-size: 12px; color: var(--ink-faint); line-height: 1.55; margin-top: 10px; }
.contactCard .btn { width: 100%; min-height: 54px; }

footer {
  padding: 26px 0 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-faint);
}
.fbrand { display: flex; align-items: center; gap: 9px; }
.fbrand .name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); }
footer .flinks { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
footer a { color: var(--ink-soft); font-weight: 600; }
footer .langbtn { padding: 6px 12px; font-size: 11px; }

@media (max-width: 700px) {
  .navlinks { display: none; }
}
