@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/instrument-serif-italic.woff2) format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/instrument-serif-italic-ext.woff2) format('woff2'); unicode-range: U+0100-02BA; }
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/instrument-serif-regular.woff2) format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/instrument-serif-regular-ext.woff2) format('woff2'); unicode-range: U+0100-02BA; }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300 700; font-display: swap; src: url(/fonts/dmsans-normal-latin.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300 700; font-display: swap; src: url(/fonts/dmsans-normal-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA; }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 300 700; font-display: swap; src: url(/fonts/dmsans-italic-latin.woff2) format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: italic; font-weight: 300 700; font-display: swap; src: url(/fonts/dmsans-italic-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA; }
@font-face { font-family: 'Bricolage Grotesque'; font-weight: 700 800; font-display: swap; src: url(/fonts/bricolage.woff2) format('woff2'); }

:root {
  color-scheme: light;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ink: #0c1322;
  --muted: #5b6473;
  --faint: #e4e7ec;
  --surface: #f7f8fa;
  --accent: #1e40af;
  --accent-2: #3b82f6;
  --accent-hover: #1b3a9e;
  --toptex: #e3633a;
  --toptex-soft: rgba(227, 99, 58, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.sw-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.sw-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.sw-title em { font-style: normal; color: var(--accent); }
.sw-body { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 520px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(12px); transition: opacity 1s ease-out, transform 1s ease-out; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.32s; }

.sw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--faint);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.sw-header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sw-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; }
.sw-brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800; font-size: 11px;
  letter-spacing: -0.02em;
}
.sw-nav { display: flex; align-items: center; gap: 4px; }
.sw-nav a { padding: 8px 14px; border-radius: 8px; font-size: 14px; color: var(--muted); transition: background 0.2s, color 0.2s; }
.sw-nav a:hover { background: var(--surface); color: var(--ink); }
.sw-nav-cta {
  margin-left: 8px;
  padding: 9px 18px !important;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 600;
}
.sw-nav-cta:hover { background: var(--accent) !important; }

.sw-hero {
  position: relative;
  text-align: center;
  padding: 120px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(30, 64, 175, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(59, 130, 246, 0.08), transparent 70%),
    radial-gradient(ellipse 42% 42% at 10% 12%, rgba(227, 99, 58, 0.09), transparent 70%);
}
.sw-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(12, 19, 34, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 19, 34, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 35%, black 20%, transparent 72%);
  pointer-events: none;
}
.sw-hero > * { position: relative; z-index: 1; }
.sw-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--faint);
  background: #fff;
  font-size: 13px; font-weight: 500; color: var(--muted);
  margin-bottom: 32px;
}
.sw-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--toptex); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.sw-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.sw-hero-title em { font-style: normal; color: var(--accent); }
.sw-hero-word { display: inline-block; transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease; }
.sw-hero-word.out { opacity: 0; transform: translateY(18px); filter: blur(4px); }
.sw-hero-word.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.sw-hero-sub { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 600px; margin: 0 auto 40px; }

.sw-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 660px; margin: 0 auto; }
.sw-path {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--faint);
  background: #fff;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
}
.sw-path:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12, 19, 34, 0.07); border-color: var(--accent); }
.sw-path-dark { background: var(--ink); color: #fff; border-color: transparent; }
.sw-path-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.sw-path-dark .sw-path-label { color: #93b4fd; }
.sw-path-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.sw-path-desc { font-size: 13px; line-height: 1.5; color: var(--muted); }
.sw-path-dark .sw-path-desc { color: #9aa4b6; }
.sw-path-arrow { position: absolute; top: 22px; right: 20px; font-size: 18px; color: var(--faint); transition: transform 0.3s, color 0.3s; }
.sw-path:hover .sw-path-arrow { transform: translateX(4px); color: var(--accent); }
.sw-path-dark .sw-path-arrow { color: #3a4660; }
.sw-path-dark:hover .sw-path-arrow { color: #fff; }

.sw-marquee { border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint); padding: 16px 0; overflow: hidden; background: var(--surface); }
.sw-marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted);
}
.sw-marquee:hover .sw-marquee-track { animation-duration: 60s; }
.sw-marquee-sep { color: var(--faint); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.sw-stack-section { padding: 160px 0 0; position: relative; }
.sw-stack-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(12, 19, 34, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12, 19, 34, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 35%, black, transparent);
  pointer-events: none;
}
.sw-stack-header { text-align: center; margin-bottom: 56px; position: relative; }
.sw-stack-sub { font-size: 17px; color: var(--muted); max-width: 460px; margin: -8px auto 0; line-height: 1.6; }
.sw-stack-area { max-width: 600px; margin: 0 auto; padding: 0 24px; }
.sw-stack-card {
  position: sticky;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--faint);
  box-shadow: 0 1px 3px rgba(12, 19, 34, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.sw-stack-card:hover { box-shadow: 0 8px 30px rgba(12, 19, 34, 0.08); transform: translateY(-1px); }
.sw-stack-inner { display: flex; align-items: center; gap: 16px; padding: 20px 24px; }
.sw-stack-letter {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sw-stack-content { flex: 1; min-width: 0; }
.sw-stack-name { display: block; font-size: 16px; font-weight: 600; margin-bottom: 2px; letter-spacing: -0.01em; }
.sw-stack-desc { display: block; font-size: 14px; color: var(--muted); line-height: 1.5; }
.sw-stack-arrow { color: #c4cad6; flex-shrink: 0; transition: color 0.3s ease, transform 0.3s ease; }
.sw-stack-card:hover .sw-stack-arrow { color: var(--accent); transform: translateX(3px); }

.sw-grid-section { padding: 120px 0; background: var(--surface); }
.sw-grid-header { text-align: center; margin-bottom: 48px; }
.sw-grid-header .sw-stack-sub { margin-top: -8px; }
.sw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sw-app-card {
  position: relative; display: flex; flex-direction: column;
  padding: 26px 24px; border: 1px solid var(--faint); border-radius: 16px; background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
}
.sw-app-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12, 19, 34, 0.07); border-color: var(--accent); }
.sw-app-letter {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  display: grid; place-items: center; margin-bottom: 18px; transition: background 0.3s;
}
.sw-app-card:hover .sw-app-letter { background: var(--accent); }
.sw-app-name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.sw-app-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.sw-app-arrow { position: absolute; top: 26px; right: 22px; color: #c4cad6; transition: color 0.3s, transform 0.3s; }
.sw-app-card:hover .sw-app-arrow { color: var(--accent); transform: translateX(3px); }
@media (max-width: 860px) { .sw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sw-grid { grid-template-columns: 1fr; } }

.sw-builder { padding: 130px 0; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.sw-builder-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 28% 40%, black, transparent);
  mask-image: radial-gradient(ellipse 70% 70% at 28% 40%, black, transparent);
  pointer-events: none;
}
.sw-builder > .sw-container { position: relative; }
.sw-builder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sw-builder .sw-overline { color: #93b4fd; }
.sw-builder .sw-title { color: #fff; }
.sw-builder .sw-title em { color: #93b4fd; }
.sw-builder-body { font-size: 17px; line-height: 1.7; color: #9aa4b6; max-width: 520px; }
.sw-feat { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.sw-feat li { display: flex; gap: 13px; align-items: flex-start; }
.sw-feat-ic { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; background: rgba(59, 130, 246, 0.18); color: #93b4fd; margin-top: 1px; }
.sw-feat-ic.warm { background: rgba(227, 99, 58, 0.20); color: #f0a081; }
.sw-feat-t { display: block; font-size: 15px; font-weight: 600; color: #fff; }
.sw-feat-d { display: block; font-size: 13px; color: #9aa4b6; margin-top: 2px; line-height: 1.5; }

.sw-bwin { background: #fff; border-radius: 16px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35); overflow: hidden; position: relative; }
.sw-bwin-bar { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--surface); border-bottom: 1px solid var(--faint); }
.sw-bwin-dots { display: flex; gap: 6px; }
.sw-bwin-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d3d8e0; }
.sw-bwin-url { flex: 1; height: 26px; background: #fff; border: 1px solid var(--faint); border-radius: 6px; display: flex; align-items: center; padding: 0 12px; font-size: 12px; color: var(--muted); }
.sw-bwin-body { padding: 18px; }
.sw-prompt { display: flex; align-items: center; gap: 10px; padding: 10px 12px 10px 14px; border: 1px solid var(--faint); border-radius: 100px; background: var(--surface); margin-bottom: 16px; }
.sw-prompt-spark { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
.sw-prompt-text { flex: 1; font-size: 13px; color: #0c1322; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sw-prompt-btn { font-size: 12px; font-weight: 600; color: #fff; background: var(--accent); padding: 6px 14px; border-radius: 100px; flex-shrink: 0; }
.sw-gen { display: flex; flex-direction: column; gap: 10px; }
.sw-gen-hero { height: 92px; border-radius: 10px; background: linear-gradient(135deg, #1e40af, #3b82f6); }
.sw-gen-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sw-gen-row div { height: 58px; border-radius: 8px; background: #eef1f5; }
.sw-seo { position: absolute; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--faint); border-radius: 100px; padding: 8px 14px; box-shadow: 0 8px 24px rgba(12, 19, 34, 0.14); }
.sw-seo-dot { width: 18px; height: 18px; border-radius: 50%; background: #16a34a; color: #fff; display: grid; place-items: center; }
.sw-seo-t { font-size: 12px; font-weight: 600; color: #0c1322; }
@media (max-width: 860px) { .sw-builder-grid { grid-template-columns: 1fr; gap: 44px; } }

.sw-split { padding: 130px 0; }
.sw-split-alt { background: var(--surface); }
.sw-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sw-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.sw-list li { font-size: 15px; color: var(--muted); padding-left: 22px; position: relative; }
.sw-list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

.sw-panel { border: 1px solid var(--faint); border-radius: 18px; background: #fff; box-shadow: 0 24px 60px rgba(12, 19, 34, 0.07); overflow: hidden; }
.sw-panel-bar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--surface); border-bottom: 1px solid var(--faint); }
.sw-panel-dots { display: flex; gap: 6px; }
.sw-panel-dots span { width: 10px; height: 10px; border-radius: 50%; background: #d3d8e0; }
.sw-panel-url { flex: 1; height: 28px; background: #fff; border: 1px solid var(--faint); border-radius: 6px; display: flex; align-items: center; padding: 0 12px; font-size: 12px; color: var(--muted); }
.sw-panel-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.sw-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--faint); border-radius: 12px; }
.sw-row-thumb { width: 40px; height: 40px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex-shrink: 0; }
.sw-row-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.sw-row-lines i { display: block; height: 8px; border-radius: 4px; background: #e9edf3; }
.sw-row-lines i:first-child { width: 60%; }
.sw-row-lines i:last-child { width: 35%; height: 7px; }
.sw-row-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--toptex-soft); color: var(--toptex); flex-shrink: 0; }

.sw-steps { display: flex; flex-direction: column; gap: 0; }
.sw-step { display: flex; gap: 16px; padding: 18px 20px; border-left: 2px solid var(--faint); margin-left: 18px; position: relative; }
.sw-step::before {
  content: ''; position: absolute; left: -7px; top: 22px;
  width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--toptex);
}
.sw-step:last-child { border-left-color: transparent; }
.sw-step-n { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--toptex); flex-shrink: 0; }
.sw-step-t { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.sw-step-d { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }

.sw-trust { padding: 130px 0; }
.sw-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sw-stats { display: flex; flex-direction: column; gap: 28px; }
.sw-stat { border-left: 2px solid var(--accent); padding-left: 20px; }
.sw-stat-n { display: block; font-family: var(--font-display); font-size: 44px; font-weight: 800; line-height: 1; color: var(--accent); }
.sw-stat-l { display: block; font-size: 14px; color: var(--muted); margin-top: 5px; }

.sw-cta { padding: 130px 0; background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.sw-cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black, transparent);
  pointer-events: none;
}
.sw-cta > * { position: relative; z-index: 1; }
.sw-cta .sw-title { color: #fff; }
.sw-cta .sw-title em { color: #93b4fd; }
.sw-cta-sub { font-size: 17px; color: #9aa4b6; max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }
.sw-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 30px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.sw-btn-primary { background: #fff; color: var(--ink); }
.sw-btn-primary:hover { transform: translateY(-2px); background: var(--accent-2); color: #fff; }
.sw-btn-ghost { border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; }
.sw-btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

.sw-footer { border-top: 1px solid var(--faint); padding: 56px 0 40px; background: #fff; }
.sw-footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.sw-footer-brand { max-width: 280px; }
.sw-footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 16px 0 0; }
.sw-footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.sw-footer-col h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin: 0 0 14px; }
.sw-footer-col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color 0.2s; }
.sw-footer-col a:hover { color: var(--accent); }
.sw-footer-bottom { border-top: 1px solid var(--faint); padding-top: 24px; font-size: 13px; color: var(--muted); }

.sw-solution { display: inline-flex; align-items: center; gap: 12px; }
.sw-solution span { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.sw-solution img { height: 28px; width: auto; display: block; }
.sw-solution-trust { margin-top: 30px; }
.sw-solution-footer { margin-top: 20px; }

@media (max-width: 860px) {
  .sw-split-grid, .sw-trust-grid { grid-template-columns: 1fr; gap: 44px; }
  .sw-nav a:not(.sw-nav-cta) { display: none; }
}
@media (max-width: 600px) {
  .sw-paths { grid-template-columns: 1fr; }
  .sw-hero { padding: 84px 0 64px; }
  .sw-split, .sw-trust, .sw-cta { padding: 90px 0; }
  .sw-footer-grid { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .stagger > * { opacity: 1; transform: none; transition: none; }
  .sw-marquee-track { animation: none; }
}
  
