/* Style inspired by the referenced layout; neutral branding, no copied assets */
:root {
  --bg: #ffffff;
  --text: #333333;
  --muted: #6b6b6b;
  --brand: #fb6d23;
  /* orange accent similar to active nav */
  --brand-dark: #333333;
  --rule: #e9e9e9;
  --maxw: 1180px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  /* font-family: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif; */
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  /* line-height: 1.65; */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
  text-decoration: none;
}

.brand-word {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .4px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #ff9d4d 20%, #f57c20 60%, #d86a19 100%);
  position: relative;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05) inset;
}

/* small "spoke" dots for a gear-ish neutral mark */
.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.brand-mark:before {
  top: 4px;
  left: 12px;
  opacity: .9
}

.brand-mark:after {
  bottom: 4px;
  right: 8px;
  opacity: .7
}

.nav a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .5px;
  margin-left: 28px;
  text-transform: uppercase;
  font-size: 12px;
}

.nav a[aria-current="page"] {
  color: var(--brand);
}

.nav a:hover {
  opacity: .85
}

/* Page title (centered) */
.page-title {
  text-align: center;
  font-size: 39px;
  line-height: 1.1;
  font-weight: 100;
  margin: 20px 0 10px;
}

/* Hero icon placeholder */
.hero-icon {
  width: 108px;
  height: 108px;
  margin: 6px auto 26px;
  display: block;
  border-radius: 50%;
  background: linear-gradient(#eaf5ff, #ffffff);
  border: 1px solid #e2eefb;
  position: relative;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .06);
}

.hero-icon:before,
.hero-icon:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5aa0d6;
  top: 38px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .06) inset;
}

.hero-icon:before {
  left: 30px;
}

.hero-icon:after {
  right: 30px;
}

/* Content blocks */
.content {
  max-width: 1150px;
  margin: 0 auto;
  padding: 6px 0 80px;
  color: #555;
}

.content p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #777;
}

/* Support grid */
.support-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 10px 0 120px;
}

h2 {
  font-size: 39px;
  font-weight: 100;
  margin: 30px 0 18px;
}

ul.link-list {
  padding-left: 22px;
  margin: 0;
}

.link-list li {
  margin: 10px 0;
}

.link-list a {
  color: #fb6d23;
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}

/* Footer spacing similar to large white space */
.page-footer {
  padding: 40px 0 80px;
  color: #9a9a9a;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.text-center {
  text-align: center;
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    gap: 25px;
  }

  .brand-word {
    font-size: 22px
  }

  .nav a {
    margin-left: 16px
  }

  .page-title {
    font-size: 36px;
    margin: 34px 0 6px
  }

  .support-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}