/* ============================================
   SmallForge AI — Landing page
   Deep navy + warm copper
   ============================================ */

:root {
  --navy: #0b1d36;
  --navy-deep: #071426;
  --navy-mid: #152a45;
  --navy-soft: #1e3a5f;
  --copper: #e8913a;
  --copper-hover: #d47d28;
  --copper-soft: #f3c08a;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --text: #1a2332;
  --text-muted: #5a6a7c;
  --border: #e4ddd3;
  --border-soft: #ebe6de;
  --shadow: 0 4px 24px rgba(11, 29, 54, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 29, 54, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

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

/* Layout */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}

.eyebrow.light {
  color: var(--copper-soft);
}

.section-header {
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-header.center,
.section-header {
  text-align: left;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.section-lead.light {
  color: rgba(250, 248, 245, 0.78);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.95rem 1.65rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--copper);
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(232, 145, 58, 0.35);
}

.btn-primary:hover {
  background: var(--copper-hover);
  box-shadow: 0 6px 20px rgba(232, 145, 58, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 0 rgba(11, 29, 54, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: flex;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-ai {
  font-weight: 600;
  color: var(--text-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-desktop a:hover {
  color: var(--navy);
}

.nav-desktop .nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-desktop .nav-cta:hover {
  background: var(--navy-mid);
  color: var(--cream);
}

.header-cta-mobile {
  flex-shrink: 0;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }
  .header-cta-mobile {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 2.5rem 0 4.5rem;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    padding: 3.5rem 0 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
}

.hero-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-trust-row svg {
  color: var(--copper);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: 10% 5% -10%;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 145, 58, 0.18) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

.preview-card {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.preview-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--navy);
}

.preview-chrome .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.preview-chrome .dot:first-child {
  background: #e8913a;
}

.preview-url {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.preview-body {
  padding: 1.25rem 1.15rem 1.5rem;
  background: linear-gradient(180deg, #f7f4ef 0%, #fff 40%);
}

.preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pn-logo {
  width: 72px;
  height: 10px;
  border-radius: 4px;
  background: var(--navy);
  opacity: 0.85;
}

.pn-links {
  width: 90px;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}

.preview-hero-block {
  margin-bottom: 1.5rem;
}

.ph-line {
  border-radius: 4px;
  background: var(--navy);
  margin-bottom: 0.55rem;
}

.ph-title {
  width: 78%;
  height: 14px;
  opacity: 0.9;
}

.ph-sub {
  width: 92%;
  height: 8px;
  opacity: 0.25;
  margin-bottom: 0.35rem;
}

.ph-sub::after {
  content: "";
  display: block;
  width: 70%;
  height: 8px;
  background: var(--navy);
  opacity: 0.35;
  border-radius: 4px;
  margin-top: 0.35rem;
}

.ph-btn {
  width: 100px;
  height: 28px;
  border-radius: 999px;
  background: var(--copper);
  margin-top: 1rem;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.pc {
  height: 64px;
  border-radius: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--border-soft);
}

.pc:nth-child(2) {
  background: rgba(232, 145, 58, 0.12);
  border-color: rgba(232, 145, 58, 0.2);
}

.preview-badge {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--navy);
  color: var(--cream);
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(11, 29, 54, 0.25);
}

.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  font-weight: 600;
}

.badge-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1.1;
}

/* How it works */
.how {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--copper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Real example / portfolio */
.example {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}

.example-header {
  max-width: 640px;
}

.example-header .section-lead strong {
  color: var(--navy);
  font-weight: 600;
}

.example-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.browser-frame {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--navy);
}

.browser-bar.compact {
  padding: 0.5rem 0.75rem;
}

.browser-dots {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #febc2e;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-viewport {
  position: relative;
  background: var(--cream-dark);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.browser-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.browser-viewport.crop-top img {
  object-position: center 20%;
}

.browser-viewport.crop-mid img {
  object-position: center center;
}

.example-main .browser-viewport {
  aspect-ratio: 16 / 10;
}

.example-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .example-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.example-thumb .browser-viewport {
  aspect-ratio: 4 / 3;
}

.example-thumb figcaption {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}

.example-thumb {
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.example-thumb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.example-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

@media (min-width: 800px) {
  .example-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.25rem;
  }
}

.example-story {
  max-width: 36rem;
}

.example-story p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.example-cta-line {
  margin-top: 0.75rem !important;
  color: var(--navy) !important;
  font-weight: 500;
}

.example-cta-line em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--copper-hover);
}

.example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.example-actions .btn {
  gap: 0.4rem;
}

/* What you get */
.get-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .get-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.benefit-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.benefit-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.benefit-list .check {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-list strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.benefit-list span:last-child {
  display: block;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.55;
}

/* Offer card */
.offer-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.offer-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--copper-soft);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.offer-price .currency {
  font-size: 1.75rem;
  vertical-align: super;
  margin-right: 0.1rem;
  opacity: 0.85;
}

.offer-note {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.55);
  margin-top: 0.35rem;
  margin-bottom: 1.5rem;
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.offer-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.975rem;
  color: rgba(250, 248, 245, 0.9);
}

.offer-includes li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.offer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.offer-not {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 1.5rem;
}

.offer-not strong {
  color: rgba(250, 248, 245, 0.85);
  font-weight: 600;
}

.offer-card .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 1.25rem;
}

/* Trust */
.trust {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.trust-icon {
  color: var(--copper);
  margin-bottom: 1rem;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

.trust-quote {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border-left: 4px solid var(--copper);
}

.trust-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 48rem;
  color: rgba(250, 248, 245, 0.92);
}

/* Order / Form */
.order {
  background: var(--navy-deep);
  background-image: radial-gradient(
      ellipse 80% 60% at 10% 20%,
      rgba(232, 145, 58, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 90% 80%,
      rgba(30, 58, 95, 0.5) 0%,
      transparent 50%
    );
  color: var(--cream);
  padding-bottom: 6rem;
}

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

.order-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .order-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.order-bullets {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.975rem;
  color: rgba(250, 248, 245, 0.75);
}

.order-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 600px) {
  .form-card {
    padding: 2.25rem 2rem 2.5rem;
  }
}

.form-intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.form-intro-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}

.form-intro-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.field-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.req {
  color: var(--copper);
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
  outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9aa8b8;
}

.form-row input:hover,
.form-row textarea:hover {
  border-color: #d0c8bc;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 29, 54, 0.08);
}

.form-row input.error,
.form-row textarea.error {
  border-color: #c45c4a;
  box-shadow: 0 0 0 3px rgba(196, 92, 74, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 88px;
}

.form-row-split {
  display: grid;
  gap: 0;
}

@media (min-width: 520px) {
  .form-row-split {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-card .btn-primary {
  margin-top: 0.65rem;
  font-size: 1.08rem;
  padding: 1rem 1.5rem;
}

.form-card .btn-primary:disabled {
  opacity: 0.85;
  cursor: wait;
}

.form-fineprint {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  color: rgba(250, 248, 245, 0.55);
}

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

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-brand p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  max-width: 22rem;
}

.logo-footer {
  color: var(--cream);
}

.logo-footer .logo-mark {
  color: var(--cream);
}

.logo-footer .logo-ai {
  color: rgba(250, 248, 245, 0.5);
}

.footer-meta {
  text-align: left;
}

@media (min-width: 640px) {
  .footer-meta {
    text-align: right;
  }
}

.footer-meta a {
  color: var(--copper-soft);
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-meta a:hover {
  color: var(--copper);
}

.copyright {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

/* Focus visibility for a11y */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .step:hover {
    transform: none;
  }
  .btn,
  .step {
    transition: none;
  }
}
