:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --ink: #f5f5f5;
  --ink-secondary: #b3b3b3;
  --ink-muted: #6e6e6e;
  --line: #262626;
  --line-strong: #3d3d3d;
  --accent: #8ab4ff;
  --accent-2: #c9a9ff;
  --green: #4ade80;
  --orange: #fb923c;
  --red: #ef4444;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

a, button { touch-action: manipulation; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
  -webkit-user-select: none;
  user-select: none;
}

input, textarea {
  -webkit-user-select: text;
  user-select: text;
}

::selection { background: var(--ink); color: var(--bg); }

#bg3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: -60px;              
  will-change: transform;
}

.bg-vignette {
  inset: 0;
  background: radial-gradient(circle at 50% 0%, #161616 0%, #0d0d0d 38%, #000 100%);
}

.bg-fade {
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 24%, rgba(0,0,0,0.46) 100%);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.18;
}

#bg-canvas {
  position: absolute;
  inset: 0;
}

.navbar {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 24px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-note {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.lang-switch {
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch button {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-switch button:hover { color: var(--ink); }

.lang-switch button.active {
  background: var(--ink);
  color: var(--bg);
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.card {
  background: rgba(18, 18, 18, 0.4);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.section-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.hero {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 38px 40px;
}

.hero-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.hero-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  clip-path: polygon(50% 0, 100% 0, 100% 35%, 50% 35%);
  animation: orbit 5s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.avatar {
  display: block;
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: 0.01em;
  background: linear-gradient(100deg, #ffffff 25%, var(--accent) 60%, var(--accent-2) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  color: var(--ink-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.about {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover { box-shadow: 0 8px 28px -10px rgba(255, 255, 255, 0.35); }

.btn-solid {
  background: var(--ink);
  color: var(--bg);
}

.btn-solid:hover { background: #ffffff; }

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--ink); }

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.35s ease;
}

.link-row:hover {
  border-color: var(--brand, var(--ink));
  box-shadow: 0 10px 34px -14px var(--brand, transparent);
}

[data-type="tiktok"]    { --brand: #ffffff; }
[data-type="youtube"]   { --brand: #ff3b3b; }
[data-type="telegram"]  { --brand: #4db8ff; }
[data-type="discord"]   { --brand: #6473f2; }
[data-type="instagram"] { --brand: #ff3d5e; }
[data-type="email"]     { --brand: #fb923c; }
[data-type="bot"]       { --brand: #ffffff; }

.link-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}

.link-row:hover::before { transform: scaleY(1); }

.link-row:hover .link-num,
.link-row:hover .link-title,
.link-row:hover .link-subtitle,
.link-row:hover .link-arrow,
.link-row:hover .link-copy { color: var(--bg); }

.link-row:hover .link-copy { border-color: rgba(10, 10, 10, 0.35); }

.link-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--ink-muted);
  width: 26px;
  flex-shrink: 0;
  transition: color 0.35s ease;
}

.link-text { flex: 1; min-width: 0; }

.link-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.01em;
  transition: color 0.35s ease;
}

.link-subtitle {
  margin-top: 3px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s ease;
}

.link-group { display: flex; flex-direction: column; }

.link-row.expandable { cursor: pointer; }

.link-chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.4s var(--ease-out), color 0.35s ease;
}

.link-row:hover .link-chevron { color: var(--bg); }

.link-group.open .link-chevron { transform: rotate(180deg); }

.link-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}

.link-sub > div { overflow: hidden; }

.link-group.open .link-sub { grid-template-rows: 1fr; }

.link-sub-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 6px 4px 26px;
}

.sub-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}

.sub-row:hover {
  border-color: var(--brand, var(--ink));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.sub-note {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.link-copy {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.link-copy:hover { border-color: var(--ink); }

.link-arrow {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: color 0.35s ease, transform 0.45s var(--ease-out);
}

.link-row:hover .link-arrow { transform: translate(4px, -4px); }

.platform-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.platform-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 14px 9px;
  min-width: 68px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.platform-tab:hover {
  border-color: var(--brand, var(--line-strong));
}

.tab-delta.up   { color: var(--green); }
.tab-delta.down { color: var(--red); }

.platform-tab.active .tab-delta.up   { color: #15803d; }
.platform-tab.active .tab-delta.down { color: #b91c1c; }

.platform-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.platform-tab svg { width: 20px; height: 20px; }

.platform-tab .tab-delta {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.75;
}

.chart-block { margin-bottom: 22px; }
.chart-block:last-child { margin-bottom: 0; }

.chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.chart-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.chart-value {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
  text-align: right;
}

.chart-wrap {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 8px;
}

.chart-wrap svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  animation: chart-in 0.55s var(--ease-out);
}

@keyframes chart-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.chart-grid-line {
  stroke: #232323;
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--chart-color, var(--ink));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-area { fill: var(--chart-fill, rgba(245, 245, 245, 0.06)); }

.chart-dot {
  fill: var(--chart-color, var(--ink));
  stroke: var(--surface-2);
  stroke-width: 2;
}

.chart-wrap.trend-up {
  --chart-color: var(--green);
  --chart-fill: rgba(74, 222, 128, 0.08);
}

.chart-wrap.trend-down {
  --chart-color: var(--red);
  --chart-fill: rgba(251, 146, 60, 0.09);
}

.chart-wrap.trend-down .chart-line { stroke: url(#grad-down); }

.chart-axis-text {
  font-family: var(--font-body);
  font-size: 9px;
  fill: var(--ink-muted);
}

.chart-hover-dot {
  fill: var(--chart-color, var(--ink));
  stroke: var(--surface-2);
  stroke-width: 2;
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.chart-hover-line {
  stroke: var(--line-strong);
  stroke-width: 1;
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.chart-tooltip {
  position: fixed;
  z-index: 20;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 9px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity 0.15s ease, left 0.18s cubic-bezier(0.22, 1, 0.36, 1), top 0.18s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.chart-tooltip.show { opacity: 1; }

.method-note {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin: -8px 0 18px;
}

.method-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.method-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}

.method-link:hover {
  border-color: var(--brand, var(--ink));
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 22px -14px var(--brand, transparent);
}

.method-link svg {
  width: 26px; height: 26px;
  color: var(--ink-secondary);
  transition: color 0.3s ease;
}

.method-link:hover svg { color: var(--brand, var(--ink)); }

.method-link-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.method-link-subtitle {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
}

.contact-note {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
}

.contact-item:hover { color: var(--ink); }

.contact-item svg { flex-shrink: 0; width: 18px; height: 18px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink-muted); }

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--surface-2) inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  transition: background-color 9999s ease-out;
}

.contact-form input::selection,
.contact-form textarea::selection {
  background: var(--ink-muted);
  color: var(--ink);
}

.form-limit {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-muted); }

.contact-form textarea { min-height: 110px; }

.contact-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.legal-links a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.9s var(--ease-out) forwards;
}

.hero.reveal         { animation-delay: 0.05s; }
.links-card.reveal   { animation-delay: 0.22s; }
.stats-card.reveal   { animation-delay: 0.34s; }
.method-card.reveal  { animation-delay: 0.46s; }
.contact-grid.reveal { animation-delay: 0.56s; }
.footer.reveal       { animation-delay: 0.68s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.link-row {
  opacity: 0;
  animation: reveal 0.7s var(--ease-out) forwards;
  animation-delay: calc(0.35s + var(--i, 0) * 0.08s);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
  z-index: 10;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 900px) {
  .columns, .contact-grid { grid-template-columns: 1fr; }
  .method-links { grid-template-columns: 1fr; }
  .hero { flex-direction: column; text-align: center; padding: 32px 24px; }
  .hero-text { align-items: center; }
}

@media (hover: none) {
  .link-row::before { display: none; }
  .link-row:hover { border-color: var(--line); box-shadow: none; }
  .link-row:hover .link-title { color: var(--ink); }
  .link-row:hover .link-subtitle { color: var(--ink-muted); }
  .link-row:hover .link-arrow,
  .link-row:hover .link-chevron { color: var(--ink-muted); }
  .link-row:hover .link-copy { color: var(--ink-secondary); border-color: var(--line-strong); }
  .link-row:active { background: rgba(255, 255, 255, 0.07); border-color: var(--line-strong); }
  .sub-row:hover { transform: none; background: none; color: var(--ink-secondary); border-color: var(--line); }
  .sub-row:active { background: rgba(255, 255, 255, 0.07); border-color: var(--line-strong); }
  .method-link:hover { background: none; border-color: var(--line); box-shadow: none; }
  .method-link:hover svg { color: var(--ink-secondary); }
  .method-link:active { background: rgba(255, 255, 255, 0.06); border-color: var(--line-strong); }
  .platform-tab:hover { border-color: var(--line); }
  .platform-tab:active { background: rgba(255, 255, 255, 0.07); }
  .btn:hover { box-shadow: none; }
  .btn:active { opacity: 0.85; }
  .link-copy:hover { border-color: var(--line-strong); }
  .avatar { filter: none; }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .page { padding: 28px 20px 52px; gap: 22px; }
  .card { padding: 24px; }
  .hero { gap: 26px; }
  .columns, .contact-grid { gap: 20px; }
  .link-row { padding: 13px 18px; }
}

@media (max-width: 640px) {
  .navbar { padding: 16px max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left)); }
  .navbar-note { display: none; }
  .page { padding: 20px max(12px, env(safe-area-inset-right)) calc(44px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)); gap: 16px; }
  .columns, .contact-grid { gap: 16px; }
  .card { padding: 18px 16px; border-radius: 18px; }
  .hero { padding: 26px 16px; gap: 18px; }
  .avatar { width: 104px; height: 104px; }
  .tagline { font-size: 0.82rem; }
  .about { font-size: 0.85rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 45%; justify-content: center; padding: 12px 14px; font-size: 0.85rem; }
  .section-title { margin-bottom: 16px; }
  .links { gap: 7px; max-width: 380px; margin: 0 auto; width: 100%; }
  .link-row { padding: 8px 12px; gap: 8px; }
  .link-num { display: none; }
  .link-title { font-size: 0.9rem; }
  .link-subtitle { font-size: 0.67rem; margin-top: 1px; }
  .link-copy { width: 29px; height: 29px; }
  .link-copy svg { width: 13px; height: 13px; }
  .link-arrow { width: 15px; height: 15px; }
  .link-sub-inner { padding: 6px 2px 2px 9px; gap: 5px; }
  .sub-row { padding: 8px 12px; font-size: 0.78rem; }
  .sub-note { font-size: 0.66rem; }
  .platform-tabs { gap: 6px; margin-bottom: 14px; }
  .platform-tab { flex: 1 1 0; min-width: 0; padding: 8px 2px 6px; border-radius: 12px; gap: 3px; }
  .platform-tab svg { width: 16px; height: 16px; }
  .platform-tab .tab-delta { font-size: 0.54rem; }
  .chart-value { font-size: 1.12rem; min-width: 4ch; }
  .chart-label { font-size: 0.68rem; }
  .chart-wrap { padding: 8px 6px 4px; border-radius: 12px; }
  .chart-block { margin-bottom: 13px; }
  .chart-head { margin-bottom: 5px; }
  .method-note { margin: -6px 0 14px; }
  .method-link { padding: 16px 12px; flex-direction: row; text-align: left; gap: 12px; }
  .method-link svg { width: 22px; height: 22px; flex-shrink: 0; }
  .method-link-title { font-size: 0.9rem; }
  .method-link-subtitle { margin-left: auto; }
  .contact-heading { font-size: 1.2rem; }
  .contact-note { font-size: 0.84rem; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; padding: 12px 14px; }
  .contact-form textarea { min-height: 90px; }
  .contact-form .btn { align-self: stretch; justify-content: center; }
  .footer { font-size: 0.72rem; }
  .legal-links { flex-wrap: wrap; }
  .toast { max-width: calc(100vw - 28px); text-align: center; bottom: 18px; }
}
