:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #62706b;
  --line: #dfe6e2;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --mist: #eef6f2;
  --green: #155f49;
  --green-2: #1f8a68;
  --gold: #e1a13b;
  --coral: #e56b5f;
  --teal: #2f9fb3;
  --shadow: 0 22px 70px rgba(22, 42, 35, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(47, 159, 179, 0.16), transparent 34rem),
    linear-gradient(180deg, #fbfcfa 0%, #f4f8f5 42%, #fbfcfa 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(223, 230, 226, 0.86);
  border-radius: var(--radius);
  background: rgba(251, 252, 250, 0.86);
  box-shadow: 0 12px 34px rgba(23, 32, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 8px 16px rgba(21, 95, 73, 0.18));
}

.brand-wordmark {
  width: clamp(116px, 12vw, 148px);
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 104px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(2rem, 4.4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 54px 0 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.45rem, 4.9vw, 3.95rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.16rem;
}

.hero-text,
.section-heading p,
.demo-copy p,
.contact-intro p,
.footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.08rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #103d31);
  color: #fff;
  box-shadow: 0 16px 36px rgba(21, 95, 73, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.trust-row span {
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.product-browser {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 242, 0.78)),
    linear-gradient(135deg, rgba(21, 95, 73, 0.18), rgba(229, 107, 95, 0.12));
  box-shadow: var(--shadow);
}

.product-browser::before {
  position: absolute;
  inset: auto -18% -34% 18%;
  height: 260px;
  background: linear-gradient(135deg, rgba(47, 159, 179, 0.28), rgba(225, 161, 59, 0.22));
  content: "";
  transform: rotate(-8deg);
}

.window-bar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.window-bar span:first-child {
  background: var(--coral);
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: var(--green-2);
}

.hero-logo-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(223, 230, 226, 0.74);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.86), rgba(238, 246, 242, 0.64)),
    linear-gradient(135deg, rgba(21, 95, 73, 0.06), rgba(47, 159, 179, 0.08));
}

.hero-logo-card img {
  display: block;
  width: min(360px, 92%);
  max-height: 170px;
  object-fit: contain;
}

.browser-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.78fr);
  gap: 18px;
  align-items: stretch;
  min-height: 320px;
}

.browser-copy,
.browser-panel,
.calendar-card,
.mini-list,
.app-card,
.site-preview-card,
.thumbnail-panel {
  border: 1px solid rgba(223, 230, 226, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(23, 32, 29, 0.1);
}

.browser-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background:
    linear-gradient(180deg, rgba(21, 95, 73, 0.08), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(47, 159, 179, 0.18), rgba(229, 107, 95, 0.12));
}

.browser-copy span,
.calendar-card span,
.mini-list span,
.app-label,
.app-card span,
.site-preview-copy span,
.site-preview-card span,
.dashboard-shot-grid span,
.thumbnail-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.browser-copy strong {
  display: block;
  max-width: 340px;
  margin: 0.7rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.browser-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.browser-panel {
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 14px;
}

.calendar-card {
  padding: 16px;
}

.studio-card {
  display: grid;
  align-content: center;
}

.calendar-card strong {
  display: block;
  margin: 0.6rem 0 1rem;
  font-size: 1.55rem;
}

.studio-card strong {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  line-height: 1.08;
}

.studio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.accent-card {
  background: rgba(238, 246, 242, 0.82);
}

.progress-track {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: var(--mist);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.mini-list span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(98, 112, 107, 0.16);
}

.mini-list span:nth-child(2) {
  width: 78%;
}

.mini-list span:nth-child(3) {
  width: 52%;
}

.phone-preview,
.phone-frame {
  border: 10px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 24px 58px rgba(23, 32, 29, 0.22);
}

.phone-preview {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: min(215px, 42%);
}

.phone-speaker {
  width: 56px;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  display: grid;
  gap: 10px;
  min-height: 300px;
  padding: 18px 14px 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(225, 161, 59, 0.32), transparent 10rem),
    linear-gradient(180deg, #f8fbf9, #e9f3ef);
}

.phone-app-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(21, 95, 73, 0.18);
}

.phone-screen > strong {
  font-size: 1.35rem;
}

.app-card {
  padding: 12px;
}

.app-card.active {
  background: var(--green);
  color: #fff;
}

.app-card.active span {
  color: rgba(255, 255, 255, 0.72);
}

.app-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.96rem;
}

.app-nav {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
}

.app-nav span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.24);
}

.services {
  padding: 54px 0 76px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.filter-row {
  margin-bottom: 1.35rem;
}

.filter-button {
  min-height: 38px;
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.filter-button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(23, 32, 29, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card:hover {
  border-color: rgba(21, 95, 73, 0.32);
  box-shadow: 0 24px 52px rgba(23, 32, 29, 0.13);
  transform: translateY(-5px);
}

.visual-card {
  position: relative;
  justify-content: space-between;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 76% 72%, rgba(255, 255, 255, 0.28), transparent 12rem),
    linear-gradient(135deg, #17201d, #485b54);
}

.visual-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 46%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
  content: "";
  opacity: 0.55;
}

.theme-commerce {
  background:
    radial-gradient(circle at 76% 72%, rgba(225, 161, 59, 0.5), transparent 13rem),
    linear-gradient(145deg, #263d39, #0f1715);
}

.theme-campaign {
  background:
    radial-gradient(circle at 24% 82%, rgba(229, 107, 95, 0.46), transparent 12rem),
    linear-gradient(145deg, #233d4a, #111819);
}

.theme-mobile,
.theme-ai {
  background:
    radial-gradient(circle at 75% 36%, rgba(47, 159, 179, 0.48), transparent 12rem),
    linear-gradient(145deg, #102e32, #141917);
}

.theme-brand {
  background:
    radial-gradient(circle at 72% 72%, rgba(225, 161, 59, 0.42), transparent 11rem),
    linear-gradient(145deg, #423126, #141716);
}

.theme-booking {
  background:
    radial-gradient(circle at 74% 74%, rgba(255, 255, 255, 0.2), transparent 13rem),
    linear-gradient(145deg, #583f2b, #1d1712);
}

.theme-dashboard,
.theme-automation {
  background:
    radial-gradient(circle at 76% 70%, rgba(31, 138, 104, 0.48), transparent 13rem),
    linear-gradient(145deg, #17201d, #0d1715);
}

.theme-funnel {
  background:
    radial-gradient(circle at 78% 74%, rgba(229, 107, 95, 0.42), transparent 13rem),
    linear-gradient(145deg, #44362f, #111716);
}

.service-card-copy,
.service-visual,
.visual-card .card-link {
  position: relative;
  z-index: 1;
}

.service-card-copy {
  padding: 26px 24px 0;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--mist);
  color: var(--green);
  font-size: 1.35rem;
}

.badge {
  padding: 0.36rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 800;
}

.category {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-card h3 {
  max-width: 15rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.08;
}

.project-card p {
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: auto 22px 22px;
  color: #fff;
  font-weight: 800;
}

.card-link span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
}

.service-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 18px 18px 10px;
}

.mock-browser-card,
.mock-store-card,
.mock-landing-card,
.mock-phone-card,
.mock-brand-card,
.mock-calendar-card,
.mock-chart-card,
.mock-funnel-card,
.mock-workflow-card,
.mock-ai-card {
  width: min(220px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.mock-browser-card,
.mock-store-card {
  min-height: 150px;
}

.mock-topbar {
  display: flex;
  gap: 5px;
  padding: 9px;
  border-bottom: 1px solid rgba(23, 32, 29, 0.1);
}

.mock-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
}

.mock-topbar span:nth-child(2) {
  background: var(--gold);
}

.mock-topbar span:nth-child(3) {
  background: var(--green-2);
}

.mock-hero-lines {
  display: grid;
  gap: 9px;
  padding: 20px;
}

.mock-service-site {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.mock-service-site strong {
  font-size: 1.25rem;
  line-height: 1.05;
}

.mock-hero-lines span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.16);
}

.mock-hero-lines span:first-child {
  width: 76%;
  height: 24px;
  background: rgba(21, 95, 73, 0.28);
}

.mock-floating-note,
.mock-checkout,
.booking-chip {
  display: inline-flex;
  margin: 0 0 14px 18px;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.mock-store-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
  padding: 16px;
}

.mock-product {
  display: grid;
  align-content: end;
  gap: 4px;
  min-height: 88px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.7), rgba(229, 107, 95, 0.65));
}

.mock-product small {
  color: rgba(23, 32, 29, 0.62);
  font-weight: 800;
}

.mock-product.small {
  min-height: 64px;
  background: linear-gradient(135deg, rgba(47, 159, 179, 0.58), rgba(21, 95, 73, 0.55));
}

.mock-checkout {
  grid-column: 1 / -1;
  margin: 0;
  justify-content: center;
}

.mock-landing-card,
.mock-ai-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.mock-landing-card strong,
.mock-ai-card strong,
.mock-brand-card strong,
.mock-calendar-card strong,
.mock-chart-card strong {
  font-size: 1.35rem;
}

.mock-landing-card > span,
.mock-ai-card > span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.16);
}

.mock-landing-card button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.mock-phone-card {
  width: 190px;
  min-height: 210px;
  padding: 8px;
  border: 8px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
}

.mock-phone-card .phone-ui {
  min-height: 205px;
  gap: 7px;
  padding: 12px 10px;
}

.mock-brand-card,
.mock-calendar-card,
.mock-chart-card,
.mock-funnel-card,
.mock-workflow-card {
  padding: 18px;
}

.mock-brand-logo {
  display: block;
  width: min(185px, 100%);
  margin: 0 auto 14px;
  object-fit: contain;
}

.swatches,
.calendar-row,
.chart-bars {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.brand-preview-lines {
  display: grid;
  gap: 7px;
  margin: 14px 0;
}

.brand-preview-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.14);
}

.brand-preview-lines span:nth-child(2) {
  width: 62%;
}

.swatches span,
.calendar-row span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--green);
}

.swatches span:nth-child(2),
.calendar-row span:nth-child(2) {
  background: var(--gold);
}

.swatches span:nth-child(3),
.calendar-row span:nth-child(3) {
  background: var(--coral);
}

.calendar-row span:nth-child(4) {
  background: var(--teal);
}

.mock-chart-card {
  display: grid;
  gap: 14px;
}

.mock-chart-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.chart-bars {
  align-items: end;
  height: 74px;
  margin: 0;
}

.chart-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.chart-bars span:nth-child(1) {
  height: 42%;
}

.chart-bars span:nth-child(2) {
  height: 76%;
}

.chart-bars span:nth-child(3) {
  height: 58%;
}

.chart-bars span:nth-child(4) {
  height: 92%;
}

.mock-funnel-card,
.mock-workflow-card {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.mock-funnel-card span,
.mock-workflow-card span {
  padding: 0.72rem 0.8rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.12);
  color: var(--ink);
  font-weight: 800;
}

.screen-showcase {
  padding: 10px 0 86px;
}

.showcase-carousel {
  position: relative;
}

.screen-track {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius);
}

.screen-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(4%);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.screen-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.rolling-browser {
  overflow: hidden;
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 62px rgba(23, 32, 29, 0.12);
}

.rolling-body {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  min-height: 638px;
  background:
    radial-gradient(circle at 82% 32%, rgba(47, 159, 179, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(238, 246, 242, 0.9), #fff);
}

.screen-slide.accent-gold .rolling-body {
  background:
    radial-gradient(circle at 78% 34%, rgba(225, 161, 59, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(255, 249, 236, 0.88), #fff);
}

.screen-slide.accent-green .rolling-body {
  background:
    radial-gradient(circle at 78% 34%, rgba(21, 95, 73, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(238, 246, 242, 0.96), #fff);
}

.screen-slide.accent-coral .rolling-body {
  background:
    radial-gradient(circle at 78% 34%, rgba(229, 107, 95, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(255, 244, 242, 0.9), #fff);
}

.rolling-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 5vw, 3.2rem);
}

.rolling-copy span,
.rolling-metric span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rolling-copy strong {
  display: block;
  max-width: 560px;
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.05rem, 3.8vw, 3.2rem);
  line-height: 1.05;
}

.rolling-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.rolling-ui-stack {
  position: relative;
  display: grid;
  align-items: center;
  padding: 32px;
}

.rolling-device {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 32, 29, 0.08), rgba(23, 32, 29, 0.18)),
    linear-gradient(135deg, rgba(21, 95, 73, 0.72), rgba(47, 159, 179, 0.48));
  box-shadow: 0 22px 58px rgba(23, 32, 29, 0.18);
}

.rolling-site-card {
  width: min(470px, 100%);
  max-height: 300px;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 46px rgba(23, 32, 29, 0.18);
}

.rolling-site-card .site-nav-mini {
  margin-bottom: 12px;
}

.rolling-site-card .browser-template-hero strong,
.rolling-site-card .saas-template strong,
.rolling-site-card .menu-template strong,
.rolling-site-card .roof-template strong,
.rolling-site-card .landscape-template strong,
.rolling-site-card .b2b-template strong,
.rolling-site-card .consulting-template strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.rolling-phone-card {
  z-index: 2;
  width: 210px;
  padding: 8px;
  border: 8px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 20px 44px rgba(23, 32, 29, 0.2);
}

.rolling-phone-card .phone-ui {
  min-height: 344px;
}

.device-photo {
  position: absolute;
  inset: 24px 24px auto auto;
  width: min(260px, 46%);
  height: 190px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 34%, rgba(255, 255, 255, 0.78), transparent 2.2rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.06));
}

.device-panel {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.device-panel.rich {
  right: 28px;
  bottom: 30px;
  left: auto;
  width: min(260px, 54%);
}

.device-panel.rich b {
  color: var(--ink);
}

.device-panel span {
  height: 12px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.16);
}

.device-panel span:nth-child(1) {
  width: 62%;
}

.device-panel span:nth-child(2) {
  width: 88%;
}

.device-panel span:nth-child(3) {
  width: 46%;
}

.rolling-metric {
  position: absolute;
  left: 12px;
  top: 84px;
  z-index: 2;
  width: min(230px, 45%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(23, 32, 29, 0.14);
}

.rolling-metric strong {
  display: block;
  margin: 0.45rem 0 1rem;
  color: var(--ink);
  font-size: 2.15rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 18px;
}

.screen-dots,
.carousel-arrows {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 32, 29, 0.26);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.screen-dot.active {
  width: 36px;
  background: var(--ink);
}

.circle-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.website-shot,
.dashboard-shot,
.mobile-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(23, 32, 29, 0.1);
}

.website-shot {
  min-height: 390px;
}

.dashboard-shot {
  min-height: 390px;
}

.mobile-shot {
  display: grid;
  grid-row: span 2;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 12%, rgba(47, 159, 179, 0.18), transparent 13rem),
    rgba(255, 255, 255, 0.88);
}

.shot-topbar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.shot-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.shot-topbar span:first-child {
  background: var(--coral);
}

.shot-topbar span:nth-child(2) {
  background: var(--gold);
}

.shot-topbar span:nth-child(3) {
  background: var(--green-2);
}

.website-shot-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.52fr);
  gap: 18px;
  min-height: 336px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(21, 95, 73, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(238, 246, 242, 0.54), #fff);
}

.site-preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-preview-copy strong {
  display: block;
  max-width: 440px;
  margin: 0.65rem 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
}

.site-preview-copy p {
  max-width: 410px;
  color: var(--muted);
  line-height: 1.65;
}

.site-preview-card {
  align-self: center;
  padding: 16px;
}

.site-preview-card strong {
  display: block;
  margin: 0.55rem 0 1rem;
  font-size: 2rem;
}

.dashboard-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.dashboard-shot-grid > div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 246, 242, 0.52);
}

.dashboard-shot-grid strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.8rem;
}

.chart-block {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 12px;
}

.chart-block span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.chart-block span:nth-child(1) {
  height: 45%;
}

.chart-block span:nth-child(2) {
  height: 70%;
}

.chart-block span:nth-child(3) {
  height: 54%;
}

.chart-block span:nth-child(4) {
  height: 88%;
}

.phone-frame {
  width: min(240px, 100%);
}

.chip-strip {
  margin-top: -18px;
  padding: 0 0 34px;
}

.service-chip-track {
  display: flex;
  gap: 0.72rem;
  overflow-x: auto;
  padding: 0.4rem 0 0.65rem;
  scrollbar-width: thin;
}

.service-chip {
  flex: 0 0 auto;
  padding: 0.7rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.service-chip:hover {
  border-color: rgba(21, 95, 73, 0.32);
  color: var(--green);
  transform: translateY(-2px);
}

.visual-showcase {
  position: relative;
  padding: 22px 0 88px;
}

.visual-showcase::before {
  position: absolute;
  inset: 4rem -4rem auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(47, 159, 179, 0.11);
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: 2rem;
}

.showcase-heading h2 {
  margin-bottom: 0;
}

.showcase-heading > p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.showcase-lane {
  margin-top: 1.35rem;
}

.lane-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lane-actions {
  display: flex;
  gap: 0.55rem;
}

.lane-heading h3 {
  max-width: 640px;
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}

.section-kicker,
.lane-note {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lane-note {
  color: var(--muted);
}

.app-preview-mask {
  position: relative;
  overflow: hidden;
}

.app-preview-mask::before,
.app-preview-mask::after {
  position: absolute;
  top: 0;
  bottom: 1rem;
  z-index: 2;
  width: 46px;
  pointer-events: none;
  content: "";
}

.app-preview-mask::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.app-preview-mask::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.app-preview-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0.2rem 2px 1.1rem;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.app-preview-row::-webkit-scrollbar,
.service-chip-track::-webkit-scrollbar {
  display: none;
}

.app-preview-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 32px) / 3);
  flex-direction: column;
  min-height: 720px;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(223, 230, 226, 0.9);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.48), transparent 9rem),
    linear-gradient(145deg, #eef6f2, #ffffff);
  box-shadow: 0 16px 42px rgba(23, 32, 29, 0.09);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.app-preview-card:hover,
.website-concept-card:hover {
  box-shadow: 0 26px 58px rgba(23, 32, 29, 0.14);
  transform: translateY(-5px);
}

.gradient-finance {
  background: linear-gradient(145deg, #eaf5ff, #f9fcff);
}

.gradient-booking {
  background: linear-gradient(145deg, #edf8f2, #fffdf7);
}

.gradient-restaurant {
  background: linear-gradient(145deg, #fff4ec, #fbfcfa);
}

.gradient-salon {
  background: linear-gradient(145deg, #fff0f1, #fbfcfa);
}

.gradient-inventory {
  background: linear-gradient(145deg, #eef6f2, #f8fbf9);
}

.gradient-portal {
  background: linear-gradient(145deg, #f1f4ff, #fbfcfa);
}

.gradient-ai {
  background: linear-gradient(145deg, #eef9fb, #fbfcfa);
}

.gradient-admin {
  background: linear-gradient(145deg, #f6f2eb, #fbfcfa);
}

.app-preview-copy h3 {
  margin: 0.8rem 0 0.55rem;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.app-preview-copy p {
  color: var(--muted);
  line-height: 1.5;
}

.concept-badge {
  display: inline-flex;
  width: max-content;
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.1);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-phone-shell {
  align-self: center;
  width: min(218px, 84%);
  margin: auto auto 0;
  padding: 8px;
  border: 8px solid var(--ink);
  border-radius: 32px;
  background: var(--ink);
  box-shadow: 0 22px 48px rgba(23, 32, 29, 0.22);
}

.phone-ui {
  display: grid;
  gap: 6px;
  min-height: 360px;
  padding: 12px 10px;
  overflow: hidden;
  border-radius: 23px;
  background: #fbfcfa;
}

.phone-ui strong {
  font-size: 0.96rem;
  line-height: 1.08;
}

.phone-ui b,
.phone-ui small,
.phone-ui span,
.phone-ui button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.app-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-mini-top span:first-child {
  width: auto;
  min-width: 46px;
  height: auto;
  padding: 0.24rem 0.45rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.16);
  color: var(--green);
  font-size: 0.56rem;
  font-weight: 800;
}

.app-mini-top i,
.app-mini-top span:last-child {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    url("assets/launchful-app-icon-transparent.png") center / cover no-repeat,
    linear-gradient(135deg, var(--green), var(--teal));
}

.balance-card,
.appointment-card,
.stylist-card,
.food-card,
.quote-card,
.progress-card,
.task-row,
.cart-summary,
.alert-chip,
.service-row,
.stock-row,
.file-row {
  border: 1px solid rgba(223, 230, 226, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  min-width: 0;
}

.customer-card,
.confirm-card,
.checklist-card,
.report-card,
.budget-goal,
.quick-actions,
.prompt-chips {
  border: 1px solid rgba(223, 230, 226, 0.8);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  min-width: 0;
}

.balance-card {
  padding: 12px;
}

.balance-card small,
.appointment-card small,
.stylist-card small,
.quote-card small,
.progress-card span,
.task-row small,
.food-card small,
.service-row span,
.stock-row span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.balance-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.45rem;
}

.balance-card em,
.appointment-card em,
.alert-chip {
  display: inline-flex;
  width: max-content;
  margin-top: 0.35rem;
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(31, 138, 104, 0.14);
  color: var(--green);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.spend-row,
.stock-row,
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 8px;
  padding: 7px;
}

.spend-row i,
.stock-row i,
.progress-card i {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.finance-chart,
.movement-chart,
.team-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 52px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(21, 95, 73, 0.08);
}

.finance-chart span,
.movement-chart span,
.team-chart span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.finance-chart span:nth-child(1),
.movement-chart span:nth-child(1),
.team-chart span:nth-child(1) {
  height: 44%;
}

.finance-chart span:nth-child(2),
.movement-chart span:nth-child(2),
.team-chart span:nth-child(2) {
  height: 82%;
}

.finance-chart span:nth-child(3),
.movement-chart span:nth-child(3),
.team-chart span:nth-child(3) {
  height: 60%;
}

.finance-chart span:nth-child(4),
.movement-chart span:nth-child(4),
.team-chart span:nth-child(4) {
  height: 72%;
}

.finance-chart span:nth-child(5) {
  height: 92%;
}

.transaction-row,
.stylist-card,
.food-card,
.file-row,
.customer-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px;
}

.file-row b {
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction-row > span,
.stylist-card > span,
.file-row > span,
.customer-card > span,
.food-card i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.72), rgba(47, 159, 179, 0.52));
}

.budget-goal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 8px;
}

.budget-goal span {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.12);
}

.budget-goal i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.calendar-strip,
.tab-row,
.time-chips,
.suggestion-row,
.approval-row,
.service-badges,
.trust-row-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.calendar-strip span,
.tab-row span,
.time-chips span,
.suggestion-row span,
.service-badges span,
.trust-row-mini span {
  padding: 0.28rem 0.38rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.1);
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 800;
}

.calendar-strip span.active,
.tab-row span.active {
  background: var(--green);
  color: #fff;
}

.appointment-card {
  display: grid;
  gap: 3px;
  padding: 8px;
}

.appointment-card.muted {
  opacity: 0.72;
}

.mini-cta,
.approval-row button,
.demo-preview-cta {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.mini-cta {
  min-height: 34px;
  padding: 0.45rem 0.65rem;
  font-size: 0.68rem;
}

.food-card i {
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.66), rgba(229, 107, 95, 0.38));
}

.cart-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  justify-content: space-between;
  padding: 8px;
}

.food-card.compact {
  padding-block: 6px;
}

.alert-chip {
  margin-top: 0;
}

.task-row {
  display: flex;
  justify-content: space-between;
  padding: 9px;
}

.confirm-card,
.report-card {
  display: grid;
  gap: 4px;
  padding: 9px;
}

.confirm-card small,
.report-card small,
.customer-card small,
.checklist-card span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.progress-card {
  padding: 10px;
}

.progress-card b {
  float: right;
}

.progress-card i {
  clear: both;
  margin-top: 0.55rem;
  width: 68%;
}

.approval-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.approval-row button {
  min-height: 30px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.approval-row button:nth-child(2) {
  background: rgba(21, 95, 73, 0.12);
  color: var(--green);
}

.quote-card {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.quote-card span {
  font-size: 0.78rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.metric-grid div {
  padding: 10px;
  border-radius: 10px;
  background: rgba(21, 95, 73, 0.1);
}

.metric-grid b {
  display: block;
  font-size: 1.05rem;
}

.metric-grid small {
  color: var(--muted);
  font-weight: 800;
}

.task-list {
  display: grid;
  gap: 6px;
}

.task-list span {
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: rgba(21, 95, 73, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
}

.checklist-card {
  display: grid;
  gap: 5px;
  padding: 8px;
}

.checklist-card span {
  position: relative;
  padding-left: 14px;
}

.checklist-card span::before {
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-2);
  content: "";
}

.quick-actions,
.prompt-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 7px;
}

.quick-actions span,
.prompt-chips span {
  padding: 0.38rem 0.42rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.1);
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 800;
  text-align: center;
}

.phone-screen-image {
  display: block;
  width: 100%;
  min-height: 286px;
  object-fit: cover;
  border-radius: 23px;
}

.phone-pill,
.phone-pill.wide,
.phone-list span,
.phone-bars span,
.date-row span,
.food-grid span,
.inventory-grid span {
  display: block;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.14);
}

.phone-pill {
  width: 54%;
  height: 11px;
}

.phone-pill.wide {
  width: 100%;
  height: 34px;
  margin-top: auto;
  background: var(--green);
}

.phone-list {
  display: grid;
  gap: 9px;
}

.phone-list span {
  height: 34px;
  border-radius: 8px;
}

.phone-bars,
.date-row,
.food-grid,
.inventory-grid {
  display: grid;
  gap: 8px;
}

.phone-bars {
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  height: 62px;
}

.phone-bars span {
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.phone-bars span:nth-child(1) {
  height: 48%;
}

.phone-bars span:nth-child(2) {
  height: 82%;
}

.phone-bars span:nth-child(3) {
  height: 62%;
}

.date-row,
.food-grid,
.inventory-grid {
  grid-template-columns: repeat(4, 1fr);
}

.date-row span,
.food-grid span,
.inventory-grid span {
  height: 34px;
  border-radius: 8px;
}

.food-grid span {
  height: 54px;
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.5), rgba(229, 107, 95, 0.38));
}

.inventory-grid span {
  background: rgba(47, 159, 179, 0.18);
}

.chat-bubble {
  width: 88%;
  height: 54px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(21, 95, 73, 0.13);
}

.chat-bubble.reply {
  width: 76%;
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
  background: rgba(47, 159, 179, 0.18);
}

.preview-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.preview-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.1);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.preview-card-action:hover {
  background: var(--green);
  color: #fff;
}

.website-concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.website-concept-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.72fr);
  gap: 18px;
  min-height: 340px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(23, 32, 29, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.concept-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.concept-browser-body {
  display: grid;
  min-height: 280px;
  padding: 16px;
  background:
    radial-gradient(circle at 80% 30%, rgba(47, 159, 179, 0.14), transparent 10rem),
    linear-gradient(135deg, #f8fbf9, #fff);
}

.site-nav-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav-mini b {
  margin-right: auto;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.site-nav-mini button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0.42rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.concept-commerce .concept-browser-body {
  background: linear-gradient(135deg, #fff7ea, #fbfcfa);
}

.concept-restaurant .concept-browser-body {
  background: linear-gradient(135deg, #fff1e8, #fbfcfa);
}

.concept-roofing .concept-browser-body,
.concept-consulting .concept-browser-body {
  background: linear-gradient(135deg, #eef3f5, #fbfcfa);
}

.concept-landscaping .concept-browser-body {
  background: linear-gradient(135deg, #eaf6ec, #fbfcfa);
}

.concept-b2b .concept-browser-body {
  background: linear-gradient(135deg, #eef6f2, #f7faf8);
}

.concept-saas .concept-browser-body {
  background: linear-gradient(135deg, #eef9fb, #fbfcfa);
}

.browser-template-hero,
.roof-template,
.landscape-template,
.b2b-template,
.consulting-template,
.saas-template,
.menu-template {
  display: grid;
  align-content: center;
  gap: 14px;
}

.service-template-rich {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.62fr);
  align-items: end;
}

.template-side-stack {
  display: grid;
  gap: 10px;
}

.review-card,
.promo-banner,
.checkout-card,
.proof-cards span,
.package-row span,
.education-cards span,
.report-cards span,
.feature-cards span,
.service-area-card,
.hours-strip,
.maintenance-card,
.compliance-card,
.checkout-strip {
  border: 1px solid rgba(223, 230, 226, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(23, 32, 29, 0.07);
}

.review-card {
  width: 100%;
  padding: 0.65rem 0.75rem;
  color: #8a5b10;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-banner {
  margin-bottom: 12px;
  padding: 0.62rem 0.75rem;
  color: var(--green);
  font-weight: 800;
}

.service-area-card,
.hours-strip,
.maintenance-card,
.compliance-card,
.checkout-strip {
  display: grid;
  gap: 4px;
  padding: 0.75rem;
  font-weight: 800;
}

.service-area-card small,
.hours-strip small,
.maintenance-card small,
.compliance-card small,
.checkout-strip small,
.dish-grid small,
.before-after small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.browser-template-hero strong,
.roof-template strong,
.landscape-template strong,
.b2b-template strong,
.consulting-template strong,
.saas-template strong,
.menu-template strong {
  max-width: 360px;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.browser-template-hero button,
.consulting-template button,
.template-actions button {
  width: max-content;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0.68rem 0.86rem;
  font-weight: 800;
}

.product-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-template-grid span {
  display: grid;
  align-content: end;
  gap: 4px;
  min-height: 104px;
  padding: 10px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.48), rgba(229, 107, 95, 0.32));
}

.product-template-grid small {
  color: var(--muted);
  font-weight: 800;
}

.product-template-grid span:nth-child(2),
.product-template-grid span:nth-child(3) {
  background: linear-gradient(135deg, rgba(47, 159, 179, 0.28), rgba(21, 95, 73, 0.24));
}

.menu-template span,
.roof-template span,
.landscape-template span,
.b2b-template span,
.consulting-template span {
  display: block;
  width: 80%;
  height: 13px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.16);
}

.dish-grid,
.before-after,
.package-row,
.gallery-grid,
.education-cards,
.report-cards,
.feature-cards {
  display: grid;
  gap: 10px;
}

.dish-grid,
.package-row,
.education-cards,
.report-cards,
.feature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.dish-grid span,
.package-row span,
.education-cards span,
.report-cards span,
.feature-cards span {
  width: auto;
  height: auto;
  min-height: 64px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.menu-template button,
.roof-template button,
.b2b-template button {
  width: max-content;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0.62rem 0.78rem;
  font-weight: 800;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.before-after {
  grid-template-columns: repeat(2, 1fr);
}

.before-after span {
  width: auto;
  height: 86px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.roof-template em,
.landscape-template em,
.restaurant-template-rich em,
.consulting-template em {
  width: max-content;
  max-width: 100%;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: rgba(225, 161, 59, 0.16);
  color: #8a5b10;
  font-style: normal;
  font-weight: 800;
}

.proof-cards,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.proof-cards span,
.gallery-grid span {
  width: auto;
  height: auto;
  min-height: 52px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gallery-grid span {
  background: linear-gradient(135deg, rgba(31, 138, 104, 0.18), rgba(47, 159, 179, 0.14));
}

.mini-line-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 78px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(21, 95, 73, 0.08);
}

.mini-line-chart span {
  flex: 1;
  width: auto;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--teal), var(--green));
}

.mini-line-chart span:nth-child(1) {
  height: 42%;
}

.mini-line-chart span:nth-child(2) {
  height: 72%;
}

.mini-line-chart span:nth-child(3) {
  height: 58%;
}

.mini-line-chart span:nth-child(4) {
  height: 88%;
}

.menu-template span:nth-child(3),
.roof-template span:nth-child(3),
.b2b-template span:nth-child(3) {
  width: 58%;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.workflow-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.workflow-preview i {
  position: relative;
  display: block;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(21, 95, 73, 0.18), rgba(47, 159, 179, 0.2));
}

.workflow-preview i:not(:last-child)::after {
  position: absolute;
  right: -8px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: rgba(21, 95, 73, 0.22);
  content: "";
}

.mini-dashboard span {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(21, 95, 73, 0.13);
}

.mini-dashboard b,
.mini-dashboard small {
  display: block;
}

.mini-dashboard small {
  color: var(--muted);
  font-weight: 800;
}

.website-concept-copy {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.website-concept-copy h3 {
  margin: 0.75rem 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.12;
}

.website-concept-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.website-concept-copy a {
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
  padding: 36px 0 86px;
}

.demo-media {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 32, 29, 0.86), rgba(21, 95, 73, 0.78)),
    radial-gradient(circle at 24% 28%, rgba(225, 161, 59, 0.55), transparent 15rem);
  box-shadow: var(--shadow);
  padding: 76px 28px 28px;
}

.demo-media::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  content: "";
}

.play-button {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--green);
}

.demo-slide-stage {
  position: relative;
  z-index: 1;
  min-height: 310px;
}

.demo-slide-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(170px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.14), transparent 10rem),
    rgba(255, 255, 255, 0.06);
}

.demo-proof-pill {
  display: inline-flex;
  width: max-content;
  margin-top: 0.4rem;
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
}

.demo-preview-cta {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 38px;
  padding: 0.6rem 0.85rem;
}

.demo-slide-copy h3 {
  margin: 0.85rem 0 0.75rem;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.02;
}

.demo-slide-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.demo-slide-mock {
  display: grid;
  place-items: center;
  min-width: 0;
}

.demo-browser-mini,
.demo-offer-mini,
.demo-store-mini,
.demo-calendar-mini,
.demo-dashboard-mini,
.demo-workflow-mini,
.demo-ai-mini,
.demo-phone-mini {
  width: min(260px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.demo-site-page {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.demo-site-page strong {
  font-size: 1.45rem;
  line-height: 1.05;
}

.offer-card,
.mini-form {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(21, 95, 73, 0.1);
}

.mini-form span {
  padding: 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.demo-offer-mini,
.demo-store-mini,
.demo-calendar-mini,
.demo-dashboard-mini,
.demo-workflow-mini,
.demo-ai-mini {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 18px;
}

.demo-rich-browser {
  width: min(330px, 100%);
}

.demo-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.demo-proof-grid span {
  padding: 0.62rem;
  border-radius: 8px;
  background: rgba(21, 95, 73, 0.1);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.demo-calendar-mini .appointment-card,
.demo-dashboard-mini .task-row {
  background: rgba(255, 255, 255, 0.82);
}

.demo-offer-mini span,
.demo-store-mini span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.15);
}

.demo-offer-mini button {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.demo-store-mini {
  grid-template-columns: repeat(3, 1fr);
}

.demo-store-mini span {
  height: 88px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(225, 161, 59, 0.46), rgba(229, 107, 95, 0.28));
}

.demo-store-mini strong,
.demo-store-mini .promo-banner,
.demo-store-mini .checkout-strip {
  grid-column: 1 / -1;
}

.demo-phone-mini {
  width: 182px;
  padding: 8px;
  border: 8px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
}

.demo-phone-mini .phone-ui {
  min-height: 318px;
}

.demo-workflow-mini span {
  padding: 0.8rem;
  border-radius: 999px;
  background: rgba(21, 95, 73, 0.12);
  font-weight: 800;
  text-align: center;
}

.demo-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 18px;
}

.demo-dots {
  display: inline-flex;
  gap: 8px;
}

.demo-controls .circle-button {
  background: rgba(255, 255, 255, 0.9);
}

.thumbnail-lines {
  position: absolute;
  right: 36px;
  bottom: 42px;
  left: 36px;
  display: grid;
  gap: 10px;
}

.thumbnail-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.thumbnail-lines span:nth-child(2) {
  width: 78%;
}

.thumbnail-lines span:nth-child(3) {
  width: 56%;
}

.thumbnail-panel {
  position: absolute;
  top: 34px;
  left: 34px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.9);
}

.thumbnail-panel img {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 0.55rem;
  border-radius: 8px;
  object-fit: cover;
}

.thumbnail-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: start;
  padding: 72px 0;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.35rem;
}

.contact-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.contact-stats strong {
  display: block;
  font-size: 1.7rem;
}

.contact-stats span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

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

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 0.82rem 0.9rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(31, 138, 104, 0.14);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 430px;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 800;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero,
  .demo,
  .contact-cta,
  .showcase-heading,
  .website-concept-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .screen-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-concept-grid {
    grid-template-columns: 1fr;
  }

  .app-preview-row {
    gap: 16px;
  }

  .app-preview-card {
    flex-basis: calc((100% - 16px) / 2);
    min-height: 720px;
  }

  .demo-slide-card {
    grid-template-columns: 1fr;
  }

  .rolling-body {
    grid-template-columns: 1fr;
  }

  .screen-track,
  .rolling-browser {
    min-height: 860px;
  }

  .website-shot,
  .mobile-shot {
    grid-column: 1 / -1;
  }

  .rolling-copy strong {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .rolling-device {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-wordmark {
    display: none;
  }

  .nav-cta {
    padding-inline: 0.76rem;
  }

  .section-shell,
  .footer {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .product-browser {
    min-height: auto;
    padding: 14px;
  }

  .browser-preview,
  .website-shot-body,
  .dashboard-shot-grid,
  .screen-grid,
  .website-concept-grid,
  .website-concept-card,
  .project-grid,
  .demo-slide-card,
  .form-row,
  .contact-stats {
    grid-template-columns: 1fr;
  }

  .lane-heading,
  .demo-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .app-preview-row {
    gap: 14px;
    padding-inline: 0;
  }

  .app-preview-mask::before,
  .app-preview-mask::after {
    width: 22px;
  }

  .app-preview-card {
    flex-basis: 88vw;
    min-width: 282px;
    min-height: 700px;
    padding: 18px;
  }

  .app-phone-shell {
    width: min(210px, 82%);
  }

  .phone-ui {
    min-height: 350px;
    padding: 12px 10px;
  }

  .phone-ui strong {
    font-size: 0.98rem;
  }

  .website-concept-card {
    min-height: auto;
    padding: 14px;
  }

  .concept-browser-body {
    min-height: 300px;
    padding: 14px;
  }

  .site-nav-mini {
    gap: 0.45rem;
    font-size: 0.66rem;
  }

  .site-nav-mini span:nth-of-type(n + 3) {
    display: none;
  }

  .service-template-rich,
  .dish-grid,
  .package-row,
  .education-cards,
  .report-cards,
  .feature-cards,
  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .browser-template-hero strong,
  .roof-template strong,
  .landscape-template strong,
  .b2b-template strong,
  .consulting-template strong,
  .saas-template strong,
  .menu-template strong {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .demo-media {
    padding: 86px 16px 18px;
  }

  .demo-slide-card {
    padding: 16px;
  }

  .demo-browser-mini,
  .demo-offer-mini,
  .demo-store-mini,
  .demo-calendar-mini,
  .demo-dashboard-mini,
  .demo-ai-mini {
    width: 100%;
  }

  .demo-store-mini {
    grid-template-columns: 1fr;
  }

  .demo-slide-stage {
    min-height: 280px;
  }

  .play-button {
    right: 16px;
    top: 18px;
  }

  .screen-track,
  .rolling-browser {
    min-height: 760px;
  }

  .rolling-body {
    grid-template-columns: 1fr;
  }

  .rolling-copy strong {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .rolling-ui-stack {
    padding: 18px;
  }

  .rolling-metric {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-bottom: 14px;
  }

  .rolling-device {
    min-height: 280px;
  }

  .metric-card {
    min-height: 128px;
  }

  .project-card {
    min-height: 280px;
  }

  .phone-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(235px, 78%);
    margin: -24px auto 0;
  }

  .demo-media {
    min-height: 300px;
  }

  .contact-form {
    padding: 16px;
  }

  .footer {
    flex-direction: column;
  }
}
