:root {
  --ink: #182225;
  --muted: #5c6970;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe5e4;
  --teal: #1f8a84;
  --teal-dark: #12625d;
  --berry: #9d315f;
  --gold: #c7933b;
  --soft: #edf7f5;
  --shadow: 0 18px 45px rgba(24, 34, 37, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--berry));
  box-shadow: 0 8px 20px rgba(31, 138, 132, .24);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

.button:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--soft);
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .08);
}

.hero .button.secondary:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .18);
}

.hero {
  min-height: calc(100vh - 74px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #132023;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(19, 32, 35, .94) 0%, rgba(19, 32, 35, .77) 40%, rgba(19, 32, 35, .16) 78%),
    url("assets/tti-women-community-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.hero-copy {
  max-width: 650px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f0c879;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.24rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: inherit;
  margin: 0 0 26px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.hero-note span {
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fff;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(24, 34, 37, .05);
}

.card strong {
  color: var(--teal-dark);
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: var(--soft);
}

.icon svg {
  width: 24px;
  height: 24px;
}

.feature-band {
  background: var(--teal-dark);
  color: #fff;
  padding: 56px 0;
}

.feature-band .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}

.feature-band p {
  color: rgba(255,255,255,.86);
  margin: 0;
}

.info-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-list li {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 14px 16px;
}

.page-hero {
  background: linear-gradient(135deg, #eef8f6, #fff7ea);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  max-width: 960px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
}

.content {
  max-width: 860px;
}

.content p,
.content li {
  color: var(--muted);
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px 22px 70px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--berry);
  color: #fff;
  font-weight: 800;
}

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #111c1f;
  color: rgba(255,255,255,.78);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.site-footer a {
  color: #f0c879;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(19, 32, 35, .96) 0%, rgba(19, 32, 35, .78) 55%, rgba(19, 32, 35, .28) 100%),
      url("assets/tti-women-community-hero.png");
    background-position: center right;
  }

  .grid,
  .grid.two,
  .feature-band .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-links a {
    padding: 8px 9px;
    font-size: .9rem;
  }

  .section {
    padding: 52px 0;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .button {
    width: 100%;
  }
}
