:root {
  color-scheme: light;
  --bg: #f5f6f8;
  --panel: rgba(255, 255, 255, 0.9);
  --text: #111318;
  --muted: #68707f;
  --line: #e1e5eb;
  --soft: #eef2f7;
  --blue: #2563eb;
  --shadow: 0 22px 60px rgba(19, 28, 44, 0.08);
}

* { box-sizing: border-box; }

html { min-width: 320px; background: var(--bg); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -12%, rgba(63, 104, 240, 0.12), transparent 36rem),
    var(--bg);
  font-family: Geist, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.support-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 60px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}


.support-main {
  flex: 1;
  padding: 64px 0 48px;
}

.support-hero {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.support-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.support-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.support-card {
  min-width: 0;
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: #cbd4e1;
  box-shadow: 0 24px 58px rgba(19, 28, 44, 0.11);
}

.support-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

.support-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #101217;
  color: #fff;
}

.support-card--email .support-card__icon { background: var(--blue); }
.support-card__icon svg { width: 22px; height: 22px; fill: currentColor; }
.support-card__icon .support-instagram-glyph {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.support-instagram-glyph__dot {
  fill: currentColor;
  stroke: none;
}

.support-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 24px;
}

.support-card__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-card__body strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.support-card__body > span:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.support-card__action {
  margin-top: auto;
  padding-top: 22px;
  font-size: 13px;
  font-weight: 800;
}
.support-card__action::after { content: " ↗"; }
.support-card--email .support-card__action::after { content: " →"; }



@media (max-width: 860px) {
  .support-main { padding-top: 54px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 238px; }
}

@media (max-width: 560px) {
  .support-shell { width: min(100% - 28px, 1180px); }
  .support-main { padding: 42px 0 38px; }
  .support-hero { margin-bottom: 24px; text-align: left; }
  .support-hero h1 { margin-top: 16px; font-size: 44px; }
  .support-hero p { font-size: 15px; }
  .support-card { min-height: 214px; padding: 21px; border-radius: 18px; }
  .support-card__body { margin-top: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
