:root {
  --slate: #17364d;
  --slate-deep: #10293b;
  --steel: #4f758c;
  --steel-soft: #dce8ed;
  --sand: #d6ad72;
  --sand-light: #f1e6d5;
  --paper: #f5f2ed;
  --paper-deep: #e9e5dd;
  --white: #ffffff;
  --ink: #1d282f;
  --muted: #627079;
  --line: #d8d4cc;
  --sage: #657f6c;
  --sage-light: #e5eee8;
  --gold: #c89554;
  --gold-deep: #a87336;
  --navy-wash: #e2ebef;
  --shadow-sm: 0 10px 28px rgba(22, 46, 63, 0.08);
  --shadow-md: 0 24px 70px rgba(15, 38, 54, 0.14);
  --shadow-card: 0 14px 34px rgba(18, 42, 58, 0.08);
  --radius: 14px;
  background: var(--paper);
  font-family: "Aptos", "Avenir Next", "Segoe UI Variable", "Segoe UI", Inter, system-ui, sans-serif;
}

body {
  background:
    radial-gradient(circle at 82% 4%, rgba(79, 117, 140, 0.08), transparent 25rem),
    var(--paper);
  letter-spacing: -0.005em;
}

::selection {
  background: var(--sand);
  color: var(--slate-deep);
}

#main-content {
  animation: page-enter 360ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 41, 59, 0.97);
  box-shadow: 0 8px 30px rgba(10, 28, 40, 0.12);
}

.header-shell {
  height: 80px;
}

.brand {
  color: white;
}

.brand-lockup {
  display: block;
  width: auto;
  height: 42px;
}

.desktop-nav {
  gap: 10px;
}

.desktop-nav a {
  height: 44px;
  align-self: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.64);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.desktop-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.desktop-nav a.active::after {
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--sand);
}

.pa-pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #c6d6df;
}

.member-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.member-chip:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.member-chip .avatar {
  background: var(--sand);
  color: var(--slate-deep);
}

.member-chip b,
.plus-badge {
  background: rgba(214, 173, 114, 0.18);
  color: #f1cf9e;
}

.icon-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, transparent 49.92%, rgba(255, 255, 255, 0.045) 50%, transparent 50.08%),
    var(--slate);
}

.home-hero::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(214, 173, 114, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34%;
  height: 4px;
  background: linear-gradient(90deg, var(--sand), transparent);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
}

.home-hero .eyebrow {
  color: #b7cfdb;
}

.home-hero .eyebrow > span {
  background: var(--sand);
  box-shadow: 0 0 0 4px rgba(214, 173, 114, 0.08);
}

.hero-copy h1 {
  max-width: 720px;
  color: white;
  font-weight: 675;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.home-hero .lede {
  color: rgba(255, 255, 255, 0.7);
}

.button {
  border-radius: 9px;
  transition:
    transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--slate);
  box-shadow: 0 10px 24px rgba(18, 46, 66, 0.2);
}

.home-hero .button-primary {
  background: var(--sand);
  box-shadow: 0 12px 30px rgba(8, 25, 36, 0.24);
  color: var(--slate-deep);
}

.home-hero .button-primary:hover {
  background: #e1b980;
  box-shadow: 0 15px 36px rgba(8, 25, 36, 0.3);
}

.home-hero .button-quiet {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.home-hero .button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.button .icon,
.card-link .icon,
.text-link .icon,
.start-card > a > .icon {
  transition: transform 180ms ease;
}

.button:hover .icon,
.card-link:hover .icon,
.text-link:hover .icon,
.start-card > a:hover > .icon {
  transform: translateX(3px);
}

.proof-row {
  color: rgba(255, 255, 255, 0.62);
}

.proof-row span + span::before {
  color: var(--sand);
}

.start-card {
  border-color: rgba(214, 173, 114, 0.55);
  background: rgba(252, 251, 247, 0.98);
  box-shadow:
    0 34px 90px rgba(5, 24, 36, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: none;
}

.start-card::before {
  top: -56px;
  color: rgba(214, 173, 114, 0.16);
}

.start-card-head {
  border-bottom: 1px solid #e8e1d7;
}

.start-card > a:not(.start-note) {
  position: relative;
  border-top: 0;
  border-bottom: 1px solid #ebe5dc;
}

.start-card > a:not(.start-note)::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: -14px;
  width: 3px;
  border-radius: 3px;
  background: var(--sand);
  content: "";
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.start-card > a:not(.start-note):hover {
  background: #f5f1ea;
}

.start-card > a:not(.start-note):hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.step-number {
  border-color: #c8d5dc;
  background: var(--navy-wash);
  color: var(--slate);
}

.start-note {
  border-left: 3px solid var(--sand);
  background: #f1e6d5;
}

.pillar-band {
  position: relative;
  border-block: 0;
  background:
    linear-gradient(180deg, #e6edf0 0, #edf2f3 48%, var(--paper) 48%);
}

.pillar-band::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 54, 77, 0.035) 1px, transparent 1px);
  background-size: 100% 42px;
  content: "";
  pointer-events: none;
}

.pillar-band .shell {
  position: relative;
}

.pillar-card {
  min-height: 315px;
  border: 0;
  background: #fbfaf7;
  box-shadow: var(--shadow-card);
}

.pillar-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--steel);
  content: "";
}

.pillar-card:nth-child(1) {
  background: #e9f0f3;
}

.pillar-card:nth-child(1)::after {
  background: var(--steel);
}

.pillar-card:nth-child(2) {
  background: var(--slate);
  box-shadow: 0 22px 52px rgba(15, 38, 55, 0.22);
}

.pillar-card:nth-child(2)::after {
  background: var(--sand);
}

.pillar-card:nth-child(3) {
  background: #f1e7d8;
}

.pillar-card:nth-child(3)::after {
  background: var(--gold);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(20, 48, 67, 0.15);
}

.pillar-card.featured:hover {
  box-shadow: 0 28px 65px rgba(12, 33, 47, 0.3);
}

.pillar-icon,
.service-icon,
.resource-icon {
  border: 1px solid rgba(23, 54, 77, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.pillar-card.featured .pillar-icon {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(214, 173, 114, 0.14);
  color: var(--sand);
}

.pillar-count {
  color: rgba(23, 54, 77, 0.28);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.community-preview {
  position: relative;
  background:
    linear-gradient(90deg, var(--paper) 0 34%, #f9f8f5 34% 100%);
}

.community-preview::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 590px);
  width: 3px;
  background: linear-gradient(var(--sand), rgba(214, 173, 114, 0.08));
  content: "";
}

.section-heading h2,
.section-copy h2 {
  font-weight: 675;
}

.member-proof {
  border-top-color: #d6d1c9;
}

.thread-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 54, 77, 0.12);
  border-radius: 14px 14px 14px 5px;
  box-shadow: var(--shadow-sm);
}

.thread-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--steel);
  content: "";
  opacity: 0;
  transition: opacity 160ms ease;
}

.thread-card:hover {
  border-color: rgba(23, 54, 77, 0.24);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.thread-card:hover::before,
.thread-card.thread-featured::before {
  opacity: 1;
}

.thread-card.thread-featured {
  border-left: 1px solid rgba(23, 54, 77, 0.12);
  background: linear-gradient(105deg, #f3f7f8, white 55%);
}

.thread-title {
  font-weight: 710;
}

.thread-actions button,
.thread-actions a {
  border: 1px solid transparent;
}

.thread-actions button:hover,
.thread-actions a:hover,
.thread-actions .active {
  border-color: #d6e0e5;
  background: var(--navy-wash);
}

.feed-more {
  border-color: #b8c8d0;
  background: rgba(226, 235, 239, 0.5);
}

.resource-preview {
  border-top: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(214, 173, 114, 0.22), transparent 24rem),
    #dfe9ed;
}

.mini-resource {
  overflow: hidden;
  border: 1px solid rgba(23, 54, 77, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(24, 52, 70, 0.05);
}

.mini-resource::after {
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 85px;
  height: 85px;
  border: 1px solid rgba(23, 54, 77, 0.08);
  border-radius: 50%;
  content: "";
  transition: transform 260ms ease;
}

.mini-resource:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mini-resource:hover::after {
  transform: scale(1.18);
}

.mini-resource.wide {
  border-color: rgba(23, 54, 77, 0.17);
  background:
    linear-gradient(145deg, rgba(214, 173, 114, 0.32), transparent 45%),
    #f7f3ec;
}

.services-preview {
  background: #dfe9ed;
}

.services-callout {
  position: relative;
  border: 1px solid rgba(214, 173, 114, 0.5);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 42%),
    var(--slate-deep);
  box-shadow: 0 28px 70px rgba(13, 34, 49, 0.24);
}

.services-callout::before {
  position: absolute;
  top: 0;
  left: 56px;
  width: 110px;
  height: 4px;
  background: var(--sand);
  content: "";
}

.quick-services > a {
  border-bottom-color: rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  transition: background 160ms ease, padding 160ms ease;
}

.quick-services > a:hover {
  background: rgba(255, 255, 255, 0.07);
  padding-left: 18px;
}

.quick-services > a > span:first-child {
  background: rgba(214, 173, 114, 0.13);
  color: var(--sand);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background: var(--slate);
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 173, 114, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.015);
  content: "";
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #b7ceda;
}

.page-hero h1 {
  color: white;
  font-weight: 675;
  text-wrap: balance;
}

.page-hero-grid > div:first-child > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.location-card,
.partner-promise {
  border-color: rgba(214, 173, 114, 0.45);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(8, 28, 42, 0.28);
}

.resource-browser {
  position: relative;
}

.resource-search-panel {
  border: 1px solid rgba(23, 54, 77, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(15, 39, 56, 0.18);
}

.search-input {
  border-color: #bdccd3;
  background: #edf3f5;
}

.search-input:focus-within {
  border-color: var(--steel);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 117, 140, 0.12);
}

.filter-chip {
  border-color: #cbd4d8;
  background: rgba(255, 255, 255, 0.8);
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.filter-chip.active {
  box-shadow: inset 0 -2px 0 var(--sand);
}

.resource-grid {
  gap: 16px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(23, 54, 77, 0.12);
  background: #fbfaf8;
  box-shadow: 0 7px 24px rgba(19, 45, 62, 0.045);
}

.resource-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--steel);
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms ease;
}

.resource-card:nth-child(3n + 2)::before {
  background: var(--gold);
}

.resource-card:nth-child(3n + 3)::before {
  background: var(--sage);
}

.resource-card:hover {
  border-color: rgba(23, 54, 77, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card-bottom {
  border-top-color: #e4e0d8;
}

.legal-note {
  border-color: #cbd9cf;
  border-left: 3px solid var(--sage);
  background: #edf4ef;
}

.community-background {
  background:
    linear-gradient(90deg, rgba(23, 54, 77, 0.025) 1px, transparent 1px),
    #e7edef;
  background-size: 42px 100%;
}

.community-topbar {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.03), transparent 50%),
    var(--slate);
}

.community-topbar::after {
  position: absolute;
  top: -180px;
  right: 8%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(214, 173, 114, 0.16);
  border-radius: 50%;
  content: "";
}

.community-topbar .shell {
  position: relative;
  z-index: 1;
}

.community-topbar .eyebrow {
  color: #b7ceda;
}

.community-topbar h1 {
  color: white;
  font-weight: 675;
}

.community-topbar p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.community-topbar .button-primary {
  background: var(--sand);
  color: var(--slate-deep);
}

.community-layout {
  gap: 20px;
  padding-top: 30px;
}

.community-left {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px 13px 13px 5px;
  background: var(--slate-deep);
  box-shadow: 0 18px 42px rgba(13, 35, 50, 0.18);
  padding: 10px;
}

.community-menu,
.topic-list {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.topic-list .overline {
  color: #94adba;
}

.community-menu button,
.topic-list button,
.guidelines-link {
  color: rgba(255, 255, 255, 0.65);
}

.community-menu button:hover,
.community-menu button.active,
.topic-list button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.community-menu button.active {
  box-shadow: inset 3px 0 0 var(--sand);
}

.topic-list button > span {
  border-color: var(--sand);
}

.composer-card {
  border-color: rgba(23, 54, 77, 0.12);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.composer-card:hover {
  border-color: rgba(23, 54, 77, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.composer-card > b {
  background: var(--sand);
  color: var(--slate-deep);
}

.feed-toolbar button {
  border: 1px solid #cad5da;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  padding: 7px 10px;
}

.community-feed .thread-card {
  box-shadow: 0 8px 24px rgba(19, 45, 62, 0.06);
}

.rail-panel {
  border-color: rgba(23, 54, 77, 0.12);
  box-shadow: 0 8px 24px rgba(19, 45, 62, 0.06);
}

.profile-card {
  border-top: 3px solid var(--steel);
}

.snapshot-card {
  background: #f6f2ea;
}

.membership-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(214, 173, 114, 0.35);
  background:
    radial-gradient(circle at 95% 5%, rgba(214, 173, 114, 0.18), transparent 8rem),
    var(--slate);
}

.membership-card::after {
  position: absolute;
  right: -22px;
  bottom: -25px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.thread-detail,
.reply-card,
.reply-composer {
  border-color: rgba(23, 54, 77, 0.12);
  box-shadow: 0 8px 24px rgba(19, 45, 62, 0.06);
}

.thread-detail {
  border-top: 4px solid var(--steel);
}

.topic-pill {
  border: 1px solid #c8d9e0;
}

.reply-card {
  transition: border-color 150ms ease, transform 150ms ease;
}

.reply-card:hover {
  border-color: rgba(23, 54, 77, 0.22);
  transform: translateX(2px);
}

.services-hero {
  background: var(--slate);
}

.services-browser {
  background:
    radial-gradient(circle at 10% 10%, rgba(79, 117, 140, 0.08), transparent 24rem),
    var(--paper);
}

.service-grid {
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(23, 54, 77, 0.12);
  background: #fbfaf8;
  box-shadow: 0 7px 24px rgba(19, 45, 62, 0.045);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--steel);
  content: "";
}

.service-card:nth-child(2)::before,
.service-card:nth-child(5)::before {
  background: var(--gold);
}

.service-card:nth-child(3)::before {
  background: var(--sage);
}

.service-card:hover {
  border-color: rgba(23, 54, 77, 0.22);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-card .button-quiet {
  border-color: #c5d2d8;
  background: #eef3f5;
}

.service-card .button-quiet:hover {
  border-color: var(--steel);
  background: var(--steel-soft);
}

.verified-tag {
  border: 1px solid #cad9ce;
}

.provider-section {
  border-block-color: #ccd8dd;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.42), transparent 45%),
    #dfe9ed;
}

.provider-grid article {
  border-color: rgba(23, 54, 77, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.provider-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.provider-avatar {
  position: relative;
  box-shadow: inset 0 -3px 0 rgba(214, 173, 114, 0.45);
}

.membership-section {
  position: relative;
}

.plan-card {
  border-color: rgba(23, 54, 77, 0.14);
  box-shadow: var(--shadow-sm);
}

.plan-card.free {
  background: #f7f3ec;
}

.plan-card.plus {
  border-color: rgba(214, 173, 114, 0.45);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 173, 114, 0.16), transparent 12rem),
    var(--slate);
  box-shadow: 0 24px 60px rgba(13, 35, 50, 0.24);
}

.resource-article header {
  position: relative;
}

.resource-article header::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 90px;
  height: 3px;
  background: var(--sand);
  content: "";
}

.article-checklist {
  border-color: #cfdde3;
  border-left: 4px solid var(--steel);
  background: #eef4f6;
}

.article-body blockquote {
  position: relative;
  border-left-color: var(--sand);
  background: #f3ede4;
  padding: 22px 26px;
}

.article-body blockquote::before {
  position: absolute;
  top: 2px;
  left: 10px;
  color: rgba(168, 115, 54, 0.22);
  content: "“";
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.detail-rail .rail-card {
  border-color: rgba(23, 54, 77, 0.13);
  box-shadow: var(--shadow-sm);
}

.professional-card {
  border-top: 3px solid var(--steel) !important;
}

.booking-card {
  border-color: rgba(23, 54, 77, 0.14);
  border-top: 4px solid var(--sand);
  box-shadow: var(--shadow-md);
}

.site-footer {
  position: relative;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.025), transparent 52%),
    #0d2638;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sand) 0 18%, var(--steel) 18% 56%, rgba(255, 255, 255, 0.08) 56%);
  content: "";
}

.footer-lockup {
  height: 46px;
}

.modal-backdrop {
  background: rgba(7, 23, 34, 0.68);
}

.modal-panel {
  border: 1px solid rgba(214, 173, 114, 0.38);
  background:
    linear-gradient(180deg, rgba(220, 232, 237, 0.34), transparent 130px),
    white;
  box-shadow: 0 38px 110px rgba(5, 22, 33, 0.4);
}

.modal-panel::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 82px;
  height: 3px;
  background: var(--sand);
  content: "";
}

.time-slots button,
.date-tabs button {
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.time-slots button:hover,
.date-tabs button:hover {
  transform: translateY(-1px);
}

.toast {
  border-color: rgba(214, 173, 114, 0.32);
  background: var(--slate-deep);
  box-shadow: 0 20px 50px rgba(7, 23, 34, 0.3);
}

@media (max-width: 900px) {
  .site-header {
    background: var(--slate-deep);
  }

  .mobile-menu {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu a {
    color: rgba(255, 255, 255, 0.6);
  }

  .mobile-menu a.active {
    color: var(--sand);
  }

  .home-hero {
    background: var(--slate);
  }

  .community-preview {
    background: #f8f7f3;
  }

  .community-preview::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-shell {
    height: 72px;
  }

  .brand-lockup {
    height: 36px;
  }

  .home-hero::before {
    top: -320px;
    right: -340px;
  }

  .hero-copy h1 {
    font-size: 49px;
    letter-spacing: -0.058em;
  }

  .start-card {
    border-color: rgba(214, 173, 114, 0.42);
  }

  .pillar-band {
    background: #e6edef;
  }

  .pillar-card {
    min-height: 260px;
  }

  .resource-preview {
    background: #dfe9ed;
  }

  .page-hero-grid {
    padding-bottom: 128px;
  }

  .community-topbar {
    background: var(--slate);
  }

  .community-mobile-topics {
    background: #dfe8eb;
  }

  .community-mobile-topics button {
    border-color: #c5d3d9;
    background: rgba(255, 255, 255, 0.82);
  }

  .community-mobile-topics button.active {
    border-color: var(--slate);
    background: var(--slate);
    box-shadow: inset 0 -2px 0 var(--sand);
  }

  .bottom-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(16, 41, 59, 0.97);
    box-shadow: 0 -12px 34px rgba(8, 28, 41, 0.18);
  }

  .bottom-nav a {
    color: rgba(255, 255, 255, 0.48);
  }

  .bottom-nav a.active {
    color: var(--sand);
  }

  .footer-main {
    padding-top: 48px;
  }

  .modal-panel {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #main-content {
    animation: none;
  }
}
