:root {
  color-scheme: dark;
  --bg: #060606;
  --surface: rgba(22, 21, 17, 0.68);
  --surface-strong: rgba(27, 25, 20, 0.88);
  --text: #f7f3e8;
  --muted: #a9a399;
  --gold: #d8b35e;
  --gold-soft: #f0d88a;
  --gold-dim: rgba(216, 179, 94, 0.2);
  --line: rgba(238, 209, 131, 0.13);
  --green: #38d27a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius-lg: 26px;
  --radius-md: 20px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(195, 151, 61, 0.12), transparent 33rem),
    linear-gradient(180deg, #0a0a08 0%, #050505 57%, #030303 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.ambient,
.brand-watermark {
  position: fixed;
  pointer-events: none;
  user-select: none;
}

.ambient {
  z-index: 0;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.ambient--one {
  top: -12rem;
  left: -13rem;
  background: rgba(194, 144, 51, 0.25);
}

.ambient--two {
  right: -14rem;
  bottom: -16rem;
  background: rgba(141, 102, 33, 0.18);
}

.brand-watermark {
  z-index: 0;
  inset: 0;
  background: url('../assets/logo.png') center 48% / min(82vw, 640px) auto no-repeat;
  opacity: 0.075;
  filter: saturate(.92) contrast(1.03);
  mix-blend-mode: luminosity;
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    max(22px, env(safe-area-inset-top))
    max(18px, env(safe-area-inset-right))
    max(22px, env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
}

.support-portal {
  width: min(1120px, 100%);
}

.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: 720px;
}

.brand-mark-wrap {
  display: grid;
  place-items: center;
  width: clamp(150px, 20vw, 230px);
  min-height: 108px;
  margin-bottom: 16px;
}

.brand-mark {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 15px 34px rgba(0,0,0,.34));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(216, 179, 94, 0.2);
  border-radius: 999px;
  background: rgba(216, 179, 94, 0.055);
  color: #dfc17a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(56, 210, 122, 0.08), 0 0 14px rgba(56, 210, 122, .38);
}

h1 {
  margin: 16px 0 7px;
  font-size: clamp(27px, 5vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 710;
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 2.2vw, 16px);
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: clamp(25px, 4vw, 38px) auto 0;
}

.support-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 118px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,.028), transparent 42%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 16px 42px rgba(0,0,0,.25);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  backdrop-filter: blur(18px);
  transition:
    transform .34s var(--ease),
    border-color .34s var(--ease),
    box-shadow .34s var(--ease),
    background-color .34s var(--ease);
}

.support-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--pointer-x) var(--pointer-y), rgba(238, 207, 121, .105), transparent 58%);
  opacity: 0;
  transition: opacity .28s ease;
}

.card-shine {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.025) 49%, transparent 66%);
  transform: translateX(-95%);
  transition: transform .7s var(--ease);
}

.card-index {
  position: absolute;
  top: 13px;
  right: 15px;
  color: rgba(240, 216, 138, 0.29);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.icon-shell {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 179, 94, 0.22);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(216,179,94,.12), rgba(216,179,94,.035));
  color: var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 11px 26px rgba(0,0,0,.22);
  transition: transform .34s var(--ease), border-color .34s ease, background-color .34s ease;
}

.card-icon {
  width: 26px;
  height: 26px;
}

.card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-copy strong {
  font-size: clamp(17px, 3.8vw, 21px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  font-weight: 740;
}

.card-copy span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.3;
}

.card-meta {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 2px;
}

.wa-mark {
  width: 21px;
  height: 21px;
  color: var(--green);
  opacity: .92;
}

.wa-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.arrow {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(216, 179, 94, 0.16);
  border-radius: 50%;
  color: #d6bc78;
  font-size: 15px;
  transition: transform .34s var(--ease), border-color .34s ease, background-color .34s ease;
}

.support-card:hover,
.support-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 201, 117, 0.33);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 22px 58px rgba(0,0,0,.36), 0 0 0 1px rgba(216,179,94,.025);
}

.support-card:hover::before,
.support-card:focus-visible::before { opacity: 1; }
.support-card:hover .card-shine { transform: translateX(110%); }
.support-card:hover .icon-shell { transform: translateY(-2px) scale(1.025); border-color: rgba(232, 201, 117, 0.37); }
.support-card:hover .arrow { transform: translate(2px, -2px); border-color: rgba(216,179,94,.3); background: rgba(216,179,94,.06); }

.support-card:active { transform: scale(.988); }

.support-card:focus-visible {
  outline: 2px solid rgba(240,216,138,.7);
  outline-offset: 3px;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin-top: 20px;
  color: #878178;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.trust-row i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(216, 179, 94, .36);
}

.mini-footer {
  margin-top: 19px;
  text-align: center;
}

.mini-footer p,
.mini-footer span {
  margin: 0;
  color: #57534e;
  font-size: 9.5px;
  font-weight: 720;
  letter-spacing: .11em;
}

.mini-footer span {
  display: block;
  margin-top: 5px;
  color: #46423e;
  letter-spacing: .08em;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: enter .62s var(--ease) forwards;
}
.reveal--1 { animation-delay: .05s; }
.reveal--2 { animation-delay: .13s; }
.reveal--3 { animation-delay: .20s; }
.reveal--4 { animation-delay: .27s; }
.reveal--5 { animation-delay: .34s; }

@keyframes enter {
  to { opacity: 1; transform: none; }
}

.noscript-note {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  padding: 12px 14px;
  border: 1px solid rgba(216,179,94,.22);
  border-radius: 12px;
  background: #14120f;
  color: #eee4cc;
  text-align: center;
  font-size: 12px;
}

@media (min-width: 760px) {
  .shell { padding: 34px; }

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

  .support-card {
    min-height: 240px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  .icon-shell {
    grid-column: 1;
    grid-row: 1;
    width: 62px;
    height: 62px;
    border-radius: 19px;
  }

  .card-index {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    padding-top: 5px;
  }

  .card-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
  }

  .card-copy strong { font-size: 22px; }
  .card-copy span { font-size: 13px; }

  .card-meta {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    justify-content: space-between;
    align-self: end;
  }

  .wa-mark { width: 23px; height: 23px; }
  .arrow { width: 34px; height: 34px; }

  .trust-row { margin-top: 23px; }
  .mini-footer { margin-top: 25px; }
}

@media (min-width: 1100px) {
  .support-card { min-height: 260px; }
}

@media (max-height: 760px) and (max-width: 759px) {
  .shell {
    place-items: start center;
    padding-top: max(14px, env(safe-area-inset-top));
  }
  .brand-mark-wrap { width: clamp(150px, 44vw, 185px); min-height: 88px; margin-bottom: 8px; }
  .brand-mark { max-height: 118px; }
  .status-pill { min-height: 27px; padding-block: 6px; }
  h1 { margin-top: 11px; }
  .support-grid { margin-top: 18px; gap: 9px; }
  .support-card { min-height: 99px; padding: 17px; }
  .icon-shell { width: 48px; height: 48px; border-radius: 15px; }
  .trust-row { margin-top: 14px; }
  .mini-footer { margin-top: 12px; }
}

@media (max-width: 759px) {
  .brand-watermark {
    background-position: center 54%;
    background-size: min(88vw, 520px) auto;
    opacity: 0.07;
  }

  .brand-mark-wrap {
    width: clamp(150px, 48vw, 190px);
  }
}

@media (min-width: 760px) {
  .brand-watermark {
    background-size: min(55vw, 680px) auto;
    opacity: 0.075;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
