/* datfit — design tokens + cross-platform styles */

:root {
  --accent: oklch(0.58 0.18 270);
  --accent-soft: oklch(0.84 0.10 270);
  --accent-tint: oklch(0.97 0.025 270);
  --accent-ink: #fff;

  --ink: #1a1a1d;
  --ink-2: #2a2a30;
  --ink-mute: #767680;
  --ink-faint: oklch(0.92 0.005 270);

  --bg: #fafaf9;
  --bg-elev: #ffffff;
  --line: oklch(0.93 0.005 270);
  --line-strong: oklch(0.88 0.005 270);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 30, 0.04), 0 1px 3px rgba(20, 20, 30, 0.04);
  --shadow: 0 1px 3px rgba(20, 20, 30, 0.05), 0 8px 24px rgba(20, 20, 30, 0.06);
  --shadow-lg: 0 4px 14px rgba(20, 20, 30, 0.08), 0 16px 40px rgba(20, 20, 30, 0.08);

  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font-family: inherit; cursor: pointer; }

/* ─── Form primitives ────────────────────────────────── */
.df-field {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.df-field-label {
  font-weight: 500; color: var(--ink-2);
  font-size: 12px; letter-spacing: 0.01em;
}
.df-field-hint, .df-field-error {
  font-size: 11px; color: var(--ink-mute);
}

.df-input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.df-input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px; color: var(--ink);
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.df-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.df-input::placeholder { color: var(--ink-mute); }
.df-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.df-input--select {
  appearance: none; -webkit-appearance: none;
  padding-right: 32px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%),
                    linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%);
  background-position: right 16px center, right 11px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.df-input--select:disabled { cursor: not-allowed; opacity: 0.5; }
.df-input-affix {
  position: absolute; right: 12px;
  font-size: 12px; color: var(--ink-mute);
  pointer-events: none;
  display: inline-flex; align-items: center;
}

/* ─── Segmented ──────────────────────────────────────── */
.df-segmented {
  display: flex; gap: 4px;
  padding: 3px; background: var(--ink-faint);
  border-radius: var(--radius);
}
.df-seg-item {
  flex: 1; border: 0; background: transparent;
  padding: 8px 10px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-mute); border-radius: 9px;
  transition: all 0.15s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.df-seg-item:hover { color: var(--ink); }
.df-seg-item.is-active {
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.df-seg-icon {
  display: inline-flex; width: 16px; height: 16px; color: currentColor;
}
.df-seg-icon svg { width: 100%; height: 100%; }

/* ─── Body-type cards ────────────────────────────────── */
.df-bodytypes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.df-bodytype {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 4px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-mute);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}
.df-bodytype svg { width: 28px; height: 36px; color: var(--ink-mute); transition: color 0.15s; }
.df-bodytype span { font-size: 11px; font-weight: 500; }
.df-bodytype:hover { color: var(--ink); border-color: var(--ink-mute); }
.df-bodytype:hover svg { color: var(--ink-2); }
.df-bodytype.is-active {
  background: var(--accent-tint);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-tint);
}
.df-bodytype.is-active svg { color: var(--accent); }

/* ─── Buttons ───────────────────────────────────────── */
.df-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
  font-family: inherit; font-weight: 500;
  border-radius: var(--radius);
  transition: transform 0.08s, box-shadow 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.df-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.df-btn:active:not(:disabled) { transform: translateY(1px); }
.df-btn--sm { padding: 7px 12px; font-size: 13px; min-height: 32px; }
.df-btn--md { padding: 10px 16px; font-size: 14px; min-height: 40px; }
.df-btn--lg { padding: 13px 20px; font-size: 15px; min-height: 48px; }

.df-btn--primary { background: var(--accent); color: var(--accent-ink); }
.df-btn--primary:hover:not(:disabled) {
  background: oklch(from var(--accent) calc(l - 0.05) c h);
  box-shadow: 0 4px 14px oklch(from var(--accent) l c h / 0.35);
}
.df-btn--ghost {
  background: transparent; color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.df-btn--ghost:hover:not(:disabled) {
  background: var(--ink-faint);
  color: var(--ink);
}

/* ─── Drop zone ──────────────────────────────────────── */
.df-drop {
  display: flex; align-items: center; gap: 14px;
  padding: 18px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(0deg, var(--accent-tint), transparent 40%);
  cursor: pointer;
  transition: all 0.15s;
}
.df-drop:hover { border-color: var(--accent); background: var(--accent-tint); }
.df-drop.is-drag { border-style: solid; border-color: var(--accent); background: var(--accent-tint); }
.df-drop.is-filled { border-style: solid; border-color: var(--accent-soft); background: #fff; }
.df-drop-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.df-drop-text { min-width: 0; }
.df-drop-title {
  font-weight: 500; font-size: 14px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.df-drop-sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }

/* ─── Combobox ───────────────────────────────────────── */
.df-combo { position: relative; }
.df-combo-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  max-height: 260px; overflow-y: auto;
  box-shadow: var(--shadow);
  display: none;
  z-index: 30;
  padding: 4px;
}
.df-combo.is-open .df-combo-list { display: block; }
.df-combo-item {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 8px 10px; border-radius: 8px;
  cursor: pointer; font-size: 13px;
  transition: background 0.12s;
}
.df-combo-item:hover, .df-combo-item.is-active { background: var(--accent-tint); }
.df-combo-name { color: var(--ink); font-weight: 500; }
.df-combo-meta { color: var(--ink-mute); font-size: 11px; }
.df-combo-empty { padding: 12px 10px; font-size: 12px; color: var(--ink-mute); }

/* ─── Tag / pill ─────────────────────────────────────── */
.df-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 500;
  padding: 3px 8px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent);
  letter-spacing: 0.02em;
}

/* ─── Result card ────────────────────────────────────── */
.df-result {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--accent-tint), #fff 70%);
  border: 1px solid var(--accent-soft);
  animation: dfResultIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes dfResultIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.df-result-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.df-result-brand { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.df-result-size {
  display: flex; align-items: baseline; gap: 12px;
  margin: 4px 0 14px;
}
.df-result-size-num {
  font-size: 56px; font-weight: 600; line-height: 1;
  letter-spacing: -0.04em; color: var(--ink);
}
.df-result-size-cat { font-size: 14px; color: var(--ink-mute); }
.df-result-conf {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.df-result-conf-bar {
  flex: 1; height: 4px; border-radius: 999px;
  background: oklch(0.94 0.01 270); overflow: hidden;
}
.df-result-conf-bar span {
  display: block; height: 100%;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.df-result-conf-label {
  font-size: 12px; color: var(--ink-mute); white-space: nowrap;
}
.df-result-notes { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.df-result-actions {
  display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px;
}

/* ─── Processing ───────────────────────────────────── */
.df-process {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0;
}
.df-process-dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
  animation: dfPulse 1.2s infinite;
}
.df-process-dot:nth-child(2) { animation-delay: 0.18s; }
.df-process-dot:nth-child(3) { animation-delay: 0.36s; }
.df-process-label { font-size: 13px; color: var(--ink-mute); margin-left: 6px; }
@keyframes dfPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ─── Form layouts ───────────────────────────────────── */
.df-form { display: flex; flex-direction: column; gap: 14px; }
.df-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── Toast ───────────────────────────────────────── */
.df-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translate(-50%, 12px);
  background: #1a1a1d; color: #fff;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  z-index: 50;
}
.df-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ═══════════════════════════════════════════════════
   WEB
   ═══════════════════════════════════════════════════ */
.web-root { display: flex; flex-direction: column; min-height: 100vh; }
.web-nav {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(10px);
  position: sticky; top: 0; z-index: 20;
}
.web-nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.web-brand { background: 0; border: 0; padding: 0; cursor: pointer; }
.web-wordmark {
  font-weight: 600; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 20px;
}
.web-nav-links { display: flex; gap: 4px; flex: 1; }
.web-nav-link {
  background: 0; border: 0;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; color: var(--ink-mute);
  transition: all 0.15s;
}
.web-nav-link:hover { color: var(--ink); background: var(--ink-faint); }
.web-nav-link.is-active { color: var(--ink); }
.web-nav-cta { display: flex; align-items: center; gap: 8px; }

/* Account button — icon only */
.web-account-wrap { position: relative; }
.web-account-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 0; padding: 0; cursor: pointer;
  background: transparent;
  box-shadow: 0 0 0 1px var(--line-strong);
  transition: box-shadow 0.15s, transform 0.08s;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
}
.web-account-btn:hover { box-shadow: 0 0 0 2px var(--accent); }
.web-account-btn:active { transform: scale(0.95); }
.web-account-avatar-glyph {
  display: inline-flex; width: 100%; height: 100%;
  border-radius: 999px; overflow: hidden;
}
.web-account-avatar-glyph svg { width: 100%; height: 100%; display: block; }
.web-account-avatar-glyph--lg { width: 52px; height: 52px; flex-shrink: 0; }

.web-account-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 40;
  animation: dfResultIn 0.18s ease;
}
.web-account-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.web-account-headtext { min-width: 0; }
.web-account-name {
  font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.web-account-link {
  background: 0; border: 0; padding: 2px 0;
  font-size: 12px; color: var(--accent); cursor: pointer;
  font-family: inherit;
}
.web-account-link:hover { text-decoration: underline; }

/* Auth form */
.web-account-authform {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 12px;
}
.web-account-authform .df-btn { width: 100%; }

/* Avatar picker grid */
.web-account-avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.web-account-avatar-pick {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 0; padding: 2px;
  background: transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow 0.15s, transform 0.08s;
  overflow: hidden;
}
.web-account-avatar-pick svg { width: 100%; height: 100%; border-radius: 999px; display: block; }
.web-account-avatar-pick:hover { box-shadow: inset 0 0 0 2px var(--ink-mute); }
.web-account-avatar-pick.is-active {
  box-shadow: inset 0 0 0 2px var(--accent), 0 0 0 2px var(--accent-tint);
}
.web-account-section { margin-top: 4px; }
.web-account-section-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-mute); font-weight: 500;
  margin-bottom: 8px;
}
.web-account-profiles {
  display: flex; flex-direction: column; gap: 6px;
  max-height: 240px; overflow-y: auto;
}
.web-account-empty {
  font-size: 12px; color: var(--ink-mute);
  padding: 12px; text-align: center;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
}
.web-account-profile {
  display: flex; align-items: center; gap: 6px;
  padding: 4px;
  border-radius: var(--radius);
  background: var(--ink-faint);
}
.web-account-profile-load {
  flex: 1; min-width: 0;
  background: transparent; border: 0;
  padding: 8px 10px; text-align: left;
  font-family: inherit; cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.web-account-profile-load:hover { background: #fff; }
.web-account-profile-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.web-account-profile-meta { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.web-account-profile-last { font-size: 11px; color: var(--accent); margin-top: 2px; font-weight: 500; }
.web-account-profile-del {
  width: 28px; height: 28px; border: 0; border-radius: 8px;
  background: transparent; color: var(--ink-mute);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
}
.web-account-profile-del:hover { background: #fff; color: oklch(0.6 0.18 25); }
.web-account-actions {
  display: flex; gap: 8px; margin-top: 14px;
}
.web-account-actions .df-btn { flex: 1; }
.web-account-foot {
  font-size: 11px; color: var(--ink-mute);
  text-align: center; margin-top: 12px;
}

.web-main { flex: 1; }
.web-foot {
  border-top: 1px solid var(--line);
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--ink-mute);
  max-width: 1200px; margin: 0 auto; width: 100%;
}

.web-eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--accent);
  display: inline-block; margin-bottom: 14px;
}
.web-h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  margin: 0; color: var(--ink);
  text-wrap: balance;
}
.web-h1 em { font-style: italic; color: var(--accent); }
.web-h2 {
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 32px; color: var(--ink);
}
.web-lede {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  max-width: 50ch; margin: 16px 0 0;
  text-wrap: pretty;
}

.web-home { max-width: 1200px; margin: 0 auto; padding: 32px; }
.web-hero {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 48px; align-items: start;
  padding: 32px 0 64px;
}
.web-hero-copy { padding-top: 32px; }
.web-hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.web-hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.web-hero-stats strong {
  font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em;
}
.web-hero-stats span { font-size: 12px; color: var(--ink-mute); }

.web-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.web-hero-card { position: sticky; top: 96px; }
.web-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.web-card-head h3 {
  margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.web-hero-card .df-field { margin-bottom: 12px; }
.web-card-divider {
  height: 1px; background: var(--line); margin: 18px -24px;
}
.web-card-actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
}
.web-card-actions--right { justify-content: flex-end; }
.web-card-hint { font-size: 12px; color: var(--ink-mute); }

.web-band {
  background: var(--accent-tint);
  margin: 0 -32px;
  padding: 64px 32px;
  border-radius: var(--radius-xl);
}
.web-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.web-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--line);
}
.web-step-num {
  font-size: 11px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.1em;
}
.web-step h4 {
  margin: 14px 0 6px; font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
}
.web-step p {
  margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-2);
}

/* Web — text pages */
.web-text { max-width: 1100px; margin: 0 auto; padding: 64px 32px 96px; }
.web-text--narrow { max-width: 720px; padding-bottom: 32px; }
.web-text-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
}
.web-text-cols h3 {
  margin: 0 0 12px; font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
}
.web-text-cols p {
  margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2);
}

/* Web — contact */
.web-contact { max-width: 1100px; margin: 0 auto; padding: 64px 32px 96px; }
.web-contact-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 48px; margin-top: 8px;
}
.web-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.web-card form { display: flex; flex-direction: column; gap: 14px; }
.web-faq h3 {
  margin: 0 0 16px; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--ink-mute); font-weight: 500;
}
.web-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.web-faq-item summary {
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 500; color: var(--ink);
  list-style: none;
}
.web-faq-item summary::-webkit-details-marker { display: none; }
.web-faq-item summary svg { transition: transform 0.2s; color: var(--ink-mute); }
.web-faq-item[open] summary svg { transform: rotate(180deg); }
.web-faq-item p {
  margin: 10px 0 0; font-size: 13px; color: var(--ink-2); line-height: 1.55;
}

.web-sent { text-align: center; padding: 24px 12px; }
.web-sent-icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.web-sent h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.web-sent p { margin: 0 0 18px; color: var(--ink-2); font-size: 14px; }

/* Page visibility */
.page { display: none; }
.page.is-active { display: block; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1040px) {
  .web-hero { grid-template-columns: 1fr; gap: 32px; }
  .web-hero-card { position: static; }
  .web-text-cols, .web-steps { grid-template-columns: 1fr; gap: 18px; }
  .web-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .web-nav-inner { padding: 0 18px; gap: 18px; }
  .web-home, .web-text, .web-contact { padding: 24px 18px; }
  .web-hero { padding: 16px 0 32px; }
  .web-band { margin: 0 -18px; padding: 36px 18px; border-radius: var(--radius-lg); }
  .web-form-row { grid-template-columns: 1fr; }
  .web-foot { flex-direction: column; gap: 8px; align-items: flex-start; padding: 18px; }
  .web-nav-link { padding: 8px 10px; }
  .df-result-size-num { font-size: 48px; }
  .df-bodytypes { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .df-bodytype { padding: 8px 2px; }
  .df-bodytype svg { width: 22px; height: 28px; }
  .df-bodytype span { font-size: 10px; }
  .web-account-menu { width: calc(100vw - 36px); right: -8px; }
}
