:root {
  --ink: #0a0a0a;
  --ink-soft: #1f1f1f;
  --muted: #5d5d5d;
  --line: #e6e6e6;
  --accent: #0a0a0a;
  --accent-soft: #f2f2f2;
  --surface: #f7f7f7;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

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


.page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
}

.primary,
.secondary,
.ghost {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.secondary {
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.ghost {
  color: var(--ink-soft);
  border: 1px solid transparent;
}

.hero {
  padding: 110px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy.centered {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}

.hero-copy.centered .hero-marquee {
  width: calc(100% + 1600px);
  margin-left: -800px;
}

.hero-copy.centered .hero-actions {
  justify-content: center;
}

.hero-copy.centered .stat-grid {
  justify-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 40px;
}

.hero-copy .lead {
  font-size: 1.1rem;
  margin-bottom: 72px;
  color: var(--ink-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 144px;
}

.logo-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-marquee {
  margin-bottom: 144px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: -60px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
}



section {
  padding: 90px 0;
}

.logos {
  padding: 30px 0 50px;
}

.logos p {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.marquee {
  overflow: hidden;
  padding: 26px 0;
  background: #ffffff;
  --marquee-gap: 32px;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-right: var(--marquee-gap);
  flex: 0 0 auto;
  min-width: max-content;
  justify-content: flex-start;
}

.marquee img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  opacity: 1;
  display: block;
}

.marquee img.logo-fila {
  transform: scale(1.12);
  transform-origin: center;
}


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

.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.process-grid,
.feature-grid,
.network-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.process-grid {
  grid-auto-rows: 1fr;
}

.process-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.process-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  max-width: 420px;
}

.process-header p {
  max-width: 380px;
  font-size: 1rem;
}

.process-card {
  background: #fff;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 20px;
  align-content: start;
  height: 100%;
}

.process-card .mock-frame {
  height: 280px;
}

.step {
  display: inline-flex;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: absolute;
  top: 14px;
  left: 18px;
}

.mock-frame {
  position: relative;
  background: #f4f6f8;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid #e3e7eb;
  display: grid;
  align-content: center;
  justify-items: stretch;
  overflow: hidden;
}

.mock-frame::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(#d7dce1 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.4;
  transform: rotate(2deg);
}

.mock-frame > * {
  position: relative;
  z-index: 1;
}

.mock-screen {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1e5e9;
  box-shadow: 0 16px 32px rgba(10, 10, 10, 0.08);
  display: grid;
  gap: 14px;
  position: relative;
  height: 100%;
}

.sampling-shot .mock-screen {
  grid-template-rows: 1fr;
  align-content: center;
}

.sampling-shot .mock-screen-bar {
  display: none;
}

.mock-screen-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #6b7278;
}

.mock-brand {
  font-weight: 600;
  color: var(--ink);
}

.mock-screen-actions {
  display: inline-flex;
  gap: 8px;
}

.mock-screen-spacer {
  display: block;
  height: 1px;
}

.mock-action {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #e0e4e8;
  background: #f3f5f7;
}

.mock-file-list {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
}

.mock-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f8f9;
  border: 1px solid #edf0f2;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--ink);
  width: fit-content;
  max-width: 100%;
}

.mock-file-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: #e8ecef;
}

.mock-file-icon.word {
  background: url("assets/doc_logos/Microsoft_Office_Word_(2019–present).svg_.png") center/contain no-repeat;
}

.mock-file-icon.pdf {
  background: url("assets/doc_logos/Adobe_Acrobat_DC_logo_2020.svg.png") center/contain no-repeat;
}

.mock-cursor {
  position: absolute;
  right: 36px;
  bottom: 20px;
  width: 26px;
  height: 26px;
  background: url("assets/doc_logos/cursor-16.png") center/contain no-repeat;
  transform: rotate(-8deg);
  opacity: 0.9;
  pointer-events: none;
}

.sampling-cursor {
  right: 208px;
  bottom: 19px;
  transform: rotate(-12deg);
}

.mock-pill-stack {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
}

.mock-pill {
  background: #f4f7f9;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: #3f464c;
  border: 1px solid #e4e9ee;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 260px);
}

.mock-pill.wide {
  justify-content: flex-start;
}

.mock-pill-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #e6eaee;
  border: 1px solid #dde2e6;
}

.mock-pill-icon.done {
  background: #0a0a0a;
  border-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 10.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}


.mock-form {
  display: grid;
  gap: 12px;
}

.mock-form strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.mock-form label {
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
  color: #6a7177;
}

.mock-input {
  display: block;
  background: #f7f8f9;
  border: 1px solid #e3e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #9aa0a6;
}

.mock-cta {
  border: none;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.mock-progress-list {
  display: grid;
  gap: 16px;
  align-content: center;
}

.mock-progress-card {
  display: grid;
  gap: 10px;
}

.mock-progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #3f464c;
  font-weight: 500;
}

.mock-status {
  font-weight: 500;
  color: #3f464c;
}

.mock-bar {
  height: 12px;
  background: #e7ebef;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}

.mock-bar span {
  display: block;
  height: 100%;
  width: var(--progress, 70%);
  background: #0a0a0a;
}

.mock-metric-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #f7f8f9;
  border: 1px solid #edf0f2;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 0.84rem;
  color: #6b737a;
}

.mock-metric-card strong {
  display: block;
  font-size: 0.86rem;
  color: #3f464c;
  font-weight: 600;
}

.features {
  background: #f6f6f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature,
.network-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.feature h3,
.network-card h3 {
  margin-bottom: 10px;
}

.network {
  position: relative;
}

.ramp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  grid-auto-rows: minmax(320px, auto);
}

.ramp-card {
  background: #f2f0ed;
  border-radius: 26px;
  padding: 28px;
  display: grid;
  gap: 12px;
  border: 1px solid #e5e1dc;
  height: 100%;
  align-content: start;
}

.ramp-card h3 {
  font-size: 1.5rem;
}

.ramp-card.wide h3 {
  font-size: 1.6rem;
}

.ramp-card p {
  color: #6b6762;
}


.ramp-card.wide {
  grid-column: span 2;
}

.ramp-visual {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid #e2ded9;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  margin-top: auto;
}

.ramp-visual.laptop {
  display: grid;
  gap: 16px;
}

.window-bar {
  display: flex;
  gap: 6px;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1cbc6;
}

.dashboard-backdrop {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e6e1dc;
  display: grid;
  gap: 12px;
}

.dashboard-title span {
  font-size: 0.75rem;
  color: #8a837d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-title strong {
  display: block;
  font-size: 1.2rem;
  color: #22201e;
  margin-top: 6px;
}

.dashboard-rows {
  display: grid;
  gap: 10px;
}

.dashboard-rows .table-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr 0.9fr;
  gap: 8px;
}

.dashboard-rows .table-row.header {
  font-size: 0.75rem;
  color: #8a837d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: none;
  padding-bottom: 0;
}

.ai-overlay {
  background: #f5f4f2;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e1dbd5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 10px;
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e1dbd5;
  font-size: 1rem;
  color: #0a0a0a;
}

.ai-overlay p {
  color: #5f5a55;
  font-size: 0.9rem;
}

.ai-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e1dbd5;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: #8a837d;
  background: #ffffff;
}

.table-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #5f5a55;
  border-bottom: 1px solid #eeeae6;
  padding-bottom: 8px;
}

.table-row:last-child {
  border-bottom: none;
}

.search-btn {
  border: none;
  background: #0a0a0a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ramp-visual.qc {
  display: grid;
  gap: 14px;
  background: #f8f7f6;
}

.qc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #6b6762;
}

.qc-header strong {
  color: #1f1d1b;
}

.qc-list {
  display: grid;
  gap: 10px;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #e7e2dd;
  font-size: 0.9rem;
}

.qc-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #d8d2cc;
  background: #f2eee9;
}

.qc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #7a756f;
}

.qc-btn {
  border: none;
  background: #0a0a0a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ramp-visual.support {
  background: #f8f7f6;
  padding: 18px;
  border-radius: 18px;
  min-height: 150px;
  display: grid;
  align-content: center;
}

.support-chat {
  display: grid;
  gap: 16px;
  padding: 4px 8px;
  width: 100%;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.chat-message .bubble {
  background: #b9ccef;
  color: #1f2a44;
  border-radius: 20px;
  padding: 14px 18px;
  display: grid;
  gap: 6px;
  max-width: 360px;
}

.chat-message .bubble strong {
  font-size: 0.98rem;
}

.chat-message .bubble span {
  color: #4d5a72;
  font-size: 0.82rem;
}

.chat-message.typing {
  justify-content: flex-end;
  width: 100%;
}

.chat-message.typing .bubble {
  background: #ffffff;
  color: #7b756f;
  border: 1px solid #e4dfda;
  display: flex;
  gap: 8px;
  width: 96px;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  margin-right: 0;
}

.chat-message.typing .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcac4;
}

.chat-message.typing .dot.dark {
  background: #7b756f;
}

.ramp-visual.support {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f8f7f6;
  padding: 18px;
  border-radius: 18px;
}

.chat-thread {
  display: grid;
  gap: 18px;
  width: 100%;
}

.chat-bubble {
  position: relative;
  border-radius: 24px;
  padding: 24px 28px;
  font-size: 1rem;
  line-height: 1.4;
  width: fit-content;
  max-width: 560px;
}

.chat-bubble.primary {
  background: #b9ccef;
  color: #1f2a44;
  width: 70%;
}

.chat-bubble.primary strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.chat-person {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4d5a72;
  font-size: 1rem;
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 68, 0.12);
}

.chat-bubble.typing {
  background: #ffffff;
  border: 1px solid #e4dfda;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  width: 140px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.chat-bubble .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcac4;
}

.chat-bubble .dot.dark {
  background: #7b756f;
}

.certs {
  margin-top: 56px;
  text-align: center;
}

.certs p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 28px;
}

.certs-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 48px;
}

.certs-row img {
  height: 48px;
  width: 140px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
  transition: filter 0.3s ease;
}

.certs-row img:hover {
  filter: none;
}



.testimonials {
  padding: 50px 0 80px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.testimonial strong {
  display: block;
  margin-top: 16px;
}

.cta {
  padding-bottom: 110px;
}

.cta-card {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid #111111;
  color: #ffffff;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-card .ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-grid > div:last-child {
  justify-self: end;
  text-align: right;
}

.footer-bottom {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer a,
.site-footer span,
.site-footer p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-location {
  display: block;
  margin-top: 6px;
}

.site-footer h4 {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

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

  .process-header {
    flex-direction: column;
  }

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

  .ramp-card.tall,
  .ramp-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-cta {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .logo {
    font-size: 1rem;
  }

  .primary,
  .secondary,
  .ghost {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

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

  section {
    padding: 64px 0;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    margin-bottom: 24px;
  }

  .hero-copy .lead {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .hero-actions {
    margin-bottom: 72px;
  }

  .hero-marquee {
    margin-bottom: 72px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }

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

  .hero-actions a {
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }

  .hero-copy.centered .hero-marquee {
    width: 100%;
    margin-left: 0;
  }

  .hero-copy.centered {
    max-width: 100%;
  }

  .marquee img {
    height: 28px;
  }

  .process-header {
    margin-bottom: 32px;
  }

  .process-card {
    padding: 20px;
  }

  .process-card .mock-frame {
    height: auto;
    min-height: 240px;
  }

  .mock-frame {
    padding: 16px;
  }

  .mock-screen {
    padding: 14px;
  }

  .mock-file-item {
    font-size: 0.78rem;
  }

  .mock-pill {
    width: min(100%, 220px);
  }

  .ramp-card {
    padding: 22px;
  }

}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .logo {
    font-size: 1rem;
  }

  .primary,
  .secondary,
  .ghost {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .eyebrow {
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.1rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .hero-copy .lead {
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-marquee {
    margin-bottom: 40px;
  }

  .hero-marquee {
    margin-bottom: 32px;
  }

  .stat-grid {
    margin-top: 8px;
  }

  .logo-title {
    font-size: 0.72rem;
    margin-bottom: 16px;
  }

  .cta {
    padding-bottom: 72px;
  }

  .cta-card {
    padding: 24px;
    border-radius: 20px;
    gap: 16px;
  }

  .cta-card h2 {
    font-size: 1.6rem;
  }

  .cta-card p {
    font-size: 0.95rem;
  }

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

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

  .hero-actions {
    gap: 12px;
  }

  .hero-actions a {
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .primary,
  .secondary,
  .ghost {
    padding: 9px 14px;
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translateX(0);
  }

  .mock-frame::before {
    animation: none;
  }
}
