:root {
  color-scheme: light;
  --font-sans: 'Inter', system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, 'Helvetica Neue', arial, sans-serif;
  --brand-blue: #123f8c;
  --brand-blue-dark: #0b1f4f;
  --brand-blue-soft: #e4ecf8;
  --brand-orange: #b45309;
  --brand-teal: #0f766e;
  --brand-green: #166534;
  --brand-amber: #92400e;
  --ink: #111827;
  --ink-strong: #07111f;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-raised: #fbfdff;
  --text: var(--ink);
  --muted: #475569;
  --accent: var(--brand-blue);
  --accent-dark: var(--brand-blue-dark);
  --border: #ccd7e3;
  --focus: #f59e0b;
  --radius: 8px;
  --shadow: rgba(15, 23, 42, 0.16);
  --content-width: 1180px;
  --space-section: clamp(2.4rem, 5vw, 4rem);
}

* {
  box-sizing: border-box;
}

body:not(.actualfocus-page) {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.55;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef5fb 0, #f8fbff 18rem, #f5f8fc 100%),
    var(--bg);
}

a {
  color: inherit;
}

a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  font-size: 1rem;
}

a.button.primary {
  background: linear-gradient(120deg, #1253ff, #467bff);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 18px 40px -18px rgba(18, 83, 255, 0.6);
}

a.button.primary:hover,
a.button.primary:focus-visible {
  background: linear-gradient(120deg, #0b3bc1, #1253ff);
  transform: translateY(-1px);
}

a.button.secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--accent);
}

a.button.secondary:hover,
a.button.secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

body:not(.actualfocus-page) .shell {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

body:not(.actualfocus-page) .site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px -30px rgba(15, 23, 42, 0.55);
}

body:not(.actualfocus-page) .site-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 0.75rem 1.5rem;
}

body:not(.actualfocus-page) .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  padding-left: 0;
  min-height: 44px;
}

body:not(.actualfocus-page) .brand img {
  height: 34px;
  width: auto;
  display: block;
}

body:not(.actualfocus-page) .site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.94rem;
  font-weight: 700;
}

body:not(.actualfocus-page) .site-nav a {
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  color: #334155;
  padding: 0.48rem 0.72rem;
  transition: color 0.2s ease, background 0.2s ease;
}

body:not(.actualfocus-page) .site-nav a:hover,
body:not(.actualfocus-page) .site-nav a:focus-visible,
body:not(.actualfocus-page) .site-nav a[aria-current='page'] {
  color: var(--ink-strong);
  background: #eaf1f8;
  border-bottom-color: transparent;
}

main {
  padding: 3.2rem 0 4rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-visual {
  position: relative;
  border-radius: 28px;
  padding: clamp(2.6rem, 5vw, 3.4rem);
  background: var(--surface);
  border: 1px solid rgba(29, 78, 216, 0.14);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%20fill='none'><path%20d='M0%20119h120M0%2099h120M0%2079h120M0%2059h120M0%2039h120M0%2019h120M0%200v120M20%200v120M40%200v120M60%200v120M80%200v120M100%200v120'%20stroke='rgba(29,78,216,0.15)'%20stroke-width='1'/></svg>");
  opacity: 0.28;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  top: -160px;
  left: -140px;
  background: radial-gradient(circle at center, rgba(29, 78, 216, 0.22), rgba(29, 78, 216, 0));
  filter: blur(2px);
  pointer-events: none;
}

.hero-visual .hero-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0));
  pointer-events: none;
}

.hero-visual > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  margin: 0;
  line-height: 1.2;
  font-family: 'Palatino Linotype', Palatino, 'Times New Roman', serif;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

.hero .lead strong {
  color: var(--text);
}

.hero .tagline {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.cta-subtext {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -0.4rem 0 0;
}

.hero .note {
  font-size: 0.95rem;
  color: var(--muted);
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 40px -24px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.18);
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.45rem;
}

.card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card h2,
.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card dl {
  margin: 0;
}

.card dt {
  font-weight: 600;
  color: var(--text);
}

.card dd {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.process-steps {
  position: relative;
  padding: 0;
  list-style: none;
  margin-left: 1.5rem;
  display: grid;
  gap: 1.25rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: -0.5rem;
  bottom: -0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, rgba(18, 83, 255, 0.25), rgba(18, 83, 255, 0));
}

.process-steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem 1.1rem;
  box-shadow: 0 16px 32px -26px var(--shadow);
}

.process-steps .step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.process-steps .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.15);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-steps .step-body h3 {
  margin: 0;
  font-size: 1rem;
}

.process-steps .step-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

blockquote {
  margin: 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--border);
  color: var(--muted);
}

.credibility {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.9rem;
  box-shadow: 0 16px 40px -24px var(--shadow);
}

.credibility h2 {
  margin: 0;
}

.founder-profile {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.founder-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.founder-highlights {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.founder-links {
  display: flex;
  gap: 0.75rem;
}

.credibility p {
  margin: 0;
  color: var(--muted);
}

.credibility a {
  color: var(--accent);
  font-weight: 600;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex: 1 1 280px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-meta {
  flex: 0 1 320px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  max-width: 360px;
}

small, .caption {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  margin-bottom: 3rem;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumb {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.breadcrumb li + li::before {
  content: '/';
  color: #94a3b8;
}

.product-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.product-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: 'Palatino Linotype', Palatino, 'Times New Roman', serif;
  font-size: 2.8rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.product-hero .lead {
  max-width: 760px;
  font-size: 1.12rem;
  color: var(--muted);
}

.product-hero .lead strong {
  color: var(--text);
}

.product-hero .tagline {
  max-width: 760px;
  color: var(--muted);
}

.home-hero {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.hero-panel,
.link-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 14px 36px -28px var(--shadow);
}

.hero-panel h2,
.link-panel h3 {
  margin-top: 0;
}

.meta-list,
.compact-facts {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.meta-list dt,
.compact-facts dt {
  color: var(--text);
  font-weight: 700;
}

.meta-list dd,
.compact-facts dd {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.compact-facts {
  margin-top: 0.4rem;
  font-size: 0.92rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
}

.summary-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.screenshot-frame {
  margin: 0;
  background: #e5e7eb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem;
  box-shadow: 0 18px 42px -32px rgba(15, 23, 42, 0.35);
}

.screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
}

.screenshot-frame figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.table-wrap .table th,
.table-wrap .table td {
  min-width: 160px;
}

.two-up {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

ul, ol {
  margin: 0 0 1.1rem 1.25rem;
  padding: 0;
}

h2 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #eef2ff;
  color: #3730a3;
}

.highlight {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 1.25rem;
}

@media (min-width: 840px) {
  .product-hero {
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  }

  .summary-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  }
}

@media (max-width: 640px) {
  .product-hero h1 {
    font-size: 2rem;
  }

  .product-hero .lead {
    font-size: 1rem;
  }

  .hero-panel,
  .link-panel,
  .faq-item {
    padding: 1rem;
  }
}

.anchor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.anchor-list a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--muted);
}

.legal-note {
  color: #94a3b8;
}

@media (max-width: 640px) {
  .hero-visual {
    padding: 2.25rem 1.75rem;
  }

  .site-nav {
    gap: 0.5rem 0.75rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  a.button {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    gap: 1.75rem;
  }

  .footer-brand,
  .footer-links,
  .footer-meta,
  .founder-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

.secondary-callout {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(249, 115, 22, 0.08));
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(18, 83, 255, 0.12);
}

.secondary-callout h2 {
  margin: 0 0 0.5rem;
}

.secondary-callout p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.actualfocus-page {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(192, 38, 211, 0.08), transparent 22%),
    var(--bg);
}

.actualfocus-page .site-header {
  border-bottom-color: rgba(29, 78, 216, 0.14);
}

.actualfocus-page main {
  padding-top: 2.4rem;
}

.af-video {
  margin-bottom: 1.5rem;
}

.af-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(29, 78, 216, 0.16);
  background: linear-gradient(145deg, #020617, #111827);
  box-shadow: 0 26px 60px -34px rgba(15, 23, 42, 0.55);
}

.af-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.af-hero {
  margin-bottom: 2.5rem;
  background:
    linear-gradient(145deg, rgba(2, 6, 23, 0.96), rgba(17, 24, 39, 0.96)),
    var(--surface);
  color: #e5eefc;
  border-color: rgba(96, 165, 250, 0.14);
  box-shadow: 0 30px 60px -44px rgba(15, 23, 42, 0.8);
}

.af-hero::before {
  opacity: 0.14;
  mix-blend-mode: screen;
}

.af-hero::after {
  width: 380px;
  height: 380px;
  top: -180px;
  left: auto;
  right: -120px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0));
}

.af-hero .hero-shape {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: auto;
  left: -110px;
  background: radial-gradient(circle at center, rgba(192, 38, 211, 0.18), rgba(192, 38, 211, 0));
}

.af-hero .lead,
.af-hero .tagline,
.af-hero .note {
  color: rgba(226, 232, 240, 0.82);
  max-width: 720px;
}

.af-hero .lead strong {
  color: #fff;
}

.af-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.af-badge {
  background: rgba(37, 99, 235, 0.16);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.af-logo {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.af-value-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.af-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.af-explainer {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .af-explainer {
    grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.9fr);
    align-items: start;
  }
}

.af-copy-panel,
.af-side-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px -28px var(--shadow);
}

.af-side-note {
  background: linear-gradient(180deg, rgba(226, 232, 255, 0.55), rgba(255, 255, 255, 0.92));
}

.af-side-note p:last-child {
  margin-bottom: 0;
}

.af-steps {
  display: grid;
  gap: 1rem;
}

.af-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.af-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.af-step:last-child {
  padding-bottom: 0;
}

.af-step h3 {
  margin: 0 0 0.45rem;
}

.af-step p {
  margin: 0;
}

.af-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  box-shadow: 0 14px 28px -16px rgba(37, 99, 235, 0.7);
}

.af-gallery-intro {
  margin-bottom: 1rem;
}

.af-gallery {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .af-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.af-shot {
  margin: 0;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(17, 24, 39, 0.96));
  border: 1px solid rgba(71, 85, 105, 0.4);
  box-shadow: 0 26px 56px -42px rgba(15, 23, 42, 0.82);
}

.af-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.af-shot figcaption {
  margin-top: 0.8rem;
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .af-shot-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .actualfocus-page main {
    padding-top: 1.8rem;
  }

  .af-copy-panel,
  .af-side-note,
  .af-shot {
    padding: 1rem;
  }
}

/* Portfolio conversion redesign */
body:not(.actualfocus-page) main {
  padding: 2.4rem 0 4.8rem;
}

body:not(.actualfocus-page) .eyebrow {
  color: var(--brand-teal);
  letter-spacing: 0;
}

body:not(.actualfocus-page) .product-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.2rem;
  padding: 1.2rem 0 0.6rem;
}

body:not(.actualfocus-page) .product-hero h1 {
  font-family: inherit;
  font-size: 3.4rem;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink-strong);
  max-width: 920px;
}

body:not(.actualfocus-page) .product-hero .lead {
  font-size: 1.15rem;
  max-width: 760px;
}

body:not(.actualfocus-page) .product-hero .tagline {
  font-size: 1rem;
  max-width: 720px;
}

.hero-copy {
  animation: fade-lift 0.6s ease both;
}

body:not(.actualfocus-page) .home-hero {
  border-bottom: 0;
  padding-bottom: 1rem;
}

body:not(.actualfocus-page) a.button {
  border-radius: 8px;
  padding: 0.86rem 1.15rem;
  min-height: 46px;
  font-weight: 800;
}

body:not(.actualfocus-page) a.button.primary {
  background: #102a68;
  border-color: #102a68;
  box-shadow: 0 18px 40px -24px rgba(16, 42, 104, 0.7);
}

body:not(.actualfocus-page) a.button.primary:hover,
body:not(.actualfocus-page) a.button.primary:focus-visible {
  background: #0b1c45;
  transform: translateY(-2px);
}

body:not(.actualfocus-page) a.button.secondary {
  background: #ffffff;
  border-color: #b8c7d8;
  color: #12356f;
}

body:not(.actualfocus-page) a.button.secondary:hover,
body:not(.actualfocus-page) a.button.secondary:focus-visible {
  border-color: #12356f;
  color: #0b1c45;
  background: #f3f7fb;
  transform: translateY(-2px);
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #0b1220, #14243a);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 80px -48px rgba(15, 23, 42, 0.9);
}

.showcase-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #dbeafe;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.status-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.showcase-pill {
  margin-left: auto;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  color: #bae6fd;
}

.showcase-main {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 46px -30px rgba(0, 0, 0, 0.95);
}

.showcase-img,
.preview-row-img,
.app-card-img,
.preview-img {
  display: block;
  width: 100%;
  height: auto;
}

body:not(.actualfocus-page) picture {
  display: block;
}

.showcase-main picture,
.app-card-media picture,
.preview-window picture,
.screenshot-frame picture {
  width: 100%;
  height: 100%;
}

.showcase-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.showcase-caption strong,
.showcase-caption small {
  display: block;
}

.showcase-caption strong {
  font-size: 1.02rem;
}

.showcase-caption small {
  max-width: 15rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.showcase-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.showcase-mini {
  overflow: hidden;
  text-decoration: none;
  color: #e5eefc;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.showcase-mini:hover,
.showcase-mini:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.showcase-mini-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.showcase-mini span {
  display: block;
  padding: 0.55rem 0.65rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
  margin-left: 0;
  padding: 0;
  list-style: none;
}

.signal-grid li {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e5eefc;
}

.signal-grid strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #bfd4ec;
}

.north-star-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  background: #ffffff;
  box-shadow: 0 22px 60px -42px rgba(15, 23, 42, 0.45);
}

.north-star-band h2,
.north-star-band p {
  margin: 0;
}

.north-star-band p {
  color: var(--muted);
}

.conversion-steps {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.conversion-steps li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
  align-items: center;
  border-radius: 8px;
  padding: 0.8rem;
  background: #eef6f5;
  border: 1px solid #c8e4df;
}

.conversion-steps strong {
  color: #075e57;
}

.conversion-steps span {
  color: #425266;
  font-size: 0.94rem;
}

body:not(.actualfocus-page) .card {
  border-radius: 8px;
  padding: 1rem;
  gap: 0.8rem;
  box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.42);
  animation: fade-lift 0.5s ease both;
}

body:not(.actualfocus-page) .card:hover,
body:not(.actualfocus-page) .card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 28px 54px -36px rgba(15, 23, 42, 0.52);
}

.app-card-media {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d8e2ec;
  background: #edf3f8;
  aspect-ratio: 16 / 10;
}

.app-card-img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.32s ease;
}

.app-card:hover .app-card-img,
.app-card:focus-within .app-card-img {
  transform: scale(1.045);
}

body:not(.actualfocus-page) .card h2,
body:not(.actualfocus-page) .card h3 {
  color: var(--ink-strong);
  font-size: 1.14rem;
}

.card-actions a {
  color: #12356f;
  text-decoration: none;
}

.card-actions a:hover,
.card-actions a:focus-visible {
  text-decoration: underline;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: #edf7f5;
  color: #075e57;
  border: 1px solid #cce7e2;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
}

.chip:hover,
.chip:focus-visible {
  background: #dff2ee;
}

.solution-strip h2 {
  margin-bottom: 1rem;
}

.solution-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.solution-pill {
  display: grid;
  gap: 0.35rem;
  min-height: 8rem;
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 42px -36px rgba(15, 23, 42, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-pill:hover,
.solution-pill:focus-visible {
  transform: translateY(-4px);
  border-color: #8ab7e8;
  box-shadow: 0 26px 54px -40px rgba(15, 23, 42, 0.56);
}

.solution-pill span {
  font-weight: 900;
  color: var(--ink-strong);
}

.solution-pill small {
  color: var(--muted);
}

.product-preview,
.solution-preview {
  display: grid;
  gap: 0.9rem;
}

.preview-window,
.preview-row {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 26px 64px -42px rgba(15, 23, 42, 0.58);
}

.preview-facts {
  border-radius: 8px;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
}

.preview-facts h2 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
}

.preview-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease;
}

.preview-row:hover,
.preview-row:focus-visible {
  transform: translateX(4px);
}

.preview-row-img {
  height: 5.6rem;
  object-fit: cover;
}

.preview-row span {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
}

.preview-row strong {
  color: var(--ink-strong);
}

.preview-row small {
  color: var(--muted);
}

body:not(.actualfocus-page) .summary-grid {
  gap: 1.5rem;
}

body:not(.actualfocus-page) .highlight,
body:not(.actualfocus-page) .hero-panel,
body:not(.actualfocus-page) .link-panel,
body:not(.actualfocus-page) .faq-item,
body:not(.actualfocus-page) .table-wrap,
body:not(.actualfocus-page) .screenshot-frame,
body:not(.actualfocus-page) .process-steps li {
  border-radius: 8px;
}

body:not(.actualfocus-page) .highlight {
  background: #eef6f5;
  border: 1px solid #cce7e2;
}

body:not(.actualfocus-page) .screenshot-frame {
  padding: 0.7rem;
  background: #ffffff;
  box-shadow: 0 28px 68px -46px rgba(15, 23, 42, 0.58);
}

body:not(.actualfocus-page) .screenshot-img {
  border-radius: 8px;
}

body:not(.actualfocus-page) .table-wrap {
  box-shadow: 0 20px 48px -40px rgba(15, 23, 42, 0.42);
}

.table th {
  background: #eef3f8;
  color: var(--ink-strong);
}

body:not(.actualfocus-page) .table td,
body:not(.actualfocus-page) .table th {
  border-color: #d9e2ec;
}

body:not(.actualfocus-page) .faq-item {
  background: #ffffff;
}

.faq-item[open] {
  border-color: #9ec4ef;
  box-shadow: 0 18px 40px -34px rgba(15, 23, 42, 0.38);
}

body:not(.actualfocus-page) .process-steps::before {
  background: linear-gradient(to bottom, rgba(8, 127, 117, 0.42), rgba(8, 127, 117, 0));
}

body:not(.actualfocus-page) .process-steps .step-number {
  background: #dff2ee;
  color: #075e57;
}

@keyframes fade-lift {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body:not(.actualfocus-page) .product-hero,
  .north-star-band {
    grid-template-columns: 1fr;
  }

  body:not(.actualfocus-page) .product-hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 700px) {
  body:not(.actualfocus-page) main {
    padding: 1.15rem 0 3.6rem;
  }

  body:not(.actualfocus-page) .site-header-inner {
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
  }

  body:not(.actualfocus-page) .brand img {
    height: 30px;
  }

  body:not(.actualfocus-page) .site-nav {
    flex: 1;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.18rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body:not(.actualfocus-page) .site-nav::-webkit-scrollbar {
    display: none;
  }

  body:not(.actualfocus-page) .site-nav a {
    flex: 0 0 auto;
    padding: 0.38rem 0.48rem;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  body:not(.actualfocus-page) .product-hero {
    gap: 1rem;
    margin-bottom: 2.1rem;
    padding-top: 0.4rem;
  }

  body:not(.actualfocus-page) .product-hero h1 {
    font-size: 1.92rem;
    line-height: 1.08;
  }

  body:not(.actualfocus-page) .product-hero .lead {
    font-size: 0.98rem;
    margin-bottom: 0.65rem;
  }

  body:not(.actualfocus-page) .product-hero .tagline {
    font-size: 0.94rem;
  }

  body:not(.actualfocus-page) .home-hero .cta-group {
    flex-direction: row;
  }

  body:not(.actualfocus-page) .home-hero a.button {
    flex: 1 1 0;
    width: auto;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
  }

  .showcase-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .showcase-mini span {
    padding: 0.45rem 0.38rem;
    font-size: 0.72rem;
  }

  .signal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .signal-grid li {
    padding: 0.5rem 0.35rem;
  }

  .signal-grid strong {
    font-size: 1.05rem;
  }

  .signal-grid span {
    font-size: 0.68rem;
  }

  .showcase-caption {
    position: static;
    padding: 0.8rem;
    background: #0f172a;
  }

  .showcase-caption small {
    text-align: left;
  }

  .conversion-steps li,
  .preview-row {
    grid-template-columns: 1fr;
  }

  .preview-row-img {
    height: auto;
  }
}

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

/* ArdSaor shared system refinements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: #06121f;
  background: #fff7cc;
  border: 2px solid var(--focus);
  transform: translateY(-140%);
  transition: transform 0.16s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink-strong);
  background: var(--surface);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentcolor;
  border-radius: 999px;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.button,
a.button,
button.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius);
  padding: 0.86rem 1.15rem;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
a.button.primary,
button.button.primary {
  color: #fff;
  background: #102a68;
  border-color: #102a68;
  box-shadow: 0 18px 40px -24px rgba(16, 42, 104, 0.7);
}

.button.primary:hover,
.button.primary:focus-visible,
a.button.primary:hover,
a.button.primary:focus-visible,
button.button.primary:hover,
button.button.primary:focus-visible {
  background: #0b1c45;
}

.button.secondary,
a.button.secondary,
button.button.secondary {
  color: #12356f;
  background: #fff;
  border-color: #aebfd1;
}

.button.secondary:hover,
.button.secondary:focus-visible,
a.button.secondary:hover,
a.button.secondary:focus-visible,
button.button.secondary:hover,
button.button.secondary:focus-visible {
  background: #f2f6fb;
  border-color: #12356f;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 var(--space-section);
}

.trust-strip a {
  display: grid;
  gap: 0.25rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  box-shadow: 0 20px 48px -40px rgba(15, 23, 42, 0.42);
}

.trust-strip strong {
  color: var(--ink-strong);
}

.trust-strip span,
.marketplace-proof p {
  color: var(--muted);
}

.marketplace-proof,
.support-panel,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 20px 48px -40px rgba(15, 23, 42, 0.42);
}

.marketplace-proof p:last-child,
.support-panel p:last-child,
.contact-form p:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 860px;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 800;
  color: var(--ink-strong);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid #aebfd1;
  color: var(--ink);
  background: var(--surface);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field [aria-invalid='true'] {
  border-color: #b91c1c;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hp-field input {
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  border: 0;
}

.form-help,
.form-error,
.form-status {
  margin: 0;
  font-size: 0.9rem;
}

.form-help {
  color: var(--muted);
}

.form-error {
  color: #b91c1c;
  min-height: 1.25rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.legal-page .hero {
  margin-bottom: 2rem;
}

.legal-page .caption {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: #173b73;
  font-weight: 800;
}

body:not(.actualfocus-page) .section {
  margin-bottom: var(--space-section);
}

body:not(.actualfocus-page) .app-card-media,
body:not(.actualfocus-page) .preview-window {
  aspect-ratio: 16 / 9;
}

body:not(.actualfocus-page) .screenshot-img,
body:not(.actualfocus-page) .preview-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
}

body:not(.actualfocus-page) .app-card-img {
  width: 100%;
  height: 100%;
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
  }

  body:not(.actualfocus-page) .site-nav {
    position: fixed;
    inset: 65px 0 auto;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    padding: 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 60px -42px rgba(15, 23, 42, 0.72);
  }

  body.nav-open:not(.actualfocus-page) .site-nav,
  body:not(.actualfocus-page) .site-nav[data-open='true'] {
    display: flex;
  }

  body:not(.actualfocus-page) .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
  }

  .trust-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  body:not(.actualfocus-page) .shell {
    padding: 0 1rem;
  }

  body:not(.actualfocus-page) .product-hero h1 {
    font-size: 1.72rem;
  }

  .showcase-stack,
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #0b1220;
    --surface: #111827;
    --surface-raised: #162033;
    --ink: #e5e7eb;
    --ink-strong: #f8fafc;
    --text: var(--ink);
    --muted: #cbd5e1;
    --accent: #93c5fd;
    --accent-dark: #bfdbfe;
    --brand-teal: #5eead4;
    --border: #334155;
    --brand-blue-soft: #15264d;
    --shadow: rgba(0, 0, 0, 0.45);
  }

  body:not(.actualfocus-page) {
    background: #0b1220;
  }

  body:not(.actualfocus-page) .site-header,
  body:not(.actualfocus-page) .site-nav,
  footer,
  .trust-strip a,
  .marketplace-proof,
  .support-panel,
  .contact-form,
  .north-star-band,
  .solution-pill,
  .preview-window,
  .preview-row,
  body:not(.actualfocus-page) .card,
  body:not(.actualfocus-page) .preview-facts,
  body:not(.actualfocus-page) .table-wrap,
  body:not(.actualfocus-page) .faq-item,
  body:not(.actualfocus-page) .screenshot-frame {
    background: var(--surface);
  }

  body:not(.actualfocus-page) .site-nav a,
  body:not(.actualfocus-page) .card p,
  body:not(.actualfocus-page) .solution-pill,
  body:not(.actualfocus-page) .preview-row,
  body:not(.actualfocus-page) .table td,
  .form-field input,
  .form-field select,
  .form-field textarea {
    color: var(--ink);
  }

  .card-actions a {
    color: #bfdbfe;
  }

  .conversion-steps strong {
    color: #99f6e4;
  }

  .conversion-steps span {
    color: #dbeafe;
  }

  body:not(.actualfocus-page) .table th,
  body:not(.actualfocus-page) .highlight,
  .conversion-steps li {
    background: var(--surface-raised);
  }

  .button.secondary,
  a.button.secondary,
  button.button.secondary,
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: #0f172a;
  }

  body:not(.actualfocus-page) a.button.secondary,
  .button.secondary,
  button.button.secondary {
    color: #bfdbfe;
    border-color: #475569;
    background: #0f172a;
  }

  body:not(.actualfocus-page) a.button.secondary:hover,
  body:not(.actualfocus-page) a.button.secondary:focus-visible,
  .button.secondary:hover,
  .button.secondary:focus-visible,
  button.button.secondary:hover,
  button.button.secondary:focus-visible {
    color: #dbeafe;
    border-color: #93c5fd;
    background: #172554;
  }
}
