
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap");

:root {
  --home-bg: #141414;
  --home-bg-elevated: #1a1a1a;
  --home-surface: #222224;
  --home-border: #333336;
  --home-text: #d4d4d4;
  --home-muted: #9a9a9a;
  --home-heading: #f4f4f4;
  --home-accent: #4fc1ff;
  --home-link: #4fc1ff;
  --home-btn: #0e639c;
  --home-btn-hover: #1177bb;
  --home-pro-col: #1f2a36;
  --home-yes: #4ec9b0;
  --home-max: 1120px;
  --home-font: "IBM Plex Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --home-display: "Outfit", "IBM Plex Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-font);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--home-link);
}

.home-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.home-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 20px;
  background: rgba(20, 20, 20, 0.92);
  border-bottom: 1px solid var(--home-border);
  backdrop-filter: blur(10px);
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--home-heading);
}

.home-brand:hover {
  background: rgba(255, 255, 255, 0.06);
}

.home-brand-logo {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 3px;
}

.home-brand-text {
  font-family: var(--home-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.home-topbar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 18px;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 12px;
}

.home-topbar-nav a {
  color: #a8a8a8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.home-topbar-nav a:hover {
  color: #eee;
}

.home-topbar-nav a[aria-current="page"] {
  color: #fff;
}

.home-topbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--home-btn);
  border: 1px solid var(--home-btn);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.home-topbar-cta:hover {
  background: var(--home-btn-hover);
  border-color: var(--home-btn-hover);
  color: #fff;
}

@media (max-width: 720px) {
  .home-topbar {
    flex-wrap: wrap;
    padding: 10px 14px;
    row-gap: 8px;
  }

  .home-topbar-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin: 0;
    gap: 4px 14px;
  }
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 24px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(14, 99, 156, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(79, 193, 255, 0.08), transparent 50%),
    var(--home-bg);
}

.home-hero-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--home-bg) 100%);
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 36px;
  animation: home-hero-in 0.7s ease both;
}

.home-hero-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-accent);
}

.home-hero h1 {
  margin: 0 0 16px;
  font-family: var(--home-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-hero-lead {
  margin: 0 auto 28px;
  max-width: 34em;
  color: var(--home-muted);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.home-hero-lead strong {
  color: #eaeaea;
  font-weight: 600;
}

.home-hero-trust {
  margin: 20px 0 0;
  font-size: 13px;
  color: #6e6e6e;
  letter-spacing: 0.01em;
}

.home-hero-visual {
  position: relative;
  z-index: 2;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 0 8px;
  animation: home-hero-visual-in 0.9s 0.1s ease both;
}

.home-hero-shot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--home-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.35);
}

@keyframes home-hero-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes home-hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.home-cta-row--start {
  justify-content: flex-start;
  margin-top: 20px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

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

.home-btn--primary {
  background: var(--home-btn);
  color: #fff;
  border: 1px solid var(--home-btn);
}

.home-btn--primary:hover {
  background: var(--home-btn-hover);
  border-color: var(--home-btn-hover);
  color: #fff;
}

.home-btn--ghost {
  background: transparent;
  color: var(--home-text);
  border: 1px solid var(--home-border);
}

.home-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.home-main {
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.home-section {
  margin-top: 72px;
  padding-top: 8px;
}

.home-section h2 {
  margin: 0 0 12px;
  font-family: var(--home-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--home-heading);
}

.home-section-lead {
  margin: 0 0 28px;
  max-width: 40em;
  color: var(--home-muted);
  font-size: 1.02rem;
}

.home-section-lead strong {
  color: #e0e0e0;
  font-weight: 600;
}

.home-workflow-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: wf;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .home-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-workflow-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 10px;
  counter-increment: wf;
  animation: home-card-in 0.55s ease both;
}

.home-workflow-card--1 { animation-delay: 0.05s; }
.home-workflow-card--2 { animation-delay: 0.12s; }
.home-workflow-card--3 { animation-delay: 0.19s; }
.home-workflow-card--4 { animation-delay: 0.26s; }

@keyframes home-card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.home-workflow-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--home-border);
  background: #111;
}

.home-workflow-card h3 {
  margin: 0;
  padding: 14px 16px 4px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.home-workflow-card h3::before {
  content: counter(wf) ". ";
  color: var(--home-accent);
  font-weight: 700;
}

.home-workflow-card p {
  margin: 0;
  padding: 0 16px 16px;
  font-size: 0.88rem;
  color: var(--home-muted);
}

.home-workflow-card strong {
  color: #dcdcdc;
  font-weight: 600;
}

.home-local {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 860px) {
  .home-local {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}

.home-local-copy p {
  margin: 0 0 14px;
  color: var(--home-muted);
  max-width: 38em;
}

.home-local-copy strong {
  color: #e4e4e4;
  font-weight: 600;
}

.home-local-quote {
  margin-top: 20px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--home-btn);
  background: rgba(14, 99, 156, 0.12);
  color: #c8c8c8 !important;
  font-size: 0.98rem !important;
  line-height: 1.5;
}

.home-local-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--home-border);
  border-radius: 10px;
  background: #111;
}

.home-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.home-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 420px;
}

.home-compare th,
.home-compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #2e2e30;
}

.home-compare thead th {
  background: #2a2a2c;
  color: var(--home-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-compare tbody th {
  font-weight: 500;
  color: #ddd;
}

.home-compare td {
  text-align: center;
  width: 72px;
  color: #eee;
  font-weight: 600;
}

.home-compare .is-pro {
  background: var(--home-pro-col);
  color: #fff;
}

.home-compare thead .is-pro {
  color: #fff;
}

.home-compare tbody tr:last-child th,
.home-compare tbody tr:last-child td {
  border-bottom: none;
}

.home-yes {
  color: var(--home-yes);
}

.home-no {
  color: #666;
  font-weight: 500;
}

.home-plans-note {
  font-size: 13px;
  color: var(--home-muted);
}

.home-example-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .home-example-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.home-example-grid a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 16px 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.home-example-grid a:hover {
  border-color: rgba(79, 193, 255, 0.45);
  background: #262628;
}

.home-example-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--home-accent);
}

.home-example-blurb {
  font-size: 0.86rem;
  color: var(--home-muted);
  line-height: 1.45;
}

.home-example-note {
  margin: 18px 0 0;
  font-size: 0.88rem;
  color: var(--home-muted);
  max-width: 48em;
}

.home-example-note code {
  font-size: 0.9em;
}

.home-hub-grid {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .home-hub-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.home-hub-grid a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--home-bg-elevated);
  border: 1px solid var(--home-border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.home-hub-grid a:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.home-hub-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.home-hub-title-text {
  font-family: var(--home-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.home-hub-blurb {
  font-size: 0.9rem;
  color: var(--home-muted);
  line-height: 1.45;
}

.home-hub-blurb code {
  font-size: 0.9em;
}

.home-sgdh-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #b0b0b0;
  max-width: 48em;
}

.home-faq {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq-item {
  margin: 0;
  padding: 16px 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 8px;
}

.home-faq-item dt {
  margin: 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: #ececec;
}

.home-faq-item dd {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--home-muted);
}

.home-faq-item code {
  font-size: 0.86em;
}

.home-footer {
  margin-top: auto;
  border-top: 1px solid var(--home-border);
  background: #101010;
}

.home-bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
  min-height: 26px;
  padding: 4px 14px;
  background: #007acc;
  color: #fff;
  font-size: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.home-bottombar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 2px 10px;
  border-radius: 3px;
}

.home-bottombar a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.home-bottombar-links {
  display: flex;
  align-items: center;
  gap: 0;
}

@media (max-width: 620px) {
  .home-bottombar {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .home-bottombar-links {
    margin-left: auto;
  }
}

.home-footer-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 28px 24px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.home-footer-brand {
  margin: 0;
  font-size: 13px;
  color: #888;
}

.home-footer-brand a {
  color: #bbb;
  text-decoration: none;
}

.home-footer-brand a:hover {
  color: #fff;
}

.home-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.home-footer-nav a {
  color: #9a9a9a;
  text-decoration: none;
  font-size: 13px;
}

.home-footer-nav a:hover,
.home-footer-nav a[aria-current="page"] {
  color: #eee;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-inner,
  .home-hero-visual,
  .home-workflow-card {
    animation: none !important;
  }

  .home-btn:hover {
    transform: none;
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding: 36px 16px 0;
  }

  .home-main {
    padding: 0 16px 56px;
  }

  .home-section {
    margin-top: 56px;
  }

  .home-cta-row--start {
    flex-direction: column;
    align-items: flex-start;
  }
}
