/* Screenerfly marketing site */

:root {
  --sf-blue: #0070c0;
  --sf-blue-dark: #005a9e;
  --sf-lime: #84cc16;
  --sf-purple: #9333ea;
  --sf-orange: #f97316;
  --sf-sky: #38bdf8;
  --sf-dark: #0a0a0f;
  --sf-dark-soft: #12121a;
  --sf-text: #0f172a;
  --sf-muted: #64748b;
  --sf-border: #e2e8f0;
  --sf-white: #ffffff;
  --sf-radius: 12px;
  --sf-radius-lg: 20px;
  --sf-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
  --sf-card-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 6px 16px rgba(15, 23, 42, 0.06),
    0 16px 40px -12px rgba(15, 23, 42, 0.1);
  --sf-card-shadow-hover:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 16px 32px rgba(15, 23, 42, 0.1),
    0 28px 56px -16px rgba(0, 112, 192, 0.14);
  --sf-font: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.marketing {
  margin: 0;
  font-family: var(--sf-font);
  line-height: 1.6;
  color: var(--sf-text);
  background: var(--sf-white);
  -webkit-font-smoothing: antialiased;
}

/* Header — solid dark bar (matches hero) so it stays consistent while scrolling */
.sf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sf-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sf-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sf-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

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

.sf-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
}

.sf-nav a:hover {
  color: var(--sf-white);
}

.sf-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, var(--sf-blue), var(--sf-sky));
  color: var(--sf-white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.sf-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 112, 192, 0.4);
}

@media (min-width: 768px) {
  .sf-nav {
    display: flex;
  }
}

/* Hero */
.sf-hero {
  position: relative;
  background: var(--sf-dark);
  color: var(--sf-white);
  padding: 4rem 1.25rem 5rem;
  overflow: hidden;
}

.sf-hero-inner {
  max-width: 84rem;
}

.sf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(0, 112, 192, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(147, 51, 234, 0.25), transparent),
    radial-gradient(ellipse 40% 35% at 70% 80%, rgba(132, 204, 22, 0.15), transparent),
    radial-gradient(ellipse 35% 30% at 10% 90%, rgba(249, 115, 22, 0.12), transparent);
  pointer-events: none;
}

.sf-hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.sf-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .sf-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

.sf-hero-copy {
  min-width: 0;
}

.sf-hero-media {
  min-width: 0;
}

/* Shared colourful gradient frame (hero video, step cards, etc.) */
.sf-gradient-frame {
  padding: 3px;
  border-radius: calc(var(--sf-radius-lg) + 3px);
  background: linear-gradient(
    135deg,
    var(--sf-sky),
    var(--sf-blue),
    var(--sf-purple),
    var(--sf-orange)
  );
}

/* Hero video — drop-in ready for <video class="sf-hero-video__player"> */
.sf-hero-video-shell {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 64px -16px rgba(0, 112, 192, 0.45),
    0 0 80px -20px rgba(147, 51, 234, 0.35);
  animation: sf-video-glow 4s ease-in-out infinite;
}

.sf-hero-media .sf-hero-video-shell {
  max-width: none;
  margin: 0 auto;
}

.sf-hero-media .sf-hero-video {
  aspect-ratio: 16 / 9;
}

@media (min-width: 960px) {
  .sf-hero-media .sf-hero-video {
    aspect-ratio: 16 / 9;
  }
}

.sf-hero-copy {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.sf-hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.sf-hero-actions {
  justify-content: center;
}

.sf-hero-stats--compact {
  margin-top: 1.75rem;
  padding-top: 0;
  border-top: none;
  gap: 1.25rem 2rem;
  justify-content: center;
}

.sf-hero-stats--compact .sf-stat {
  max-width: 16rem;
}

.sf-hero-stats--compact .sf-stat strong {
  font-size: 1.25rem;
}

.sf-hero-stats--compact .sf-stat span {
  font-size: 0.875rem;
}

@keyframes sf-video-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 24px 64px -16px rgba(0, 112, 192, 0.45),
      0 0 80px -20px rgba(147, 51, 234, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 28px 72px -12px rgba(56, 189, 248, 0.5),
      0 0 96px -16px rgba(147, 51, 234, 0.45);
  }
}

.sf-hero-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
  background: #0f1419;
}

.sf-hero-video-audio {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.sf-hero-video-audio:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(56, 189, 248, 0.5);
}

.sf-hero-video-audio:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.85);
  outline-offset: 3px;
}

.sf-hero-video-audio__icon {
  font-size: 1rem;
  line-height: 1;
}

.sf-hero-video-audio[data-muted="false"] {
  padding: 0.5rem;
  gap: 0;
}

.sf-hero-video-audio[data-muted="false"] .sf-hero-video-audio__label {
  display: none;
}

.sf-hero-video-restart {
  position: absolute;
  top: 1rem;
  right: 5.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.sf-hero-video-restart:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(56, 189, 248, 0.5);
}

.sf-hero-video-restart:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.85);
  outline-offset: 3px;
}

.sf-hero-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 35%, rgba(0, 112, 192, 0.35), transparent),
    radial-gradient(ellipse 50% 45% at 80% 70%, rgba(147, 51, 234, 0.2), transparent),
    linear-gradient(160deg, #121820 0%, #0a0e14 50%, #151a24 100%);
}

.sf-hero-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: sf-video-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sf-video-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sf-hero-video-live {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3125rem 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.sf-hero-video-play {
  position: relative;
  z-index: 1;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sf-hero-video-shell:hover .sf-hero-video-play {
  transform: scale(1.06);
  box-shadow: 0 16px 40px rgba(0, 112, 192, 0.35);
}

.sf-hero-video-play svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
  fill: var(--sf-blue);
}

.sf-hero-video-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.sf-hero-video-hint {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.sf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.sf-hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sf-lime);
  animation: sf-pulse 2s ease-in-out infinite;
}

@keyframes sf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.sf-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.sf-hero-title__line {
  display: block;
}

.sf-hero-title__line:first-child {
  white-space: nowrap;
}

.sf-hero-title .sf-accent {
  background: linear-gradient(135deg, var(--sf-sky), var(--sf-blue), var(--sf-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-hero-lead {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.sf-hero-proof {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-width: 36rem;
}

.sf-hero-proof li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.72);
}

.sf-hero-proof li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  margin-top: 0.45rem;
  background: linear-gradient(135deg, var(--sf-sky), var(--sf-blue));
  flex-shrink: 0;
}

.sf-hero-proof strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.sf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sf-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration: none;
}

.sf-hero-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.sf-btn:hover {
  transform: translateY(-2px);
}

.sf-btn-primary {
  background: linear-gradient(135deg, var(--sf-blue), #0094e0);
  color: var(--sf-white);
  box-shadow: 0 12px 32px rgba(0, 112, 192, 0.35);
}

.sf-btn-primary:hover {
  box-shadow: 0 16px 40px rgba(0, 112, 192, 0.45);
}

.sf-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sf-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sf-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sf-btn-outline {
  background: transparent;
  color: var(--sf-text);
  border: 1px solid var(--sf-border);
  box-shadow: none;
}

.sf-btn-outline:hover {
  border-color: var(--sf-blue);
  color: var(--sf-blue);
  box-shadow: none;
}

.sf-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 960px) {
  .sf-hero-stats {
    margin-top: 3.5rem;
  }
}

.sf-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sf-white);
}

.sf-stat span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Sections */
.sf-section {
  padding: 5rem 1.25rem;
}

.sf-section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

#try-it.sf-section-alt {
  background: #f8fafc;
}

.sf-section-contact {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--sf-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.sf-section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.sf-section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.sf-section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sf-blue);
  margin-bottom: 0.75rem;
}

.sf-section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.sf-section-header p {
  color: var(--sf-muted);
  font-size: 1.0625rem;
  margin: 0;
}

/* Feature cards */
.sf-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .sf-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sf-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sf-feature {
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--sf-radius-lg);
  padding: 1.875rem;
  box-shadow: var(--sf-card-shadow);
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s;
}

.sf-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    transparent 42%
  );
  pointer-events: none;
}

.sf-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 112, 192, 0.18);
  box-shadow: var(--sf-card-shadow-hover);
}

.sf-feature-icon {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sf-feature-icon__img,
.sf-feature-icon__svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: block;
}

.sf-feature-icon--blue {
  color: #0369a1;
  background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.sf-feature-icon--lime {
  color: #4d7c0f;
  background: linear-gradient(145deg, #ecfccb 0%, #d9f99d 100%);
  border: 1px solid rgba(132, 204, 22, 0.22);
}

.sf-feature-icon--purple {
  color: #6d28d9;
  background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%);
  border: 1px solid rgba(139, 92, 246, 0.22);
}

.sf-feature-icon--orange {
  color: #c2410c;
  background: linear-gradient(145deg, #ffedd5 0%, #fed7aa 100%);
  border: 1px solid rgba(249, 115, 22, 0.22);
}

.sf-feature h3 {
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.625rem;
  letter-spacing: -0.01em;
}

.sf-feature p {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--sf-muted);
  margin: 0;
  line-height: 1.6;
}

/* Demo jobs */
.sf-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sf-demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.sf-demo-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--sf-white);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.sf-demo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sf-blue), var(--sf-lime), var(--sf-purple));
  opacity: 0;
  transition: opacity 0.2s;
}

.sf-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sf-shadow);
  border-color: rgba(0, 112, 192, 0.25);
}

.sf-demo-card:hover::before {
  opacity: 1;
}

.sf-demo-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--sf-text);
}

.sf-demo-card p {
  font-size: 0.875rem;
  color: var(--sf-muted);
  margin: 0 0 1rem;
  flex: 1;
}

.sf-demo-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sf-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.sf-step-card {
  cursor: default;
}

.sf-step-card .sf-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.875rem;
  border-radius: 0.5rem;
  background: #eff6ff;
  color: var(--sf-blue);
  font-size: 0.875rem;
  font-weight: 700;
}

.sf-demo-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--sf-white);
  border: 2px dashed var(--sf-border);
  border-radius: var(--sf-radius-lg);
  color: var(--sf-muted);
}

.sf-demo-empty code {
  background: #f1f5f9;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

/* Contact form */
.sf-contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sf-contact-wrap {
    grid-template-columns: 1fr 1.1fr;
  }
}

.sf-contact-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.sf-contact-copy p {
  color: var(--sf-muted);
  font-size: 1.0625rem;
  margin: 0 0 1.5rem;
}

.sf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: var(--sf-text);
}

.sf-contact-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: rgba(0, 112, 192, 0.1);
  color: var(--sf-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.sf-form-card {
  background: var(--sf-white);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  padding: 2rem;
  box-shadow: var(--sf-shadow);
}

.sf-field {
  margin-bottom: 1.25rem;
}

.sf-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--sf-text);
}

.sf-field input,
.sf-field select,
.sf-field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: var(--sf-white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sf-field input:focus,
.sf-field select:focus,
.sf-field textarea:focus {
  outline: none;
  border-color: var(--sf-blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.12);
}

.sf-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.sf-field ul {
  margin: 0.375rem 0 0;
  padding: 0;
  list-style: none;
  color: #dc2626;
  font-size: 0.8125rem;
}

.sf-form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.sf-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--sf-radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.sf-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.sf-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

/* Footer */
.sf-footer {
  background: var(--sf-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 1.25rem;
}

.sf-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.sf-footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sf-footer-logo {
  display: block;
  height: 2rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.sf-footer-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.sf-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.sf-footer-copy {
  font-size: 0.8125rem;
  margin: 0;
}
