@font-face {
  font-family: "Moneygraphy Rounded";
  src: url("./assets/fonts/Moneygraphy-Rounded.ttf") format("truetype");
  font-display: swap;
}

:root {
  --blue-50: #e8f3ff;
  --blue-500: #2563eb;
  --blue-600: #2272eb;
  --green-500: #03b26c;
  --red-500: #f04452;
  --grey-50: #f9fafb;
  --grey-100: #f2f4f6;
  --grey-200: #e5e8eb;
  --grey-300: #d1d6db;
  --grey-500: #8b95a1;
  --grey-600: #6b7684;
  --grey-700: #4e5968;
  --grey-800: #333d4b;
  --grey-900: #191f28;
  --white: #ffffff;
  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.06);
  --font:
    "Moneygraphy Rounded", "Toss Product Sans", "SF Pro KR", "SF Pro Display",
    -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--grey-900);
  font-family: var(--font);
  letter-spacing: -0.02em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 232, 235, 0.82);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-900);
  font-size: 16px;
  font-weight: 700;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue-500);
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  color: var(--grey-900);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-1);
}

main {
  overflow: hidden;
}

section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  min-height: calc(100vh - 64px);
  padding: 88px 0 80px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--grey-900);
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.08;
  font-weight: 700;
  word-break: keep-all;
}

.hero-title span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  color: var(--grey-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  color: var(--grey-900);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

p {
  color: var(--grey-600);
  font-size: 16px;
  line-height: 1.65;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: 160ms ease;
}

.button-primary {
  border: 1px solid var(--blue-500);
  background: var(--blue-500);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--blue-600);
  background: var(--blue-600);
  transform: translateY(-1px);
}

.button-primary:disabled {
  cursor: not-allowed;
  border-color: rgba(139, 149, 161, 0.34);
  background: var(--grey-500);
  transform: none;
}

.button-secondary {
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-900);
  box-shadow: var(--shadow-1);
}

.button-secondary:hover {
  border-color: var(--grey-300);
  transform: translateY(-1px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-points span,
.audience-list span {
  padding: 8px 12px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: var(--grey-50);
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 700;
}

.demo-card {
  border: 1px solid var(--grey-200);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
  box-shadow: 0 24px 60px rgba(25, 31, 40, 0.12);
  overflow: hidden;
}

.demo-topbar {
  height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-200);
}

.window-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
}

.dot-red {
  background: var(--red-500);
}

.dot-yellow {
  background: #ffc342;
}

.dot-green {
  background: var(--green-500);
}

.demo-label {
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 700;
}

.interactive-demo {
  margin: 18px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.2), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(3, 178, 108, 0.14), transparent 30%),
    linear-gradient(135deg, #101828 0%, #182238 100%);
}

.demo-stage-header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-badge,
.demo-counter {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.live-badge {
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(3, 178, 108, 0.62);
  animation: livePulse 1.5s ease-out infinite;
}

.demo-counter {
  background: rgba(255, 255, 255, 0.08);
  font-variant-numeric: tabular-nums;
}

.demo-screen {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.demo-command {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.demo-field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 800;
}

.demo-input {
  min-height: 52px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  background: var(--grey-50);
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 800;
}

.typing-cursor {
  width: 2px;
  height: 18px;
  display: inline-block;
  background: var(--blue-500);
  animation: cursorBlink 0.9s steps(2, start) infinite;
}

.demo-generate {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--blue-500);
  border-radius: 14px;
  background: var(--blue-500);
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
}

.demo-body {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
}

.demo-settings {
  display: grid;
  gap: 8px;
  align-content: start;
}

.setting-card {
  padding: 13px;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  background: var(--white);
}

.setting-card.is-on {
  border-color: rgba(37, 99, 235, 0.24);
  background: var(--blue-50);
}

.setting-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--grey-500);
  font-size: 11px;
  font-weight: 800;
}

.setting-card strong {
  display: block;
  color: var(--grey-900);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.demo-run {
  display: grid;
  gap: 8px;
}

.run-step {
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  background: var(--white);
  opacity: 0.64;
  transform: scale(0.99);
  transition: 260ms ease;
}

.run-step b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--grey-100);
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.run-step strong {
  display: block;
  margin-bottom: 2px;
  color: var(--grey-900);
  font-size: 13px;
  font-weight: 900;
}

.run-step span {
  display: block;
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 700;
}

.run-step.is-active {
  border-color: rgba(37, 99, 235, 0.42);
  background: var(--blue-50);
  opacity: 1;
  transform: scale(1);
}

.run-step.is-active b {
  background: var(--blue-500);
  color: var(--white);
}

.run-step.is-done {
  opacity: 1;
}

.run-step.is-done b {
  background: rgba(3, 178, 108, 0.13);
  color: var(--green-500);
}

.demo-result-card {
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  animation: cardFloat 2.6s ease-in-out infinite;
}

.result-card-top {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-card-top span {
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 900;
}

.result-card-top small {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--grey-100);
  color: var(--grey-600);
  font-size: 11px;
  font-weight: 900;
}

.demo-result-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--grey-900);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

.demo-result-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
}

.demo-caption {
  min-height: 54px;
  margin-top: 14px;
  padding: 0 2px;
  display: grid;
  gap: 4px;
}

.demo-caption strong {
  color: var(--white);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 900;
}

.demo-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 178, 108, 0.62);
  }

  100% {
    box-shadow: 0 0 0 9px rgba(3, 178, 108, 0);
  }
}

@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.video-placeholder {
  min-height: 260px;
  margin: 18px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.24), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(3, 178, 108, 0.16), transparent 26%),
    linear-gradient(135deg, #101828 0%, #182238 100%);
}

.video-placeholder p {
  margin: 16px 0 4px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.video-placeholder span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.play-button {
  width: 72px;
  height: 72px;
  position: relative;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 24px;
  border-left: 20px solid var(--blue-500);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.app-preview {
  margin: 0 18px 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  background: var(--white);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
}

.preview-pill {
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--grey-100);
  color: var(--grey-600);
  font-size: 13px;
  font-weight: 700;
}

.preview-pill.active {
  background: var(--blue-50);
  color: var(--blue-500);
}

.preview-main {
  display: grid;
  gap: 12px;
}

.input-row {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background: var(--grey-50);
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 700;
}

.input-row strong {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 12px;
}

.progress-list {
  display: grid;
  gap: 8px;
}

.progress-list p {
  margin: 0;
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.progress-list b {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: 12px;
}

.thread-card {
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.thread-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 700;
}

.thread-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--grey-900);
  font-size: 15px;
  line-height: 1.5;
}

.thread-card p {
  margin: 0;
  color: var(--grey-600);
  font-size: 13px;
  line-height: 1.55;
}

.pain-section,
.workflow-section,
.features-section,
.audience-section,
.faq-section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.pain-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pain-grid article,
.feature-grid article,
.workflow-list article,
.trust-card,
.output-card,
.faq-list details {
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.pain-grid article {
  padding: 24px;
}

.pain-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.pain-grid p,
.feature-grid p,
.workflow-list p {
  margin-bottom: 0;
}

.workflow-section {
  width: 100%;
  max-width: none;
  background: var(--grey-50);
}

.workflow-section > * {
  width: min(1120px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list article {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.result-section {
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.result-copy {
  max-width: 460px;
}

.output-card {
  overflow: hidden;
}

.output-header {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-200);
  background: var(--grey-50);
}

.output-header span {
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 800;
}

.output-header button {
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--blue-500);
  border-radius: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
}

pre {
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: var(--grey-800);
  font-family: "SF Mono", Consolas, monospace;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article {
  padding: 22px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 800;
}

.trust-section {
  width: 100%;
  max-width: none;
  padding: 96px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.trust-card {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px;
}

.trust-card p {
  max-width: 720px;
}

.notice-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--grey-800);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--grey-900);
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue-500);
  font-size: 20px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta-section {
  width: min(980px, calc(100% - 40px));
  margin-bottom: 74px;
  padding: 52px;
  border-radius: 28px;
  background: var(--grey-900);
  text-align: center;
  box-shadow: 0 24px 60px rgba(25, 31, 40, 0.18);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.72);
}

.early-form {
  max-width: 620px;
  margin: 0 auto 12px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.early-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--grey-900);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
}

.early-form input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

.early-form .button {
  white-space: nowrap;
}

.form-note {
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px;
  font-weight: 700;
}

.form-note.is-error {
  color: #ffd3d8 !important;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(2, 9, 19, 0.58);
  backdrop-filter: blur(10px);
}

.success-modal-card {
  width: min(440px, 100%);
  position: relative;
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.success-modal-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.success-modal-card p {
  margin-bottom: 24px;
}

.success-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-50);
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 900;
}

.modal-close {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 16px;
  top: 16px;
  border: 0;
  border-radius: 10px;
  background: var(--grey-100);
  color: var(--grey-600);
  font-family: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.admin-page {
  min-height: 100vh;
  background: var(--grey-50);
}

.admin-shell {
  width: min(720px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 64px 0;
}

.admin-card {
  width: 100%;
  padding: 34px;
  border: 1px solid var(--grey-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.admin-card h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.admin-form {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.admin-form label {
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 900;
}

.admin-form input {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  outline: none;
  background: var(--grey-50);
  color: var(--grey-900);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
}

.admin-form input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.admin-status {
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  background: var(--grey-100);
  color: var(--grey-700);
  font-size: 14px;
  font-weight: 800;
}

.admin-status.is-error {
  background: #fff1f2;
  color: var(--red-500);
}

.admin-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.admin-list-item {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
}

.admin-list-item strong {
  color: var(--grey-900);
  font-size: 14px;
}

.admin-list-item span {
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--grey-200);
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 700;
}

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

  .hero-section,
  .result-section {
    grid-template-columns: 1fr;
  }

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

  .demo-card {
    max-width: 720px;
  }

  .demo-body {
    grid-template-columns: 1fr;
  }

  .demo-settings {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  section,
  .workflow-section > *,
  .trust-card,
  .cta-section,
  .site-footer {
    width: min(100% - 32px, 1120px);
  }

  .nav-cta {
    display: none;
  }

  .hero-section,
  .pain-section,
  .workflow-section,
  .features-section,
  .audience-section,
  .faq-section,
  .result-section,
  .trust-section {
    padding: 64px 0;
  }

  h1 {
    font-size: 36px;
  }

  .hero-title span {
    display: inline;
  }

  .hero-title span:first-child::after {
    content: " ";
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .interactive-demo {
    margin: 14px;
    padding: 14px;
  }

  .demo-command {
    grid-template-columns: 1fr;
  }

  .demo-generate {
    width: 100%;
  }

  .demo-settings {
    grid-template-columns: 1fr;
  }

  .app-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }

  .preview-pill {
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
  }

  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .workflow-list article {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 36px 22px;
  }

  .early-form {
    grid-template-columns: 1fr;
  }

  .admin-list-item {
    flex-direction: column;
  }

  .site-footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
