:root {
  color-scheme: light dark;
  --background: #f4f7fa;
  --surface: #ffffff;
  --surface-muted: #eaf1f6;
  --text: #15212b;
  --text-muted: #596975;
  --line: #dbe3e9;
  --brand: #188acb;
  --brand-dark: #0873b2;
  --brand-soft: #e0f2fc;
  --shadow: 0 24px 70px rgba(30, 63, 85, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  background: var(--background);
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(
      90deg,
      transparent 49.95%,
      rgba(24, 138, 203, 0.045) 50%,
      transparent 50.05%
    ),
    linear-gradient(rgba(24, 138, 203, 0.04) 1px, transparent 1px),
    var(--background);
  background-size:
    100% 100%,
    100% 88px,
    auto;
  font-family:
    "Segoe UI",
    SegoeUI,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.page-shell {
  display: flex;
  width: min(100% - 96px, 1320px);
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
}
.site-header {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}
.brand picture {
  display: block;
}
.brand img {
  display: block;
  width: 215px;
  height: auto;
}
main {
  display: grid;
  flex: 1;
  align-items: center;
  padding: 72px 0;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(64px, 9vw, 140px);
}
.hero-copy {
  position: relative;
}
.hero-copy::before {
  position: absolute;
  top: -45px;
  left: -48px;
  width: 72px;
  height: 72px;
  border-top: 2px solid var(--brand);
  border-left: 2px solid var(--brand);
  content: "";
  opacity: 0.45;
}
.eyebrow,
.card-kicker {
  margin: 0 0 22px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
}
h1 span {
  color: var(--brand);
}
.intro {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}
.actions {
  display: flex;
  margin-top: 42px;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.96rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
.brand:focus-visible,
.contact-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 4px;
}
.button-primary {
  color: #ffffff;
  background: var(--brand);
}
.button-primary:hover {
  background: var(--brand-dark);
}
.button-primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.7;
}
.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}
.button-secondary:hover {
  border-color: var(--brand);
}
.support-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
}
.card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, transparent 49.5%, var(--brand) 50%);
  opacity: 0.18;
}
.card-kicker {
  margin-bottom: 14px;
}
.support-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}
.support-card > p:not(.card-kicker) {
  margin: 16px 0 30px;
  color: var(--text-muted);
  line-height: 1.6;
}
address {
  border-top: 1px solid var(--line);
  font-style: normal;
}
.contact-row {
  display: flex;
  min-width: 0;
  padding: 20px 0;
  align-items: center;
  gap: 17px;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}
a.contact-row:hover {
  color: var(--brand);
}
.contact-row > span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-row small {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.contact-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}
footer {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.78rem;
}
@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 48px, 680px);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  main {
    padding: 84px 0 64px;
  }
  .hero-copy::before {
    left: -24px;
  }
}
@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }
  .site-header {
    min-height: 92px;
  }
  .brand img {
    width: 190px;
  }
  main {
    padding: 68px 0 48px;
  }
  .hero {
    gap: 44px;
  }
  .hero-copy::before {
    top: -28px;
    left: -16px;
    width: 42px;
    height: 42px;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.7rem;
  }
  h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }
  .intro {
    margin-top: 26px;
    font-size: 1rem;
  }
  .actions {
    margin-top: 32px;
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .support-card {
    margin-right: -16px;
    margin-left: -16px;
    padding: 32px 24px;
  }
  footer {
    min-height: 96px;
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #101417;
    --surface: #171d21;
    --surface-muted: #1e282e;
    --text: #f2f6f8;
    --text-muted: #a9b5bc;
    --line: #2c373e;
    --brand: #42a9e2;
    --brand-dark: #188acb;
    --brand-soft: #172f3d;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  }
  body {
    background:
      linear-gradient(
        90deg,
        transparent 49.95%,
        rgba(66, 169, 226, 0.04) 50%,
        transparent 50.05%
      ),
      linear-gradient(rgba(66, 169, 226, 0.035) 1px, transparent 1px),
      var(--background);
    background-size:
      100% 100%,
      100% 88px,
      auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
