:root {
  --bg: #05070d;
  --bg-soft: #0c111b;
  --panel: #111927;
  --panel-light: #162133;
  --text: #f7f9ff;
  --muted: #aeb8c8;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #1689ff;
  --cyan: #35d4ff;
  --green: #56d89c;
  --gold: #f2b84b;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(22, 137, 255, 0.16), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(53, 212, 255, 0.1), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

main,
section,
.site-header,
.hero-content,
.section-heading,
.intro-copy,
.contact-copy,
.contact-panel {
  min-width: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand img {
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 150px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  justify-content: center;
  min-width: 0;
}

.nav-links a,
.header-cta,
.primary-button,
.secondary-button,
.project-card a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

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

.nav-links a {
  border-radius: 999px;
  padding: 7px 10px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-align: center;
}

.header-cta,
.secondary-button {
  border: 1px solid var(--line);
  color: var(--white);
}

.header-cta:hover,
.secondary-button:hover {
  border-color: rgba(53, 212, 255, 0.7);
  color: var(--cyan);
  box-shadow: 0 0 28px rgba(53, 212, 255, 0.12);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.86fr);
  min-height: calc(92vh - 75px);
  overflow: hidden;
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 64px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(120deg, rgba(22, 137, 255, 0.28), transparent 42%),
    radial-gradient(circle at 72% 45%, rgba(53, 212, 255, 0.2), transparent 32%),
    linear-gradient(340deg, rgba(86, 216, 156, 0.12), transparent 38%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
  opacity: 0.45;
  position: absolute;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  width: 100%;
}

.hero-media {
  justify-self: center;
  max-width: 440px;
  width: min(100%, 440px);
}

.hero-media img {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.75rem, 4vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 24px 0 0;
  max-width: 880px;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #04111d;
  box-shadow: 0 16px 36px rgba(22, 137, 255, 0.24);
}

.primary-button:hover,
.project-card a:hover {
  box-shadow: 0 20px 46px rgba(53, 212, 255, 0.26);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stats span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 12px;
}

.hero-stats strong {
  color: var(--white);
}

.hero-console {
  min-height: 520px;
  position: relative;
  z-index: 1;
}

.console-glow {
  background:
    radial-gradient(circle, rgba(53, 212, 255, 0.22), transparent 58%),
    radial-gradient(circle, rgba(22, 137, 255, 0.22), transparent 46%);
  filter: blur(8px);
  inset: 8% 0 0 6%;
  position: absolute;
}

.dashboard-card,
.floating-card {
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, var(--glass-strong), rgba(10, 16, 28, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: absolute;
}

.main-dashboard {
  inset: 72px 0 auto auto;
  max-width: 430px;
  min-height: 310px;
  padding: 20px;
  width: 86%;
}

.dashboard-topbar {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dashboard-topbar span {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.dashboard-topbar span:first-child {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(53, 212, 255, 0.8);
}

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

.metric-row div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
}

.metric-row small,
.analytics-card small {
  color: var(--muted);
  display: block;
}

.metric-row strong {
  color: var(--white);
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 8px;
}

.chart-lines {
  align-items: end;
  display: flex;
  gap: 12px;
  height: 126px;
  margin-top: 26px;
}

.chart-lines span {
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 999px 999px 4px 4px;
  flex: 1;
  min-width: 18px;
}

.floating-card {
  padding: 16px;
  width: min(230px, 58%);
}

.floating-card strong,
.floating-card p {
  display: block;
}

.floating-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 4px 0 0;
}

.card-icon {
  background: rgba(53, 212, 255, 0.12);
  border: 1px solid rgba(53, 212, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 5px 8px;
}

.funnel-card {
  left: 0;
  top: 38px;
}

.automation-card {
  bottom: 70px;
  right: 12px;
}

.analytics-card {
  bottom: 18px;
  left: 28px;
}

.pulse-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(86, 216, 156, 0.12);
  display: inline-block;
  height: 10px;
  margin-bottom: 12px;
  width: 10px;
}

.mini-progress {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 8px;
  margin: 12px 0 8px;
  overflow: hidden;
}

.mini-progress span {
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 78%;
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-strip {
  background:
    linear-gradient(180deg, #f7fbff, #ffffff);
  color: #07101d;
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(42px, 6vw, 72px);
  padding-top: clamp(52px, 7vw, 92px);
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.intro-copy .eyebrow {
  text-align: center;
  width: min(100%, 900px);
}

.intro-copy h2 {
  width: min(100%, 900px);
  text-align: center; 
}

.intro-copy p {
  text-align: justify;
  width: min(100%, 900px);
}

.intro-strip .intro-grid {
  background: transparent;
  color: #07101d;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 0;
  padding-top: 16px;
}

.intro-strip div {
  padding: clamp(26px, 4vw, 42px);
}

.intro-grid > div {
  background: #ffffff;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(9, 20, 37, 0.06);
}

.intro-strip span,
.project-card span,
.template-card span,
.post-label {
  color: var(--blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.intro-strip strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.intro-strip p {
  color: #485466;
  margin: 10px 0 0;
}

.split-section {
  background:
    radial-gradient(circle at 78% 8%, rgba(22, 137, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff, #ffffff);
  color: #07101d;
}

.split-section .eyebrow {
  color: #0d6fd3;
}

.split-section .section-heading h2 {
  color: #07101d;
}

.split-section .section-heading p:not(.eyebrow) {
  color: #526071;
}

.split-section .solution-grid article {
  background: #ffffff;
  border-color: #dfe7f1;
  box-shadow: 0 18px 42px rgba(9, 20, 37, 0.06);
}

.split-section .solution-grid article:hover {
  border-color: rgba(13, 111, 211, 0.28);
  box-shadow: 0 24px 60px rgba(13, 111, 211, 0.12);
}

.split-section .solution-grid h3 {
  color: #07101d;
}

.split-section .solution-grid article p {
  color: #526071;
}

.split-section .icon-mark {
  background: rgba(13, 111, 211, 0.08);
  border-color: rgba(13, 111, 211, 0.18);
  color: #0d6fd3;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 18px 0 0;
}

.solution-grid,
.manifesto-grid,
.project-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.solution-grid article,
.manifesto-grid article,
.project-card,
.post-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(17, 25, 39, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-grid article:hover,
.manifesto-grid article:hover,
.template-card:hover {
  border-color: rgba(53, 212, 255, 0.34);
  box-shadow: 0 22px 54px rgba(22, 137, 255, 0.12);
  transform: translateY(-4px);
}

.solution-grid article {
  min-height: 286px;
}

.icon-mark {
  align-items: center;
  background: rgba(53, 212, 255, 0.1);
  border: 1px solid rgba(53, 212, 255, 0.22);
  border-radius: 8px;
  color: var(--cyan);
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 22px;
  width: 42px;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0 0 12px;
}

article p,
li {
  color: var(--muted);
  margin: 0;
}

.manifesto {
  background:
    linear-gradient(180deg, #080b12, #0d1320);
}

.manifesto-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manifesto-grid ul {
  margin: 0;
  padding-left: 20px;
}

.manifesto-grid li + li {
  margin-top: 8px;
}

.showcase {
  background: var(--white);
  color: #07101d;
}

.showcase .eyebrow {
  color: #0d6fd3;
}

.showcase .section-heading p:not(.eyebrow),
.project-card p {
  color: #526071;
}

.project-card {
  background: #f5f8fc;
  border-color: #dce4ef;
}

.project-card h3 {
  color: #07101d;
}

.project-card a {
  color: #0b75db;
  display: inline-block;
  font-weight: 900;
  margin-top: 20px;
}

.impact-section {
  background:
    linear-gradient(135deg, rgba(22, 137, 255, 0.18), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(86, 216, 156, 0.12), transparent 30%),
    #070b13;
}

.impact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.impact-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(8, 14, 25, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  position: relative;
}

.impact-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.impact-card span {
  color: var(--cyan);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.impact-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.impact-card li {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  grid-template-columns: 24px minmax(0, 1fr);
}

.impact-card li::before {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  margin-top: 1px;
  width: 24px;
}

.before-card li::before {
  background: rgba(242, 184, 75, 0.13);
  color: var(--gold);
  content: "!";
}

.after-card {
  border-color: rgba(53, 212, 255, 0.24);
  box-shadow: 0 24px 80px rgba(22, 137, 255, 0.14);
}

.after-card li::before {
  background: rgba(86, 216, 156, 0.14);
  color: var(--green);
  content: "✓";
}

.templates {
  background: var(--white);
  color: #07101d;
  overflow: hidden;
}

.templates .eyebrow {
  color: #0d6fd3;
}

.templates .section-heading h2 {
  color: #07101d;
}

.templates .section-heading p:not(.eyebrow) {
  color: #526071;
}

.templates-carousel {
  margin-top: 38px;
  position: relative;
}

.template-swiper.swiper {
  overflow: hidden !important;
  padding: 4px 2px 12px;
}

.template-card {
  background: #f7f9fd;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(9, 20, 37, 0.08);
  height: auto;
  overflow: hidden;
}

.template-card img {
  aspect-ratio: 16 / 10;
  background: #07101d;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.template-card-content {
  padding: 22px;
}

.template-card span {
  color: #0d6fd3;
}

.template-card h3 {
  color: #07101d;
}

.template-card p {
  color: #526071;
}

.template-controls {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 22px;
  min-height: 44px;
}

.template-nav {
  align-items: center;
  background: #07101d;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.template-nav::before {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.template-prev::before {
  content: "‹";
}

.template-next::before {
  content: "›";
}

.template-nav:hover {
  background: #0d6fd3;
}

.template-pagination {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  position: static;
  width: auto;
}

.template-pagination .swiper-pagination-bullet {
  background: #9fb0c4;
  height: 9px;
  margin: 0;
  opacity: 1;
  width: 9px;
}

.template-pagination .swiper-pagination-bullet-active {
  background: #0d6fd3;
  width: 28px;
  border-radius: 999px;
}

.post-section {
  background:
    linear-gradient(90deg, rgba(53, 212, 255, 0.1), transparent 42%),
    #080b12;
}

.post-card {
  margin-top: 34px;
  max-width: 860px;
}

.post-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.post-card p + p {
  margin-top: 16px;
}

.post-cta {
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(22, 137, 255, 0.14), transparent 42%),
    #101723;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  justify-content: space-between;
}

.contact-copy {
  max-width: 780px;
}

.contact-panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.contact-item {
  align-items: center;
  background: rgba(5, 7, 13, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 72px;
  padding: 12px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(53, 212, 255, 0.55);
  transform: translateY(-2px);
}

.contact-icon,
.button-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.contact-icon {
  background: rgba(53, 212, 255, 0.12);
  border: 1px solid rgba(53, 212, 255, 0.24);
  border-radius: 8px;
  color: var(--cyan);
  height: 46px;
  width: 46px;
}

.contact-icon svg,
.button-icon svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.contact-item small {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.contact-button {
  gap: 10px;
  min-height: 54px;
  width: 100%;
}

.contact-rights {
  color: rgba(247, 249, 255, 0.7);
  font-size: 0.88rem;
  margin: 4px 0 0;
}

.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .main-dashboard {
    animation: floatSoft 7s ease-in-out infinite;
  }

  .funnel-card,
  .automation-card,
  .analytics-card {
    animation: floatSoft 6s ease-in-out infinite;
  }

  .automation-card {
    animation-delay: -2s;
  }

  .analytics-card {
    animation-delay: -3s;
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .site-header .header-cta {
    display: none;
  }

  .nav-links {
    flex-wrap: wrap;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero-media {
    justify-self: start;
    max-width: 340px;
  }

  .hero-console {
    min-height: 430px;
    width: min(100%, 620px);
  }

  .main-dashboard {
    left: 7%;
    right: auto;
    width: 82%;
  }

  .solution-grid,
  .manifesto-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .intro-strip .intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    gap: 12px;
    padding-bottom: 12px;
    padding-top: 12px;
    position: static;
  }

  .brand img {
    width: 132px;
  }

  .nav-links {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
    justify-content: center;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    border-radius: 8px;
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .header-cta {
    min-height: 42px;
    width: 100%;
  }

  .hero {
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .hero-content img {
    width: min(100%, 240px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    margin-top: 18px;
  }

  .hero-copy {
    font-size: 1.03rem;
    margin-top: 22px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-stats span {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .hero-console {
    min-height: 360px;
  }

  .main-dashboard {
    left: 0;
    min-height: 260px;
    padding: 16px;
    top: 42px;
    width: 100%;
  }

  .metric-row {
    gap: 10px;
  }

  .metric-row div {
    padding: 12px;
  }

  .metric-row strong {
    font-size: 1.55rem;
  }

  .chart-lines {
    height: 96px;
    margin-top: 20px;
  }

  .floating-card {
    padding: 12px;
    width: min(220px, 68%);
  }

  .funnel-card {
    left: 8px;
    top: 8px;
  }

  .automation-card {
    bottom: 20px;
    right: 0;
  }

  .analytics-card {
    bottom: 0;
    left: 4px;
  }

  .intro-strip,
  .intro-strip .intro-grid,
  .solution-grid,
  .manifesto-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    padding-left: 16px;
    padding-right: 16px;
  }

  .intro-strip {
    padding-bottom: 46px;
    padding-top: 52px;
  }

  .intro-copy {
    align-items: flex-start;
    text-align: left;
  }

  .intro-copy p {
    text-align: left;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: clamp(1.9rem, 11vw, 2.55rem);
    line-height: 1.08;
  }

  .solution-grid article,
  .manifesto-grid article,
  .project-card,
  .post-card {
    padding: 22px;
  }

  .solution-grid article {
    min-height: auto;
  }

  .template-controls {
    justify-content: space-between;
  }

  .template-card-content {
    padding: 18px;
  }

  .impact-card {
    padding: 22px;
  }

  .contact-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 66px;
  }

  .contact-icon {
    height: 42px;
    width: 42px;
  }

  .primary-button,
  .secondary-button,
  .contact-section .primary-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header,
  .section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content img {
    width: min(100%, 250px);
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .contact-section p,
  article p,
  li {
    font-size: 0.96rem;
  }

  .template-nav {
    height: 38px;
    width: 38px;
  }
}
