:root {
  --bg: #f6f7f9;
  --bg2: #ffffff;
  --bg3: #f0f2f5;
  --border: rgba(0, 0, 0, 0.08);
  --border-md: rgba(0, 0, 0, 0.12);
  --text: #0d0f14;
  --text-2: #3a3f52;
  --text-3: #7a8099;
  --accent: #00c47a;
  --accent-h: #00a865;
  --accent2: #4a65d9;
  --logo-blue: #4a65d9;
  --logo-blue-h: #3847b8;
  --logo-blue-d: rgba(74, 101, 217, 0.1);
  --accent-d: rgba(0, 196, 122, 0.1);
  --accent2-d: rgba(74, 101, 217, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --font: "Space Grotesk", sans-serif;
  --mono: "Space Mono", monospace;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 196, 122, 0.2);
}

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

button {
  font: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 78px;
  background: rgba(246, 247, 249, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo-img {
  display: block;
  width: auto;
  object-fit: contain;
}

.nav-logo-full {
  height: 50px;
}

.nav-logo-mark {
  display: none;
  height: 42px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 9px 20px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.mesh-1 {
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(74, 101, 217, 0.28) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: floatA 12s ease-in-out infinite;
}

.mesh-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 255, 0.18) 0%, transparent 70%);
  top: 50px;
  right: -80px;
  animation: floatB 15s ease-in-out infinite;
}

.mesh-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(74, 101, 217, 0.14) 0%, transparent 70%);
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatC 18s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.05); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.08); }
}

@keyframes floatC {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-45%) scale(1.06); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(74, 101, 217, 0.3);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--logo-blue-h);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  background: rgba(74, 101, 217, 0.07);
  box-shadow: 0 0 0 4px rgba(74, 101, 217, 0.05);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--logo-blue);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 940px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.1s ease both;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary,
.btn-secondary,
.btn-cta {
  cursor: pointer;
  border: none;
}

.btn-primary {
  padding: 15px 34px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-md);
  font-family: var(--font);
}

.btn-primary:hover {
  background: #1a1f30;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 32px rgba(0, 196, 122, 0.35);
}

.btn-cta-primary:hover {
  background: var(--accent);
  box-shadow: 0 8px 48px rgba(0, 196, 122, 0.5);
}

.btn-secondary {
  padding: 15px 34px;
  background: var(--bg2);
  color: var(--text-2);
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-md);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 72px;
  margin-top: 88px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.45s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 34px;
  font-weight: 700;
  font-family: var(--mono);
  letter-spacing: -0.03em;
  color: var(--text);
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: var(--border-md);
  align-self: stretch;
}

.section-wrap {
  padding: 120px 52px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--logo-blue-h);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title,
.retainer-title,
.cta-wrap h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.section-sub,
.retainer-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.compliance-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
  position: relative;
  height: 46px;
  display: flex;
  align-items: center;
}

.compliance-strip::before,
.compliance-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.compliance-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}

.compliance-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}

.cs-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 28s linear infinite;
}

.cs-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  white-space: nowrap;
}

.cs-badge {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.cs-badge.highlight {
  color: var(--logo-blue-h);
  font-weight: 500;
}

.why-grid,
.bento {
  display: grid;
  gap: 2px;
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--border);
}

.why-grid {
  grid-template-columns: 1fr 1fr;
}

.why-cell,
.bento-card,
.proof-card,
.rmod {
  background: var(--bg2);
}

.why-cell {
  padding: 48px;
  transition: background 0.25s;
  position: relative;
}

.why-cell::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-cell:hover::after {
  transform: scaleX(1);
}

.why-cell:hover {
  background: #f8faff;
}

.why-cell.accent-cell {
  background: rgba(74, 101, 217, 0.055);
}

.why-cell.accent-cell:hover {
  background: rgba(74, 101, 217, 0.09);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 24px;
  transition: background 0.25s, border-color 0.25s;
}

.why-cell:hover .why-icon {
  background: var(--logo-blue-d);
  border-color: rgba(74, 101, 217, 0.3);
}

.why-cell h3,
.bento-card h3,
.proof-label,
.rmod-title {
  letter-spacing: -0.02em;
}

.why-cell h3,
.bento-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-cell p,
.bento-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

.bento {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.bento-card {
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}

.bento-card.full {
  grid-column: 1 / -1;
}

.bento-card:hover {
  background: #fdfdff;
}

.bento-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.card-num,
.rmod-tag,
.footer-copy,
.tweaks-title,
.tweak-label {
  font-family: var(--mono);
}

.card-num {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.card-pips {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  gap: 6px;
}

.pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.9;
}

.pip.blue {
  background: var(--accent2);
}

.wide-copy {
  max-width: 680px;
}

.card-tag {
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--logo-blue-d);
  color: var(--logo-blue-h);
  font-size: 12px;
  border: 1px solid rgba(74, 101, 217, 0.18);
}

.card-tag.blue {
  background: var(--accent2-d);
  color: var(--accent2);
  border-color: rgba(74, 101, 217, 0.18);
}

.sysmap-wrap {
  margin-top: 56px;
  border-radius: var(--radius);
  background: var(--bg2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.sysmap-tabs {
  display: flex;
  gap: 8px;
  padding: 18px 20px 0;
}

.sysmap-tab {
  border: 1px solid var(--border-md);
  background: transparent;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}

.sysmap-tab.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.sysmap-body {
  padding: 14px 20px 20px;
}

#system-map {
  width: 100%;
  height: 360px;
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(240,242,245,0.4));
  border-radius: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.proof-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}

.proof-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.proof-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.proof-desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}

.retainer-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 40px;
}

.retainer-left,
.retainer-right {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg2);
  box-shadow: var(--shadow-md);
}

.retainer-left {
  padding: 42px;
}

.retainer-right {
  padding: 42px 36px;
}

.retainer-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.retainer-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

.retainer-arrow {
  color: var(--accent-h);
  font-weight: 700;
  margin-top: 1px;
}

.modules-tag {
  margin-bottom: 28px;
}

.rmod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rmod {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
}

.rmod-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.rmod-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cta-section {
  padding: 40px 52px 120px;
}

.cta-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #0d0f14;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 68px 68px 74px;
  box-shadow: 0 24px 64px rgba(13, 15, 20, 0.16);
}

.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(74,101,217,0.24), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(37,99,255,0.16), transparent 36%),
    radial-gradient(circle at 52% 82%, rgba(0,196,122,0.1), transparent 30%);
}

.cta-tag {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.cta-wrap h2,
.cta-wrap p,
.btn-cta {
  position: relative;
  z-index: 1;
}

.cta-wrap h2 {
  color: #fff;
  max-width: 620px;
}

.cta-wrap p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.btn-cta {
  padding: 17px 36px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(0, 196, 122, 0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 48px rgba(0, 196, 122, 0.5);
}

.mid-cta-section {
  padding-top: 0;
}

.mid-cta-card {
  position: relative;
  overflow: hidden;
  padding: 44px 46px 48px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 20%, rgba(74, 101, 217, 0.14), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(0, 196, 122, 0.12), transparent 30%),
    var(--bg2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mid-cta-tag {
  margin-bottom: 16px;
}

.mid-cta-title {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mid-cta-copy {
  max-width: 640px;
  margin-bottom: 26px;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.72;
}

footer {
  border-top: 1px solid var(--border);
  padding: 36px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-3);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.simple-page {
  min-height: 100vh;
}

.simple-page main {
  padding: 136px 52px 72px;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.page-hero {
  margin-bottom: 28px;
}

.page-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.page-intro {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
}

.legal-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg2);
  color: var(--text-2);
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.content-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg2);
  box-shadow: var(--shadow-sm);
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.content-card p,
.content-card li,
.content-card address {
  color: var(--text-2);
  line-height: 1.75;
  font-style: normal;
}

.content-card ul {
  padding-left: 20px;
}

.content-card strong {
  color: var(--text);
}

.placeholder {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-d);
  color: var(--accent-h);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg2);
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.contact-card p {
  color: var(--text-2);
  line-height: 1.7;
}

.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 268px;
  background: var(--bg2);
  border: 1px solid var(--border-md);
  border-radius: 14px;
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: var(--shadow-lg);
}

.tweaks-panel.visible {
  display: block;
}

.tweaks-title {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.tweak-row {
  margin-bottom: 14px;
}

.tweak-label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 6px;
}

.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tweak-opt {
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-md);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-2);
  background: transparent;
}

.tweak-opt:hover {
  border-color: var(--accent);
  color: var(--accent-h);
}

.tweak-opt.active {
  background: var(--accent-d);
  border-color: rgba(0, 196, 122, 0.4);
  color: var(--accent-h);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-stats,
  .proof-grid,
  .retainer-wrap,
  .why-grid,
  .bento,
  .contact-grid,
  .rmod-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .retainer-wrap,
  .rmod-grid {
    display: grid;
  }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bento-card.full {
    grid-column: auto;
  }

  .retainer-right,
  .retainer-left {
    padding: 32px;
  }
}

@media (max-width: 820px) {
  nav {
    padding: 0 20px;
    height: 72px;
  }

  .nav-logo-full {
    height: 42px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero,
  .section-wrap,
  .cta-section,
  footer,
  .simple-page main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 136px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cta {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 54px;
  }

  .stat-divider {
    width: 120px;
    height: 1px;
  }

  .cta-wrap {
    padding: 42px 22px 46px;
    border-radius: 20px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .simple-page main {
    padding-top: 128px;
    padding-bottom: 56px;
  }

  .content-card,
  .contact-card {
    padding: 22px;
  }

  .mid-cta-card {
    padding: 32px 24px 34px;
  }
}

@media (max-width: 380px) {
  nav {
    height: 80px;
  }

  .nav-logo-full {
    display: none;
  }

  .nav-logo-mark {
    display: block;
    height: 52px;
  }

  .hero {
    padding-top: 144px;
  }
}
