/* =====================================================================
   Breedo Market — base layer
   tokens · reset · typography · floating pill header · buttons · footer

   Design direction: premium navy-blue canvas inspired by the Breedo logo.
   Deep navy primary (#1A2B5F), vivid electric blue accent (#2979FF),
   coral-orange highlight, purple-to-magenta gradient, oversized tight
   display type, pill navigation and generously rounded cards.
   ===================================================================== */

/* ------------------------------- Tokens -------------------------------- */
:root {
  /* palette — light (default) */
  --canvas: #F4F6FB;
  --canvas-2: #EBEEf6;
  --surface: #FFFFFF;
  --surface-2: #F8FAFF;
  --ink: #0D1030;
  --ink-2: #2D3258;
  --muted: #6570A0;
  --muted-2: #9BA3C8;
  --line: rgba(26, 43, 95, .10);
  --line-2: rgba(26, 43, 95, .20);
  --glass: rgba(26, 43, 95, .05);
  --glass-2: rgba(26, 43, 95, .09);

  /* brand — extracted from Breedo logo */
  --brand: #1A2B5F;          /* deep navy — primary surfaces & buttons */
  --brand-ink: #FFFFFF;      /* text on brand */
  --accent: #2979FF;         /* electric blue — links, eyebrows, prices */
  --lime: #FF6B35;           /* coral-orange highlight (logo bag colour) */
  --lime-ink: #FFFFFF;
  --danger: #E91E8C;
  --star: #FF9800;

  /* premium logo gradients */
  --grad: linear-gradient(120deg, #1A2B5F 0%, #2979FF 55%, #7B2FF7 100%);
  --grad-lime: linear-gradient(120deg, #FF6B35 0%, #E91E8C 55%, #7B2FF7 100%);
  --grad-soft: linear-gradient(140deg, rgba(41,121,255,.14), rgba(123,47,247,.16));
  --grad-hero: linear-gradient(135deg, #1A2B5F 0%, #2979FF 40%, #7B2FF7 70%, #E91E8C 100%);

  /* elevation */
  --shadow-xs: 0 1px 2px rgba(26, 43, 95, .07);
  --shadow-sm: 0 2px 6px rgba(26, 43, 95, .07), 0 12px 28px -20px rgba(26, 43, 95, .28);
  --shadow-md: 0 10px 24px -14px rgba(26, 43, 95, .22), 0 28px 60px -32px rgba(26, 43, 95, .35);
  --shadow-lg: 0 40px 90px -40px rgba(26, 43, 95, .45);
  --shadow-brand: 0 14px 32px -14px rgba(41, 121, 255, .5);
  --ring: 0 0 0 3px rgba(41, 121, 255, .24);
  --img-bg: #E4E8F5;

  /* geometry */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;
  --pad: clamp(18px, 4vw, 48px);
  --maxw: 1280px;
  --header-h: 96px;

  /* motion */
  --e-out: cubic-bezier(.22, 1, .36, 1);
  --e-spring: cubic-bezier(.34, 1.4, .64, 1);
  --e-in-out: cubic-bezier(.65, .05, .36, 1);
  --t-fast: .18s var(--e-out);
  --t: .34s var(--e-out);
  --t-slow: .7s var(--e-out);
}

[data-theme="dark"] {
  --canvas: #080C1A;
  --canvas-2: #0D1124;
  --surface: #111827;
  --surface-2: #161E30;
  --ink: #EEF0FA;
  --ink-2: #C8CDED;
  --muted: #8A95C2;
  --muted-2: #5A6388;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --glass: rgba(255, 255, 255, .05);
  --glass-2: rgba(255, 255, 255, .09);

  --brand: #2979FF;
  --brand-ink: #FFFFFF;
  --accent: #64B5F6;
  --lime: #FF8C5A;
  --lime-ink: #1A2B5F;
  --danger: #F06292;

  --grad: linear-gradient(120deg, #2979FF 0%, #7B2FF7 55%, #E91E8C 100%);
  --grad-lime: linear-gradient(120deg, #FF6B35 0%, #E91E8C 55%, #7B2FF7 100%);
  --grad-soft: linear-gradient(140deg, rgba(41,121,255,.18), rgba(123,47,247,.18));

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .5), 0 16px 32px -24px rgba(0, 0, 0, .7);
  --shadow-md: 0 12px 28px -16px rgba(0, 0, 0, .6), 0 34px 70px -36px rgba(0, 0, 0, .8);
  --shadow-lg: 0 44px 100px -44px rgba(0, 0, 0, .95);
  --shadow-brand: 0 14px 32px -16px rgba(41, 121, 255, .5);
  --ring: 0 0 0 3px rgba(41, 121, 255, .28);
  --img-bg: #1A2240;
}

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--canvas);
}
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--e-out), color .5s var(--e-out);
}
img, svg, video { display: block; max-width: 100%; }
img { background: var(--img-bg); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
::selection { background: rgba(41, 121, 255, .25); color: var(--ink); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; border: 3px solid var(--canvas); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ----------------------------- Typography ------------------------------ */
h1, h2, h3, h4, .display {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -.028em; }
h4 { font-size: 1.08rem; letter-spacing: -.02em; font-weight: 700; }
p { color: var(--muted); }

.display-xl { font-size: clamp(3rem, 7.4vw, 6rem); font-weight: 800; letter-spacing: -.042em; line-height: .96; }
.thin { font-weight: 300; letter-spacing: -.03em; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.underline-lime { position: relative; display: inline-block; z-index: 0; }
.underline-lime::after {
  content: ''; position: absolute; left: -.06em; right: -.06em; bottom: .06em; height: .34em;
  background: var(--lime); border-radius: 99px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s var(--e-out) .3s;
}
.in .underline-lime::after, .split.in .underline-lime::after { transform: scaleX(1); }
[data-theme="dark"] .underline-lime::after { height: .1em; bottom: .02em; left: 0; right: 0; }

/* eyebrow — small caps label, optionally a pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px 8px 12px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: var(--ink);
  text-transform: none;
}
.eyebrow-pill svg { width: 15px; height: 15px; color: var(--accent); }
.eyebrow-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(198, 242, 77, .3); }

.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; max-width: 560px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }

/* ------------------------------- Layout -------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(60px, 8vw, 120px); position: relative; }
.section-tight { padding-block: clamp(38px, 5vw, 70px); }
.row { display: flex; align-items: center; gap: 12px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.grid { display: grid; gap: 24px; }
.stack { display: flex; flex-direction: column; gap: 14px; }

/* a soft rounded slab that sits on the canvas (Zenvic-style) */
.slab {
  background: var(--surface-2); border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 68px) 0;
}

/* --------------------------- Floating header --------------------------- */
.header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 300; width: min(calc(100% - 2 * var(--pad)), var(--maxw));
  transition: top var(--t), width var(--t);
}
.header-inner {
  display: flex; align-items: center; gap: 16px;
  height: 66px; padding: 0 8px 0 20px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow var(--t), background var(--t), height var(--t);
}
.header.is-stuck { top: 10px; }
.header.is-stuck .header-inner { height: 60px; box-shadow: var(--shadow-md); background: color-mix(in srgb, var(--surface) 94%, transparent); }

.logo { display: flex; align-items: center; flex-shrink: 0; transition: transform .45s var(--e-spring), opacity var(--t-fast); }
.logo:hover { transform: scale(1.04); opacity: .9; }
.logo img { background: transparent !important; display: block; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand); color: var(--brand-ink);
  transition: transform .5s var(--e-spring);
}
.logo-mark svg { width: 19px; height: 19px; }
.logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.16rem;
  letter-spacing: -.04em; color: var(--ink);
}
.logo-text span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 10px; }
.nav a {
  position: relative; padding: 9px 14px; border-radius: var(--r-pill);
  font-size: .93rem; font-weight: 600; color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover { color: var(--ink); background: var(--glass); }
.nav a.active { color: var(--ink); }
.nav a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px;
  background: var(--lime); border-radius: 99px;
  animation: navSlide .45s var(--e-out);
}

.header-search { flex: 1; max-width: 340px; position: relative; margin-inline: auto; }
.header-search input {
  width: 100%; height: 42px; padding: 0 42px 0 40px;
  background: var(--glass); border: 1px solid transparent; border-radius: var(--r-pill);
  font-size: .9rem; transition: all var(--t-fast);
}
.header-search input::placeholder { color: var(--muted-2); }
.header-search input:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: var(--ring); }
.header-search .s-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.header-search kbd {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: .68rem; font-family: inherit; font-weight: 700; color: var(--muted-2);
  border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px;
}

.header-actions { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: var(--muted); background: transparent; position: relative;
  transition: color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.icon-btn:hover { color: var(--ink); background: var(--glass-2); transform: translateY(-1px); }
.icon-btn .badge {
  position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 5px;
  border-radius: 99px; background: var(--accent); color: #fff; font-size: .64rem; font-weight: 800;
  display: grid; place-items: center; border: 2px solid var(--surface);
  animation: pop .4s var(--e-spring);
}
[data-theme="dark"] .icon-btn .badge { color: var(--lime-ink); }
.avatar-btn { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--line-2); transition: border-color var(--t-fast), transform var(--t-fast); margin-left: 4px; }
.avatar-btn:hover { border-color: var(--accent); transform: scale(1.05); }
.avatar-btn img { width: 100%; height: 100%; object-fit: cover; }
.burger { display: none; }

/* dropdown panels */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); right: 0; width: 350px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 10px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.97);
  transform-origin: top right;
  transition: opacity .22s var(--e-out), transform .3s var(--e-spring), visibility .22s;
}
.dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: none; }
.dropdown-panel h5 { padding: 8px 12px 6px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.dd-item {
  display: flex; gap: 12px; align-items: flex-start; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: var(--r-sm); transition: background var(--t-fast);
}
.dd-item:hover { background: var(--glass); }
.dd-item img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dd-item .dd-txt { font-size: .88rem; line-height: 1.45; }
.dd-item .dd-txt b { font-weight: 700; }
.dd-item time { display: block; font-size: .73rem; color: var(--muted-2); margin-top: 2px; }
.dd-foot { padding: 10px 12px 4px; border-top: 1px solid var(--line); margin-top: 6px; }
.dd-foot a { font-size: .85rem; font-weight: 700; color: var(--accent); }

/* ------------------------------- Buttons ------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 24px; border-radius: var(--r-pill);
  background: var(--surface); color: var(--ink);
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em; white-space: nowrap;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-fast), box-shadow var(--t), border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.btn:active { transform: translateY(0) scale(.985); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--brand); color: var(--brand-ink); border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { box-shadow: 0 18px 40px -14px rgba(41, 121, 255, .6); }
[data-theme="dark"] .btn-primary:hover { box-shadow: 0 18px 40px -14px rgba(41, 121, 255, .5); }
.btn-lime { background: var(--lime); color: var(--lime-ink); border-color: transparent; }
.btn-lime:hover { box-shadow: 0 16px 34px -14px rgba(255, 107, 53, .6); }
.btn-accent { background: var(--accent); color: #fff; border-color: transparent; }
.btn-ghost { background: transparent; box-shadow: none; }
.btn-ghost:hover { background: var(--glass); }
.btn-solid { background: var(--ink); color: var(--canvas); border-color: transparent; }
.btn-sm { height: 40px; padding: 0 18px; font-size: .87rem; }
.btn-lg { height: 56px; padding: 0 30px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* arrow that slides on hover (all four references use this) */
.btn .arw { transition: transform .4s var(--e-out); }
.btn:hover .arw { transform: translateX(4px); }
.btn-round-arrow {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .16); margin-right: -14px; margin-left: 2px;
  transition: transform .4s var(--e-out), background var(--t-fast);
}
.btn:hover .btn-round-arrow { transform: translateX(3px); background: rgba(255, 255, 255, .26); }

.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255, 255, 255, .4); pointer-events: none;
  animation: ripple .62s var(--e-out) forwards;
}
.btn:not(.btn-primary):not(.btn-solid):not(.btn-accent) .ripple { background: rgba(14, 13, 11, .12); }
[data-theme="dark"] .btn:not(.btn-primary):not(.btn-solid):not(.btn-accent) .ripple { background: rgba(255, 255, 255, .16); }

/* ------------------------------- Footer -------------------------------- */
.footer {
  position: relative; margin-top: 70px; padding-top: 74px;
  background: var(--brand); color: var(--brand-ink);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}
[data-theme="dark"] .footer { background: var(--surface); color: var(--ink); }
.footer::before {
  content: ''; position: absolute; top: -160px; right: -80px; width: 520px; height: 520px;
  border-radius: 50%; background: var(--grad-lime); filter: blur(120px); opacity: .22; pointer-events: none;
}
.footer .logo img {
  filter: none;
  background: #fff !important;
  border-radius: 14px;
  padding: 6px 10px;
  height: 48px;
  width: auto;
  object-fit: contain;
  box-shadow: 0 4px 18px -6px rgba(0,0,0,.35);
}
.footer .logo-text { color: inherit; }
.footer .logo-text span { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 44px; position: relative; }
.footer h5 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; opacity: .55; margin-bottom: 18px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .95rem; opacity: .78; width: fit-content; transition: opacity var(--t-fast), transform var(--t-fast); }
.footer-links a:hover { opacity: 1; transform: translateX(4px); }
.footer-brand p { margin: 18px 0 24px; max-width: 340px; font-size: .96rem; opacity: .74; color: inherit; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(243, 242, 237, .22); opacity: .8;
  transition: transform var(--t), background var(--t-fast), color var(--t-fast), opacity var(--t-fast);
}
[data-theme="dark"] .socials a { border-color: var(--line-2); }
.socials a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--lime); color: var(--lime-ink); border-color: transparent; opacity: 1; }
.footer-bottom {
  margin-top: 58px; padding: 24px 0; border-top: 1px solid rgba(243, 242, 237, .16);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .86rem; opacity: .62;
}
[data-theme="dark"] .footer-bottom { border-top-color: var(--line); }
.footer-bottom a:hover { opacity: 1; color: var(--lime); }

/* ------------------------------ Utilities ------------------------------ */
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.tiny { font-size: .78rem; }
.bold { font-weight: 700; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; } .mt-4 { margin-top: 40px; }
.hide { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.divider { height: 1px; background: var(--line); margin-block: 22px; }
.page { padding-top: var(--header-h); min-height: 60vh; }
.blob { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }

/* dotted halftone strip (AIFusionX-style section transition) */
.halftone {
  height: 90px; width: 100%;
  background-image: radial-gradient(var(--line-2) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
  mask-image: linear-gradient(to bottom, #000, transparent);
  opacity: .8; pointer-events: none;
}

/* --------------------------- Responsive header -------------------------- */
@media (max-width: 1120px) {
  .header-search { max-width: 220px; }
  .nav a { padding: 9px 10px; font-size: .89rem; }
}
@media (max-width: 940px) {
  .nav, .header-search kbd { display: none; }
  .burger { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  :root { --header-h: 88px; }
  .eyebrow-pill .ep-extra { display: none; }
  .header-search { display: none; }
  .hide-sm { display: none !important; }
  .sell-label { display: none; }
  .sell-cta { padding: 0 14px; }
  .header-inner { height: 60px; padding: 0 8px 0 14px; gap: 8px; }
  .header .icon-btn { width: 38px; height: 38px; }
  .header .avatar-btn { width: 34px; height: 34px; }
  .logo-mark { width: 32px; height: 32px; border-radius: 10px; }
  .logo-mark svg { width: 17px; height: 17px; }
  .logo-text { font-size: 1.02rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .logo-text { font-size: .95rem; }
  .header .icon-btn { width: 34px; height: 34px; }
}

/* --------------------------- Mobile drawer ------------------------------ */
.drawer { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-back {
  position: absolute; inset: 0; background: rgba(14, 13, 11, .5);
  opacity: 0; transition: opacity var(--t); backdrop-filter: blur(4px);
}
.drawer.open .drawer-back { opacity: 1; }
.drawer-panel {
  position: absolute; inset: 10px 10px 10px auto; width: min(360px, 88vw);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(110%); transition: transform .5s var(--e-out);
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a.d-link, .drawer-panel button.d-link {
  padding: 15px 4px; font-family: 'Outfit', sans-serif; font-size: 1.32rem; font-weight: 700;
  letter-spacing: -.03em; text-align: left; width: 100%;
  border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateX(24px);
}
.drawer.open .drawer-panel a.d-link, .drawer.open .drawer-panel button.d-link { animation: drawerIn .5s var(--e-out) forwards; }
.drawer.open .drawer-panel .d-link:nth-child(2) { animation-delay: .05s; }
.drawer.open .drawer-panel .d-link:nth-child(3) { animation-delay: .1s; }
.drawer.open .drawer-panel .d-link:nth-child(4) { animation-delay: .15s; }
.drawer.open .drawer-panel .d-link:nth-child(5) { animation-delay: .2s; }
.drawer.open .drawer-panel .d-link:nth-child(6) { animation-delay: .25s; }
.drawer.open .drawer-panel .d-link:nth-child(7) { animation-delay: .3s; }
.drawer-close { position: absolute; top: 20px; right: 20px; }
