:root {
  --fs-bg: #fffdf7;
  --fs-cream: #fff8ec;
  --fs-sky: #87ceeb;
  --fs-sky-soft: #b0e0e6;
  --fs-pink: #ffb6d9;
  --fs-mint: #90ee90;
  --fs-teal: #20b2aa;
  --fs-slate: #64748b;
  --fs-slate-dark: #475569;
  --fs-text: #111827;
  --fs-muted: #4b5563;
  --fs-border: rgba(17, 24, 39, 0.12);
  --fs-surface: rgba(255, 255, 255, 0.78);
  --fs-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  --fs-shadow-hover: 0 26px 70px rgba(17, 24, 39, 0.15);
  --fs-radius-lg: 24px;
  --fs-radius-xl: 32px;
  --fs-space-1: 8px;
  --fs-space-2: 16px;
  --fs-space-3: 24px;
  --fs-space-4: 32px;
  --fs-space-5: 48px;
  --fs-space-6: 64px;
  --fs-space-7: 96px;
  --fs-space-8: 128px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fs-text);
  font-family: Inter, "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

body[data-page="landing"] {
  background: var(--fs-bg);
}

body[data-page="landing"] .fs-grid-bg {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 182, 217, 0.38), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(144, 238, 144, 0.32), transparent 30rem),
    linear-gradient(180deg, #87ceeb 0%, #bfeefa 26rem, #fffdf7 46rem, #fffaf2 100%);
}

body[data-page="landing"] .fs-grid-bg::before,
body[data-page="landing"] .fs-grid-bg::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.72;
}

body[data-page="landing"] .fs-grid-bg::before {
  top: 118px;
  left: -120px;
  width: 460px;
  height: 150px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.92) 0 58px, transparent 60px),
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.96) 0 88px, transparent 90px),
    radial-gradient(circle at 68% 55%, rgba(255, 255, 255, 0.9) 0 72px, transparent 74px);
  animation: cloud-drift 38s linear infinite;
}

body[data-page="landing"] .fs-grid-bg::after {
  top: 260px;
  right: -150px;
  width: 540px;
  height: 170px;
  background:
    radial-gradient(circle at 18% 55%, rgba(255, 255, 255, 0.9) 0 68px, transparent 70px),
    radial-gradient(circle at 45% 40%, rgba(255, 255, 255, 0.94) 0 100px, transparent 102px),
    radial-gradient(circle at 73% 58%, rgba(255, 255, 255, 0.88) 0 82px, transparent 84px);
  animation: cloud-drift-reverse 46s linear infinite;
}

@keyframes cloud-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(68px); }
  100% { transform: translateX(0); }
}

@keyframes cloud-drift-reverse {
  0% { transform: translateX(0); }
  50% { transform: translateX(-72px); }
  100% { transform: translateX(0); }
}

.fs-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fs-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.fs-logo svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--fs-slate-dark);
  stroke-width: 3;
}

.fs-nav-shell {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1280px);
  min-height: 72px;
  margin: 20px auto 0;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(176, 224, 230, 0.68);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.fs-desktop-nav,
.fs-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.fs-desktop-nav a,
.fs-signin-link {
  color: rgba(17, 24, 39, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease;
}

.fs-desktop-nav a:hover,
.fs-signin-link:hover {
  color: var(--fs-text);
}

.fs-mobile-nav {
  display: none;
  position: relative;
}

.fs-mobile-nav summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--fs-slate);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.fs-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.fs-mobile-nav div {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: grid;
  min-width: 210px;
  padding: 12px;
  border: 1px solid var(--fs-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--fs-shadow);
}

.fs-mobile-nav a {
  padding: 12px;
  border-radius: 14px;
  color: var(--fs-text);
  font-weight: 700;
  text-decoration: none;
}

.fs-mobile-nav a:hover {
  background: rgba(135, 206, 235, 0.22);
}

.fs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  color: #ffffff;
  background: var(--fs-slate);
  box-shadow: 0 10px 22px rgba(71, 85, 105, 0.20);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 300ms ease, background 200ms ease, box-shadow 300ms ease;
}

.fs-button:hover {
  transform: translateY(-2px);
  background: var(--fs-slate-dark);
  box-shadow: 0 18px 34px rgba(71, 85, 105, 0.24);
}

.fs-button:active,
button:active {
  transform: translateY(0) scale(0.98);
}

.fs-button-secondary {
  color: var(--fs-slate-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(71, 85, 105, 0.18);
  box-shadow: none;
}

.fs-button-secondary:hover {
  color: #ffffff;
}

body[data-page="landing"] main > section,
body[data-page="landing"] footer {
  scroll-margin-top: 118px;
}

.fs-hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(28px, 5.5vw, 104px) clamp(90px, 9vw, 136px);
}

.fs-cloud {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  filter: blur(4px);
  pointer-events: none;
}

.fs-cloud-one {
  width: 200px;
  height: 70px;
  left: 40%;
  top: 18%;
  animation: cloud-drift 30s ease-in-out infinite;
}

.fs-cloud-two {
  width: 150px;
  height: 54px;
  left: 62%;
  bottom: 24%;
  animation: cloud-drift-reverse 34s ease-in-out infinite;
}

.fs-hero-copy h1 {
  max-width: 820px;
  margin: 24px 0 0;
  color: #000000;
  font-size: clamp(50px, 5.9vw, 84px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.02;
  word-break: normal;
}

.fs-hero-copy p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.65;
}

.fs-yc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 16px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.07);
  color: #111827;
  font-size: 14px;
  font-weight: 800;
}

.fs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fs-hero-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 520px);
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

.fs-hero-form input {
  min-height: 48px;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--fs-text);
  background: transparent;
  font-size: 14px;
  outline: 0;
}

.fs-hero-form input::placeholder {
  color: #94a3b8;
  font-size: 14px;
}

.fs-hero-form button,
.fs-waitlist-card form > button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--fs-slate);
  font-weight: 800;
  cursor: pointer;
  transition: background 200ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.fs-hero-form button:hover,
.fs-waitlist-card form > button:hover {
  background: var(--fs-slate-dark);
  box-shadow: 0 14px 28px rgba(71, 85, 105, 0.22);
}

.fs-hero-form .mini-status {
  grid-column: 1 / -1;
  padding: 0 18px 8px;
}

.fs-browser-mockup {
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18), 0 35px 90px rgba(135, 206, 235, 0.28);
  backdrop-filter: blur(18px);
}

.fs-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.fs-browser-chrome {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  background: rgba(255, 255, 255, 0.62);
}

.fs-browser-chrome span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.fs-browser-chrome span:nth-child(1) { background: #ff6b6b; }
.fs-browser-chrome span:nth-child(2) { background: #ffd166; }
.fs-browser-chrome span:nth-child(3) { background: #4ade80; }

.fs-browser-chrome strong {
  margin-left: 8px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 13px;
}

.fs-mockup-body {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 520px;
  padding: 18px;
  background:
    radial-gradient(circle at 60% 20%, rgba(255, 182, 217, 0.34), transparent 19rem),
    linear-gradient(145deg, rgba(176, 224, 230, 0.58), rgba(255, 255, 255, 0.72));
}

.fs-app-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding-top: 18px;
  border-right: 1px solid rgba(17, 24, 39, 0.10);
}

.fs-app-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14);
}

.fs-app-rail .gmail { background: #ea4335; }
.fs-app-rail .figma { background: #a259ff; }
.fs-app-rail .discord { background: #5865f2; }

.fs-ai-chat {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
}

.fs-chat-line,
.fs-approval-panel {
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  padding: 20px;
}

.fs-chat-line {
  width: min(100%, 390px);
}

.fs-chat-line.tool {
  justify-self: end;
  background: rgba(255, 246, 251, 0.88);
}

.fs-chat-line b,
.fs-approval-panel small {
  display: block;
  color: var(--fs-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fs-chat-line span {
  display: block;
  margin-top: 8px;
  color: var(--fs-muted);
  line-height: 1.6;
}

.fs-approval-panel {
  background: rgba(255, 255, 255, 0.86);
}

.fs-approval-panel h2 {
  margin: 10px 0 0;
  color: #000000;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.fs-approval-panel p {
  margin: 10px 0 0;
  color: var(--fs-muted);
  line-height: 1.65;
}

.fs-approval-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.fs-approval-panel button,
.live-decision-buttons button,
.live-demo-tabs button,
.code-tabs button,
.quickstart-tabs button {
  min-height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--fs-slate-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 300ms ease;
}

.fs-approval-panel button:hover,
.live-decision-buttons button:hover,
.live-demo-tabs button:hover,
.code-tabs button:hover,
.quickstart-tabs button:hover {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
}

.fs-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(82px, 8vw, 128px) clamp(28px, 5.5vw, 104px);
}

.fs-section-sky,
.fs-section-mint,
.fs-section-pink,
.fs-section-cyan,
.fs-waitlist-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(28px, 5.5vw, 104px);
}

.fs-section-sky {
  background: linear-gradient(180deg, rgba(176, 224, 230, 0.28), rgba(255, 255, 255, 0.38));
}

.fs-section-mint {
  background: linear-gradient(180deg, rgba(144, 238, 144, 0.20), rgba(255, 255, 255, 0.38));
}

.fs-section-pink {
  background: linear-gradient(180deg, rgba(255, 182, 217, 0.22), rgba(255, 255, 255, 0.42));
}

.fs-section-cyan {
  background: linear-gradient(180deg, rgba(135, 206, 235, 0.18), rgba(255, 255, 255, 0.44));
}

.fs-section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.fs-section-heading span,
.fs-section-copy span,
.fs-waitlist-card > div > span {
  color: var(--fs-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fs-section-heading h2,
.fs-section-copy h2,
.fs-waitlist-card h2 {
  margin: 12px 0 0;
  color: #000000;
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.fs-section-heading p,
.fs-section-copy p,
.fs-waitlist-card p {
  margin: 18px 0 0;
  color: var(--fs-muted);
  font-size: 18px;
  line-height: 1.75;
}

.fs-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.fs-feature-card,
.fs-use-card,
.fs-security-card,
.fs-demo-card,
.dev-code-card,
.fs-metrics-grid article,
.fs-waitlist-card {
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: var(--fs-radius-xl);
  box-shadow: var(--fs-shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.fs-feature-card:hover,
.fs-use-card:hover,
.fs-demo-card:hover,
.dev-code-card:hover,
.fs-metrics-grid article:hover,
.fs-waitlist-card:hover {
  transform: scale(1.03);
  box-shadow: var(--fs-shadow-hover);
}

.fs-feature-card {
  min-height: 310px;
  padding: clamp(32px, 4vw, 48px);
}

.fs-feature-pink {
  background: linear-gradient(145deg, #ffb6d9, #fff1f7 72%);
}

.fs-feature-cyan {
  background: linear-gradient(145deg, #87ceeb, #f1fbff 72%);
}

.fs-feature-mint {
  background: linear-gradient(145deg, #90ee90, #f2fff2 72%);
}

.fs-feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: #ffffff;
  background: var(--fs-slate);
  font-weight: 900;
}

.fs-feature-card h3,
.fs-use-card b,
.fs-security-card h3 {
  display: block;
  margin: 28px 0 0;
  color: #000000;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.fs-feature-card p,
.fs-use-card p,
.fs-security-card li {
  margin: 16px 0 0;
  color: rgba(17, 24, 39, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.fs-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.fs-demo-card,
.dev-code-card {
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 32px);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.live-demo-tabs,
.live-decision-buttons,
.code-tabs,
.quickstart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.live-demo-tabs button.active,
.live-decision-buttons button.active,
.code-tabs button.active,
.quickstart-tabs button.active {
  color: #ffffff;
  border-color: transparent;
  background: var(--fs-slate);
  box-shadow: 0 10px 22px rgba(71, 85, 105, 0.18);
}

.fs-live-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.97fr);
  gap: 22px;
  margin-top: 18px;
}

.live-request-card,
.live-decision-panel {
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(22px, 2.4vw, 32px);
}

.fs-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fs-live-row span,
.fs-live-row b,
.key-state {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fs-live-row span {
  color: #9f1239;
  background: rgba(255, 182, 217, 0.42);
}

.fs-live-row b {
  color: #854d0e;
  background: rgba(254, 243, 199, 0.8);
}

.live-request-card h3 {
  margin: 28px 0 0;
  color: #000000;
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 900;
  line-height: 1.12;
}

.live-request-card p {
  margin: 14px 0 0;
  color: var(--fs-muted);
  line-height: 1.7;
}

.live-request-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.live-request-card dl div {
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px 12px;
}

.live-request-card dt {
  color: var(--fs-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-request-card dd {
  margin: 6px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.live-decision-panel > span {
  color: var(--fs-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-window pre,
.live-decision-panel pre,
.dev-code-card pre,
.quickstart-code,
.developer-codeblock,
.api-key-modal pre {
  overflow: auto;
  margin: 18px 0 0;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 22px;
  padding: 18px;
  background: #f8fafc;
  color: #111827;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.fs-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 44px);
}

.fs-use-card {
  min-height: 210px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
}

.fs-use-card:nth-child(1) { background: linear-gradient(145deg, #ffb6d9, #fff6fb); }
.fs-use-card:nth-child(2) { background: linear-gradient(145deg, #b0e0e6, #f5fdff); }
.fs-use-card:nth-child(3) { background: linear-gradient(145deg, #90ee90, #f5fff5); }
.fs-use-card:nth-child(4) { background: linear-gradient(145deg, #d9ccff, #fbf9ff); }

.fs-security-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.fs-security-card div {
  border-radius: 24px;
  padding: 26px;
  background: rgba(176, 224, 230, 0.22);
}

.fs-security-card div:nth-child(2) {
  background: rgba(255, 182, 217, 0.22);
}

.fs-security-card h3 {
  margin-top: 0;
}

.fs-security-card ul {
  margin: 18px 0 0;
  padding-left: 22px;
  list-style: disc;
}

.fs-security-card li {
  display: list-item;
}

.fs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.fs-metrics-grid article {
  min-height: 190px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.76);
}

.fs-metrics-grid b {
  color: #000000;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
}

.fs-metrics-grid p {
  margin: 18px 0 0;
  color: var(--fs-muted);
  font-size: 17px;
  line-height: 1.65;
}

.fs-waitlist-section {
  background: linear-gradient(180deg, rgba(255, 182, 217, 0.18), rgba(176, 224, 230, 0.24));
}

.fs-waitlist-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 80px);
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.78);
}

.fs-waitlist-card form {
  display: grid;
  gap: 16px;
}

.fs-waitlist-card label {
  display: grid;
  gap: 8px;
  color: var(--fs-text);
  font-weight: 800;
}

.fs-waitlist-card small {
  color: var(--fs-muted);
  font-weight: 500;
}

.fs-waitlist-card input,
.fs-input {
  min-height: 52px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--fs-text);
  background: rgba(255, 255, 255, 0.82);
  outline: 0;
}

.lp-referral-result {
  border: 1px solid rgba(32, 178, 170, 0.20);
  border-radius: 24px;
  padding: 18px;
  background: rgba(176, 224, 230, 0.22);
}

.mini-status {
  margin: 0;
  color: var(--fs-muted);
  font-size: 14px;
  line-height: 1.6;
}

.fs-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(36px, 6vw, 96px);
  width: 100%;
  padding: 72px max(36px, calc((100vw - 1280px) / 2));
  color: #ffffff;
  background: #1f2937;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fs-footer .fs-logo {
  color: #ffffff;
}

.fs-footer .fs-logo svg {
  stroke: #b0e0e6;
}

.fs-footer p,
.fs-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.fs-footer p {
  max-width: 390px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.fs-footer nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.fs-footer h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.fs-footer a {
  display: block;
  margin-top: 12px;
  text-decoration: none;
}

.fs-footer a:hover {
  color: #ffffff;
}

.fs-social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.fs-social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.24);
}

/* Developer portal: same friendly system, but denser for workspace productivity. */
body[data-page="developer"] {
  --theme-background: #fffdf7;
  --theme-surface: rgba(255, 255, 255, 0.78);
  --theme-surfaceAlt: rgba(176, 224, 230, 0.18);
  --theme-border: rgba(17, 24, 39, 0.12);
  --theme-text: #111827;
  --theme-muted: #4b5563;
  --theme-primary: #64748b;
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 224, 230, 0.55), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(255, 182, 217, 0.34), transparent 28rem),
    var(--theme-background);
  color: var(--theme-text);
}

body[data-page="developer"][data-theme="dark"] {
  --theme-background: #1f2937;
  --theme-surface: rgba(31, 41, 55, 0.92);
  --theme-surfaceAlt: rgba(71, 85, 105, 0.42);
  --theme-border: rgba(255, 255, 255, 0.14);
  --theme-text: #f9fafb;
  --theme-muted: #d1d5db;
  --theme-primary: #b0e0e6;
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 224, 230, 0.16), transparent 24rem),
    #111827;
  color: var(--theme-text);
}

.admin-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 292px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  border-right: 1px solid var(--theme-border);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  padding: 28px 20px;
}

body[data-page="developer"][data-theme="dark"] .admin-sidebar {
  background: rgba(17, 24, 39, 0.76);
}

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

.developer-avatar,
.developer-topline-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--fs-slate), var(--fs-slate-dark));
  font-weight: 900;
}

.developer-brand-text {
  display: grid;
  gap: 2px;
}

.developer-brand-text strong,
.developer-topline-title strong {
  color: var(--theme-text);
  font-weight: 900;
}

.developer-brand-text small {
  color: var(--theme-muted);
  font-size: 13px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 48px;
}

.admin-sidebar nav button,
.admin-sidebar nav a,
.developer-sidebar-footer button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--theme-muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.admin-sidebar nav button:hover,
.admin-sidebar nav a:hover,
.admin-sidebar nav button.active,
.developer-sidebar-footer button:hover {
  color: var(--theme-text);
  background: var(--theme-surfaceAlt);
  transform: translateX(2px);
}

.admin-sidebar nav button::before,
.admin-sidebar nav a::before {
  display: none !important;
}

.developer-sidebar-footer {
  display: grid;
  gap: 6px;
  margin-top: 56px;
  border: 1px solid var(--theme-border);
  border-radius: 24px;
  padding: 10px;
  background: var(--theme-surface);
  box-shadow: var(--fs-shadow);
}

.admin-main {
  width: min(100% - 72px, 1240px);
  margin: 0 auto;
  padding: 38px 0 88px;
}

.developer-topline,
.developer-page-head,
.developer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.developer-topline {
  min-height: 64px;
  border-bottom: 1px solid var(--theme-border);
  margin-bottom: 54px;
  padding-bottom: 18px;
}

.developer-topline-title,
.developer-topline-actions,
.developer-page-actions,
.developer-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.developer-topline-actions a,
.developer-topline-actions button,
.developer-page-actions button,
.developer-detail-actions button,
.developer-detail-actions a,
.admin-toolbar button,
.key-table-toolbar button,
.auth-mode-tabs button {
  min-height: 42px;
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--theme-text);
  background: var(--theme-surface);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 220ms ease;
}

.developer-topline-actions a:hover,
.developer-topline-actions button:hover,
.developer-page-actions button:hover,
.developer-detail-actions button:hover,
.developer-detail-actions a:hover,
.admin-toolbar button:hover,
.key-table-toolbar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.10);
}

.developer-primary-button,
.admin-form-grid button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--fs-slate);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: all 220ms ease;
}

.developer-primary-button:hover,
.admin-form-grid button:hover {
  background: var(--fs-slate-dark);
  box-shadow: 0 14px 28px rgba(71, 85, 105, 0.22);
}

.developer-page-head {
  margin-bottom: 26px;
}

.developer-page-head h1,
.developer-workspace-card h2,
.developer-card-head h2,
.admin-panel h2,
.admin-login-card h1,
.admin-login-card h2 {
  margin: 0;
  color: var(--theme-text);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0.01em;
  word-break: normal;
}

.admin-meta,
.admin-login-card p {
  margin: 8px 0 0;
  color: var(--theme-muted);
  font-size: 15px;
  line-height: 1.7;
}

.zip-section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--fs-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-dashboard-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.developer-dashboard-summary button,
.developer-workspace-card,
.admin-panel,
.quickstart-main,
.resend-panel,
.developer-detail-page,
.api-key-modal > div,
.command-palette > div,
.developer-onboarding-wizard,
.developer-wizard-panel,
.admin-login-card {
  border: 1px solid var(--theme-border);
  border-radius: 28px;
  background: var(--theme-surface);
  box-shadow: var(--fs-shadow);
}

.developer-dashboard-summary button {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
  text-align: left;
}

.developer-dashboard-summary button:nth-child(1) {
  background: linear-gradient(145deg, rgba(255, 182, 217, 0.45), var(--theme-surface));
}

.developer-dashboard-summary button:nth-child(2) {
  background: linear-gradient(145deg, rgba(176, 224, 230, 0.55), var(--theme-surface));
}

.developer-dashboard-summary button:nth-child(3) {
  background: linear-gradient(145deg, rgba(144, 238, 144, 0.38), var(--theme-surface));
}

.developer-dashboard-summary button:nth-child(4) {
  background: linear-gradient(145deg, rgba(255, 246, 190, 0.68), var(--theme-surface));
}

.developer-dashboard-summary strong {
  color: var(--theme-text);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.developer-dashboard-summary span,
.developer-dashboard-summary small {
  color: var(--theme-muted);
}

.developer-dashboard-grid,
.settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 20px;
}

.developer-workspace-card,
.admin-panel,
.quickstart-main,
.developer-onboarding-wizard,
.resend-panel,
.developer-detail-page {
  padding: 24px;
}

.admin-toolbar,
.key-table-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr) auto;
  gap: 12px;
  margin-bottom: 18px;
}

.key-table-toolbar {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.32fr);
}

.audit-toolbar {
  grid-template-columns: minmax(190px, 0.35fr) auto auto;
  justify-content: end;
}

.admin-toolbar input,
.admin-toolbar select,
.admin-login-card input,
.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select,
body[data-page="developer"] input,
body[data-page="developer"] textarea,
body[data-page="developer"] select {
  min-height: 46px;
  border: 1px solid var(--theme-border);
  border-radius: 18px;
  padding: 0 14px;
  color: var(--theme-text);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 14px;
  outline: 0;
}

body[data-page="developer"][data-theme="dark"] input,
body[data-page="developer"][data-theme="dark"] textarea,
body[data-page="developer"][data-theme="dark"] select {
  background: rgba(17, 24, 39, 0.56);
}

body[data-page="developer"] textarea {
  min-height: 120px;
  padding-top: 12px;
  line-height: 1.65;
}

.developer-checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--theme-text);
  font-size: 14px;
  font-weight: 800;
}

.developer-checkline input {
  min-height: auto !important;
  width: 18px;
  height: 18px;
}

.resend-table,
.escalation-list,
.audit-table {
  overflow: hidden;
  border: 1px solid var(--theme-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--fs-shadow);
}

body[data-page="developer"][data-theme="dark"] .resend-table,
body[data-page="developer"][data-theme="dark"] .escalation-list,
body[data-page="developer"][data-theme="dark"] .audit-table {
  background: rgba(17, 24, 39, 0.42);
}

.resend-table-row,
.inbox-table-row,
.audit-table-row,
.dashboard-recent-row,
.agent-table-row {
  display: grid;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--theme-border);
  padding: 0 18px;
  color: var(--theme-text);
  background: transparent;
  font-size: 14px;
  text-align: left;
}

.resend-table-row small,
.inbox-table-row small,
.audit-table-row small,
.dashboard-recent-row small,
.agent-table-row small {
  display: block;
  margin-top: 4px;
  color: var(--theme-muted);
  font-size: 12px;
  line-height: 1.35;
}

.selectable-row {
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}

.selectable-row:hover,
.selectable-row.active {
  background: var(--theme-surfaceAlt);
}

.resend-table-head,
.inbox-table-head {
  min-height: 48px;
  color: var(--theme-muted);
  background: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="developer"][data-theme="dark"] .resend-table-head,
body[data-page="developer"][data-theme="dark"] .inbox-table-head {
  background: rgba(255, 255, 255, 0.06);
}

.inbox-table-row {
  grid-template-columns: minmax(240px, 1.4fr) 130px 110px 150px 100px 180px;
}

.resend-table-row {
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.8fr) 110px 160px 170px auto;
}

.agent-table-row {
  grid-template-columns: minmax(220px, 1fr) 150px 120px 110px 110px;
}

.dashboard-recent-row {
  grid-template-columns: minmax(240px, 1fr) 110px 150px 160px;
}

.audit-table-row {
  grid-template-columns: minmax(260px, 1.15fr) minmax(220px, 0.9fr) minmax(220px, 0.8fr) minmax(190px, 0.65fr);
}

.key-state-active,
.key-state-approved {
  color: #065f46;
  background: rgba(144, 238, 144, 0.36);
}

.key-state-pending,
.key-state-held,
.key-state-shadow {
  color: #854d0e;
  background: rgba(254, 243, 199, 0.88);
}

.key-state-revoked,
.key-state-rejected {
  color: #9f1239;
  background: rgba(255, 182, 217, 0.38);
}

.empty-state {
  border: 1px dashed var(--theme-border);
  border-radius: 24px;
  padding: 34px;
  color: var(--theme-muted);
  line-height: 1.7;
  text-align: center;
}

.api-key-modal,
.command-palette {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.36);
  backdrop-filter: blur(10px);
}

.api-key-modal[hidden],
.command-palette[hidden],
[hidden] {
  display: none !important;
}

.api-key-modal > div,
.command-palette > div,
.admin-login-card {
  width: min(100% - 32px, 520px);
  padding: 26px;
}

.command-palette > div {
  width: min(100% - 32px, 720px);
}

.admin-login-card {
  margin: 12vh auto 0;
}

body.developer-auth-mode .admin-shell,
.admin-shell:has(#developer-login:not([hidden])),
.admin-shell:has(#developer-password:not([hidden])) {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
}

body[data-page="developer"].developer-auth-mode,
body[data-page="developer"]:has(#developer-login:not([hidden])),
body[data-page="developer"]:has(#developer-password:not([hidden])) {
  background:
    radial-gradient(circle at 12% 4%, rgba(176, 224, 230, 0.62), transparent 30rem),
    radial-gradient(circle at 88% 10%, rgba(255, 182, 217, 0.42), transparent 32rem),
    linear-gradient(135deg, #ecfeff 0%, #fffdf7 48%, #fff1f7 100%);
}

#developer-login.admin-login-card,
#developer-password.admin-login-card {
  width: min(100%, 470px);
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(20px);
}

#developer-login-form,
#developer-reset-password-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

#developer-login-form button,
#developer-reset-password-form button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  color: #ffffff;
  background: var(--fs-slate);
  font-weight: 900;
  cursor: pointer;
  transition: all 220ms ease;
}

#developer-login-form button:hover,
#developer-reset-password-form button:hover {
  background: var(--fs-slate-dark);
  box-shadow: 0 14px 28px rgba(71, 85, 105, 0.22);
}

#developer-forgot-password {
  color: var(--theme-muted) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: var(--theme-border) !important;
  box-shadow: none !important;
}

.auth-mode-tabs,
.admin-form-grid,
.developer-wizard-panels,
.ai-prompt-builder,
.ai-risk-picker {
  display: grid;
  gap: 14px;
}

.auth-mode-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0;
}

.auth-mode-tabs button.active {
  color: #ffffff;
  background: var(--fs-slate);
}

.developer-onboarding-wizard {
  display: grid;
  gap: 22px;
}

.quickstart-checklist,
.developer-stepper,
.ai-prompt-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.developer-stepper button,
.ai-prompt-flow article,
.quickstart-checklist article {
  border: 1px solid var(--theme-border);
  border-radius: 22px;
  padding: 16px;
  color: var(--theme-text);
  background: var(--theme-surface);
  text-align: left;
}

.developer-stepper button.active {
  background: rgba(176, 224, 230, 0.34);
}

.developer-wizard-panel {
  padding: 18px;
}

.developer-wizard-panel summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.developer-wizard-panel summary span,
.ai-prompt-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--fs-slate);
  font-weight: 900;
}

.developer-wizard-panel summary small {
  grid-column: 2;
  color: var(--theme-muted);
}

.minimal-warning {
  margin: 14px 0;
  border: 1px solid rgba(32, 178, 170, 0.20);
  border-radius: 20px;
  padding: 14px;
  background: rgba(176, 224, 230, 0.18);
  color: var(--theme-muted);
  line-height: 1.6;
}

.minimal-warning strong {
  color: var(--theme-text);
}

.developer-wizard-actions,
.ai-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.developer-wizard-actions button,
.ai-prompt-actions button,
.developer-form-modal > div > button,
#api-key-modal-copy {
  min-height: 42px;
  border: 1px solid var(--theme-border);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--theme-text);
  background: var(--theme-surface);
  font-weight: 800;
  cursor: pointer;
}

#api-key-modal-value,
.api-key-modal code {
  display: block;
  overflow-wrap: anywhere;
  margin: 16px 0;
  border-radius: 18px;
  padding: 14px;
  color: var(--theme-text);
  background: var(--theme-surfaceAlt);
}

.ai-prompt-output {
  max-height: 460px;
}

@media (max-width: 1100px) {
  .fs-hero-section,
  .fs-two-column,
  .fs-waitlist-card {
    grid-template-columns: 1fr;
  }

  .fs-browser-mockup {
    width: min(100%, 680px);
    justify-self: center;
  }

  .fs-feature-grid,
  .fs-metrics-grid,
  .developer-dashboard-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .admin-shell {
    display: block;
  }

  .admin-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--theme-border);
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .admin-main {
    width: min(100% - 32px, 760px);
  }

  .developer-dashboard-grid,
  .settings-grid,
  .admin-toolbar,
  .key-table-toolbar,
  .audit-toolbar,
  .quickstart-checklist,
  .developer-stepper,
  .ai-prompt-flow {
    grid-template-columns: 1fr;
  }

  .inbox-table-row,
  .resend-table-row,
  .dashboard-recent-row,
  .agent-table-row,
  .audit-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 14px;
  }
}

@media (max-width: 760px) {
  .fs-nav-shell {
    top: 12px;
    width: min(100% - 24px, 1280px);
    min-height: 64px;
    padding: 8px 10px 8px 16px;
  }

  .fs-desktop-nav,
  .fs-signin-link {
    display: none;
  }

  .fs-mobile-nav {
    display: block;
  }

  .fs-nav-actions > .fs-button {
    display: none;
  }

  .fs-hero-section,
  .fs-section {
    width: 100%;
    padding-inline: 18px;
  }

  .fs-hero-section {
    min-height: auto;
    padding-top: 74px;
  }

  .fs-hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 1.02;
  }

  .fs-hero-copy p,
  .fs-section-heading p,
  .fs-section-copy p,
  .fs-waitlist-card p {
    font-size: 16px;
  }

  .fs-hero-form {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .fs-mockup-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fs-app-rail {
    grid-auto-flow: column;
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.10);
    padding: 0 0 16px;
  }

  .fs-browser-mockup {
    transform: scale(0.92);
    transform-origin: center top;
    animation: none;
  }

  .fs-feature-grid,
  .fs-use-grid,
  .fs-metrics-grid,
  .fs-live-demo-grid,
  .fs-security-card,
  .developer-dashboard-summary {
    grid-template-columns: 1fr;
  }

  .live-request-card dl {
    grid-template-columns: 1fr;
  }

  .fs-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .fs-footer nav {
    grid-template-columns: 1fr;
  }

  .admin-sidebar nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
