@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  color-scheme: light;
  --fiq-ink: #0f172a;
  --fiq-copy: #475569;
  --fiq-muted: #64748b;
  --fiq-line: rgba(148, 163, 184, 0.2);
  --fiq-orange: #f97316;
  --fiq-orange-dark: #ea580c;
  --fiq-panel: rgba(255, 255, 255, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--fiq-ink);
  background: #f8fafc;
}

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

.landing-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 14%, rgba(148, 163, 184, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav-inner,
.footer-inner,
.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand-link img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 205px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--fiq-copy);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover,
.footer-links a:hover,
.inline-link:hover,
.text-links a:hover {
  color: var(--fiq-orange);
}

.nav-links .nav-link-plain {
  text-transform: none;
  letter-spacing: 0;
  color: var(--fiq-ink);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: var(--fiq-orange);
  color: #fff;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.2);
}

.nav-cta:hover,
.button--primary:hover {
  background: var(--fiq-orange-dark);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--fiq-copy);
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mobile-menu a {
  color: var(--fiq-copy);
  font-weight: 600;
}

.page-shell {
  padding: 3.5rem 0 4.5rem;
}

.page-hero {
  position: relative;
  margin-bottom: 2rem;
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.1), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.88);
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
}

.page-title {
  max-width: 14ch;
  margin: 1rem 0 0;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.page-title .accent {
  display: block;
  color: var(--fiq-orange);
}

.page-subtitle {
  max-width: 52rem;
  margin: 1.25rem 0 0;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--fiq-copy);
}

.button-row,
.resource-row,
.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button-row {
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  background: var(--fiq-orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.18);
}

.button--secondary {
  border-color: rgba(226, 232, 240, 0.96);
  background: rgba(255, 255, 255, 0.9);
  color: var(--fiq-ink);
}

.button--secondary:hover {
  border-color: rgba(249, 115, 22, 0.28);
  color: var(--fiq-orange);
}

.content-grid {
  display: grid;
  gap: 1.25rem;
}

.content-card {
  padding: 1.65rem 1.75rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: var(--fiq-panel);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.05);
}

.content-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.content-card p,
.content-card li {
  color: var(--fiq-copy);
  line-height: 1.75;
  font-size: 1.02rem;
}

.content-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.resource-row,
.text-links {
  margin-top: 1rem;
  color: var(--fiq-copy);
  font-weight: 700;
}

.resource-link,
.text-links a {
  color: var(--fiq-copy);
}

.inline-link {
  color: var(--fiq-ink);
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.35);
  text-underline-offset: 0.25rem;
  font-weight: 700;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 2.25rem 0 2.75rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--fiq-copy);
  font-weight: 600;
}

.footer-copy {
  color: var(--fiq-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .page-hero {
    padding: 2rem 1.4rem;
    border-radius: 1.6rem;
  }

  .page-shell {
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .page-title {
    max-width: none;
    font-size: 2.45rem;
  }

  .page-subtitle {
    font-size: 1.04rem;
  }

  .content-card {
    padding: 1.3rem 1.1rem;
    border-radius: 1.2rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }
}
