@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --home-bg: #030504;
  --home-ink: #f7f7f4;
  --home-muted: #9da69f;
  --home-dim: #747d77;
  --home-cyan: #00e5ff;
  --home-amber: #ffb000;
  --home-line: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--home-cyan);
  outline-offset: 4px;
}

.home-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.home-nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.home-brand-mark {
  width: 23px;
  height: 25px;
  position: relative;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.home-brand-mark::before {
  content: "";
  position: absolute;
  inset: 1px 6px 1px 3px;
  border-left: 5px solid var(--home-cyan);
  border-right: 5px solid var(--home-amber);
  transform: skew(-13deg);
}

.home-brand-mark::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 0;
  top: 13px;
  border-top: 4px solid var(--home-ink);
}

.home-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-nav-link span {
  color: var(--home-ink);
  font-size: 17px;
  transition: transform 180ms ease;
}

.home-nav-link:hover span {
  transform: translateY(3px);
}

.home-hero {
  position: relative;
  text-align: center;
  padding: 10px 0 62px;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -68px 0 auto;
  height: 310px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.07), transparent 68%);
  pointer-events: none;
}

.home-hero h1 {
  max-width: 960px;
  margin: 2px auto 7px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 6.3vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.home-hero h1 em {
  color: var(--home-cyan);
  font-style: normal;
  text-shadow: 0 0 35px rgba(0, 229, 255, 0.18);
}

.home-hero-lede {
  max-width: 720px;
  margin: 0 auto 10px;
  color: var(--home-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.45;
}

.home-hero-media {
  width: min(100%, 1000px);
  height: 530px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.home-hero-media::before,
.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.home-hero-media::before {
  background: linear-gradient(to bottom, var(--home-bg) 0%, rgba(3, 5, 4, 0.1) 19%, transparent 60%, var(--home-bg) 99%);
}

.home-hero-media::after {
  background: linear-gradient(90deg, var(--home-bg) 0%, transparent 14%, transparent 86%, var(--home-bg) 100%);
}

.home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  opacity: 0.96;
  transform: scale(1.02);
  animation: hero-breathe 9s ease-in-out infinite alternate;
}

.home-hero-action {
  width: min(440px, calc(100% - 20px));
  margin: 12px auto 0;
}

.home-primary-action {
  width: 100%;
  min-height: 66px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171000;
  background: linear-gradient(110deg, #ff9d00, #ffd15a 55%, var(--home-amber));
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 176, 0, 0.34), 0 18px 55px rgba(0, 0, 0, 0.5);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 650;
  letter-spacing: -0.035em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(255, 176, 0, 0.45), 0 22px 60px rgba(0, 0, 0, 0.5);
}

.home-action-note {
  margin: 10px 0 0;
  color: var(--home-dim);
  font-size: 13px;
}

.home-relief {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 20px 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe5e1;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.035em;
  text-align: center;
}

.home-relief em {
  color: var(--home-cyan);
  font-style: normal;
}

.home-faq {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 98px;
  position: relative;
}

.home-faq::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -80px;
  left: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.07), transparent 68%);
  pointer-events: none;
}

.home-faq h2 {
  margin: 0 0 44px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(46px, 5.8vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.home-faq h2 em {
  display: block;
  color: var(--home-cyan);
  font-style: normal;
}

.home-faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.home-faq details {
  border-bottom: 1px solid var(--home-line);
}

.home-faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 56px 24px 0;
  color: #ecf0ed;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 19px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07100d;
  background: var(--home-amber);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.home-faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--home-cyan);
}

.home-faq-answer {
  max-width: 780px;
  margin: -2px 0 26px;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-faq-answer strong {
  color: #ecf0ed;
  font-weight: 650;
}

.home-faq-close {
  padding-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.home-faq-close p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(31px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-faq-action {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #171000;
  background: var(--home-amber);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 176, 0, 0.2);
  font-size: 15px;
  font-weight: 650;
}

.home-footer {
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--home-dim);
  font-size: 13px;
}

.home-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.home-footer p {
  margin: 3px 0;
}

.home-footer-links {
  display: flex;
  gap: 18px;
}

.home-footer a:hover {
  color: var(--home-cyan);
}

@keyframes hero-breathe {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.045) translateY(-4px); }
}

@media (max-width: 700px) {
  .home-shell {
    width: min(100% - 28px, 620px);
  }

  .home-nav {
    height: 62px;
  }

  .home-hero {
    padding-top: 18px;
  }

  .home-hero h1 {
    max-width: 520px;
    font-size: clamp(45px, 12vw, 58px);
  }

  .home-hero-lede {
    max-width: 390px;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .home-hero-media {
    width: calc(100% + 230px);
    height: 480px;
    margin-left: -115px;
  }

  .home-primary-action {
    min-height: 58px;
    font-size: 24px;
  }

  .home-relief {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 74px;
  }

  .home-faq {
    padding: 66px 0 74px;
  }

  .home-faq h2 {
    margin-bottom: 32px;
  }

  .home-faq-close {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-faq-action {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-hero h1 {
    font-size: 44px;
  }

  .home-hero-media {
    width: calc(100% + 285px);
    height: 430px;
    margin-left: -142.5px;
  }

  .home-hero-action {
    width: 100%;
  }

  .home-primary-action {
    font-size: 23px;
  }

  .home-faq {
    width: calc(100% - 34px);
  }

  .home-faq summary {
    padding: 21px 49px 21px 0;
    font-size: 16px;
  }

  .home-faq summary::after {
    top: 16px;
    right: 0;
  }

  .home-faq-answer {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
