:root {
  --bg: #f6f7f2;
  --bg-alt: #e8efe3;
  --bg-strong: #10241d;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --surface-muted: #e6ece1;
  --ink: #17231d;
  --muted: #657168;
  --line: rgba(23, 35, 29, 0.14);
  --line-strong: rgba(23, 35, 29, 0.22);
  --accent: #d76135;
  --accent-dark: #8d351f;
  --sage: #a9b88f;
  --mint: #d8ead1;
  --gold: #d7a84a;
  --shadow: 0 20px 52px rgba(17, 31, 25, 0.12);
  --shadow-soft: 0 12px 30px rgba(17, 31, 25, 0.09);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: min(1120px, calc(100% - 32px));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    linear-gradient(135deg, rgba(216, 234, 209, 0.38), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 48%, #edf2e8 100%);
}

body.nav-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--bg-strong);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

main section[id] {
  scroll-margin-top: 92px;
}

.section-tight {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  color: #fffaf1;
  font-weight: 800;
  background: var(--bg-strong);
  box-shadow: 0 12px 32px rgba(16, 36, 29, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.78rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(16, 36, 29, 0.08);
  transform: translateY(-1px);
}

.site-nav .nav-button {
  color: #fffaf1;
  background: var(--bg-strong);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: clamp(1.35rem, 2.4vw, 2rem);
  padding-bottom: clamp(1.8rem, 2.8vw, 2.5rem);
}

.hero-grid,
.split-layout,
.case-hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.4rem, 3vw, 2.25rem);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(540px, 580px);
  align-items: start;
}

.hero-copy {
  position: relative;
  padding-top: 0.35rem;
}

.hero-right {
  display: grid;
  gap: 0.7rem;
  align-self: start;
}

.hero .eyebrow {
  margin-bottom: 0.75rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.06;
  overflow-wrap: break-word;
}

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

.hero h1 {
  max-width: 20ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 3.95vw, 3.95rem);
  letter-spacing: 0;
}

.case-hero h1,
.saas-hero h1 {
  max-width: 17ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.case-hero h1,
.saas-hero h1 {
  max-width: 17ch;
}

.saas-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  letter-spacing: 0;
}

.hero-text {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero .hero-text {
  max-width: 62ch;
  margin-top: 0;
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-actions,
.contact-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero .hero-actions {
  gap: 0.65rem;
  margin-top: 1rem;
}

.hero .button {
  min-height: 2.85rem;
  padding: 0.76rem 1rem;
  white-space: nowrap;
}

.hero .contact-strip {
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.hero .contact-strip li {
  padding: 0.58rem 0.78rem;
}

.hero-side-panel {
  display: grid;
  gap: 0.6rem;
}

.hero-side-panel .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  margin-top: 0;
}

.hero-side-panel .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 2.55rem;
  padding: 0.62rem 0.58rem;
  font-size: 0.9rem;
}

.hero-side-panel .contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0;
}

.hero-side-panel .contact-strip li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.88rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

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

.button-primary {
  color: #fffaf1;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(215, 97, 53, 0.24);
}

.button-secondary {
  color: #fffaf1;
  background: var(--bg-strong);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.72);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.contact-strip li {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.66);
}

.hero-card,
.text-card,
.skill-group,
.service-card,
.project-card,
.contact-panel,
.case-card,
.checklist-card,
.mini-card,
.comparison-card,
.pricing-card,
.step-card,
.dashboard-card,
.metric-panel,
.product-summary,
.before-after-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card,
.metric-panel,
.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
    var(--bg-strong);
}

.hero-card {
  align-self: center;
  padding: clamp(0.95rem, 1.45vw, 1.15rem);
}

.hero-card::before,
.metric-panel::before,
.dashboard-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -64px;
  top: -58px;
  border-radius: 999px;
  background: rgba(216, 234, 209, 0.18);
}

.hero-card h2 {
  position: relative;
  max-width: 18ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: 0;
}

.card-kicker,
.metric-label {
  position: relative;
  color: var(--mint);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card .card-kicker {
  margin-bottom: 0.45rem;
}

.focus-list {
  display: grid;
  gap: 0.5rem;
}

.focus-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.62rem;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.08);
}

.focus-list span,
.service-number,
.project-topline span,
.step-card span {
  color: var(--accent);
  font-weight: 800;
}

.focus-list p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.42;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: 0;
}

.text-card,
.skill-group,
.project-card,
.case-card,
.checklist-card,
.mini-card,
.comparison-card,
.pricing-card,
.step-card,
.before-after-card,
.product-summary {
  background: var(--surface-soft);
}

.text-card,
.case-card,
.checklist-card,
.mini-card,
.comparison-card,
.pricing-card,
.step-card,
.before-after-card {
  padding: 1.35rem;
}

.text-card p,
.service-card p,
.contact-panel p,
.project-card p,
.project-card dd,
.case-card p,
.case-card li,
.checklist-card li,
.mini-card p,
.pricing-card li,
.step-card p,
.product-description,
.accordion-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.text-card p:last-child,
.service-card p:last-child,
.case-card p:last-child,
.mini-card p:last-child,
.step-card p:last-child {
  margin-bottom: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.skills-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skill-group {
  padding: 1.25rem;
}

.skill-group h3,
.service-card h3,
.project-card h3,
.case-card h2,
.checklist-card h2,
.mini-card h3,
.pricing-card h3,
.step-card h3,
.before-after-card h2 {
  margin-bottom: 1rem;
}

.skill-group ul,
.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.skill-group li,
.check-list li {
  position: relative;
  padding-left: 1.05rem;
}

.skill-group li {
  color: var(--muted);
  line-height: 1.55;
}

.skill-group li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.services-section {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(215, 97, 53, 0.18), transparent 32%),
    var(--bg-strong);
}

.services-section .eyebrow {
  color: var(--mint);
}

.services-grid,
.projects-grid,
.benefit-grid,
.steps-grid,
.pricing-grid,
.checklist-grid,
.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

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

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

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

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

.services-grid,
.projects-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.service-card {
  min-height: 100%;
  padding: 1.35rem;
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.16);
  box-shadow: none;
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 241, 0.12);
}

.service-card p {
  color: rgba(255, 250, 241, 0.76);
}

.service-list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.15rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.62;
}

.service-list li::marker {
  color: var(--mint);
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.25rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.project-card:hover,
.project-card:focus-within,
.pricing-card:hover,
.pricing-card:focus-within,
.step-card:hover,
.step-card:focus-within,
.proof-card:hover,
.proof-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 42px rgba(17, 31, 25, 0.13);
}

.pricing-card,
.step-card,
.proof-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.project-card-featured {
  background:
    linear-gradient(145deg, rgba(216, 234, 209, 0.42), rgba(255, 250, 241, 0.86)),
    var(--surface);
  border-color: rgba(215, 97, 53, 0.22);
}

.project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.project-topline span {
  white-space: nowrap;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.48rem;
  margin-top: 0;
}

.project-summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.project-summary-list div {
  display: grid;
  gap: 0.22rem;
}

.project-summary-list dt {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-summary-list dd {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.project-tags span {
  padding: 0.42rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.64);
}

.project-card .card-actions {
  margin-top: auto;
  padding-top: 0.2rem;
}

.project-card .card-actions .button {
  flex: 1 1 0;
  min-width: max-content;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  color: #fffaf1;
  background:
    radial-gradient(circle at 8% 18%, rgba(216, 234, 209, 0.22), transparent 30%),
    var(--bg-strong);
}

.contact-panel .eyebrow {
  color: var(--mint);
}

.contact-panel p {
  max-width: 68ch;
  margin: 1rem 0 0;
  color: rgba(255, 250, 241, 0.76);
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.contact-list li {
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(255, 250, 241, 0.08);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-actions .button-ghost {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.08);
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-wrap p {
  margin: 0;
}

.footer-wrap a,
.back-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.cv-section {
  padding-top: 4rem;
}

.cv-heading {
  max-width: 880px;
  margin-bottom: 2rem;
}

.cv-heading h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: 0;
}

.cv-viewer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.cv-viewer object {
  display: block;
  width: 100%;
  min-height: min(82vh, 920px);
  border: 0;
  background: #fff;
}

.cv-viewer p {
  padding: 1.25rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cv-viewer a {
  color: var(--accent-dark);
  font-weight: 800;
}

.case-hero {
  padding-top: 4.5rem;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: start;
}

.case-card h2,
.checklist-card h2,
.comparison-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0;
}

.card-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-panel {
  min-height: 320px;
}

.metric-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.metric-list strong {
  padding: 1rem;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.08);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.6);
}

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

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row span {
  padding: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.comparison-row span + span {
  border-left: 1px solid var(--line);
}

.comparison-head span {
  color: var(--ink);
  font-weight: 800;
  background: rgba(216, 234, 209, 0.45);
}

.saas-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.saas-proof-list li {
  padding: 0.62rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 250, 241, 0.62);
}

.solution-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.solution-mini-grid span {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 800;
  background: rgba(216, 234, 209, 0.36);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.product-media {
  display: grid;
  order: 1;
  gap: 1rem;
}

.product-main-image {
  --mockup-body: #5e7658;
  --mockup-panel: #435f43;
  --mockup-pocket: #2f4735;
  --mockup-strap: #263d30;
  --mockup-trim: #13251e;
  --mockup-rivet: #d7a84a;
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.product-main-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(255, 250, 241, 0.42), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.16) 0 1px, transparent 1px 22px);
}

.product-main-image[data-product-tone="sand"] {
  --mockup-body: #c7834d;
  --mockup-panel: #a86439;
  --mockup-pocket: #85512f;
  --mockup-strap: #6c442c;
  --mockup-trim: #4d2f20;
  --mockup-rivet: #f0d3a1;
}

.product-main-image[data-product-tone="charcoal"] {
  --mockup-body: #39443f;
  --mockup-panel: #27312d;
  --mockup-pocket: #18221e;
  --mockup-strap: #111a17;
  --mockup-trim: #0d1512;
  --mockup-rivet: #d4d1c9;
}

.product-main-image span {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: start;
  max-width: 18rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: #fffaf1;
  font-weight: 800;
  background: rgba(16, 36, 29, 0.78);
  backdrop-filter: blur(10px);
}

.product-mockup {
  position: absolute;
  inset: 1.75rem;
  z-index: 1;
  display: grid;
  place-items: center;
}

.pack-illustration {
  width: min(76%, 380px);
  max-height: 86%;
  overflow: visible;
  filter: drop-shadow(0 34px 34px rgba(16, 36, 29, 0.28));
}

.pack-shadow {
  fill: rgba(16, 36, 29, 0.2);
}

.pack-body {
  fill: var(--mockup-body);
}

.pack-panel {
  fill: var(--mockup-panel);
}

.pack-pocket {
  fill: var(--mockup-pocket);
}

.pack-lid {
  fill: var(--mockup-body);
}

.pack-highlight {
  fill: url(#packHighlight);
}

.pack-strap {
  fill: var(--mockup-strap);
}

.pack-handle {
  fill: none;
  stroke: var(--mockup-trim);
  stroke-width: 10;
}

.pack-zip {
  fill: none;
  stroke: var(--mockup-trim);
  stroke-linecap: round;
  stroke-width: 8;
  opacity: 0.45;
}

.pack-rivet {
  fill: var(--mockup-rivet);
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.thumbnail {
  min-height: 92px;
  padding: 0.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.thumbnail.is-active {
  border-color: var(--accent);
}

.thumb-swatch {
  display: block;
  height: 100%;
  min-height: 74px;
  border-radius: 16px;
}

.thumb-forest {
  background: linear-gradient(135deg, #f3e5d1, #8aa078);
}

.thumb-sand {
  background: linear-gradient(135deg, #f1d7a9, #c7834d);
}

.thumb-charcoal {
  background: linear-gradient(135deg, #d4d1c9, #27312d);
}

.product-summary {
  position: sticky;
  order: 2;
  top: 96px;
  padding: 1.5rem;
}

.product-label,
.field-label {
  color: var(--accent-dark);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-summary h1 {
  margin: 0.7rem 0 0.7rem;
  font-size: 3rem;
  letter-spacing: 0;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.product-price {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 800;
}

.variant-group,
.quantity-row {
  margin-top: 1.35rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-button,
.quantity-control button {
  border: 1px solid var(--line);
  cursor: pointer;
  background: rgba(255, 250, 241, 0.72);
}

.variant-button {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.variant-button.is-selected {
  color: #fffaf1;
  border-color: var(--bg-strong);
  background: var(--bg-strong);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 54px 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  min-height: 44px;
  place-items: center;
}

.quantity-control button {
  border: 0;
  font-weight: 900;
}

.purchase-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.product-cart-button,
.product-buy-button {
  width: 100%;
}

.product-cart-button {
  min-height: 3.7rem;
  border-color: rgba(141, 53, 31, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.16), transparent 40%),
    var(--accent);
  box-shadow: 0 20px 44px rgba(215, 97, 53, 0.34);
  font-size: 1.02rem;
}

.product-cart-button:hover,
.product-cart-button:focus-visible {
  box-shadow: 0 24px 54px rgba(215, 97, 53, 0.42);
}

.product-buy-button {
  min-height: 3.35rem;
  border-color: rgba(16, 36, 29, 0.2);
  box-shadow: 0 14px 32px rgba(16, 36, 29, 0.16);
}

.cart-feedback {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.trust-grid span {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(255, 250, 241, 0.58);
}

.trust-grid span::before {
  content: "";
  flex: 0 0 auto;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
}

.trust-grid span:first-child::before {
  background: #3f7f4c;
}

.comparison-mini {
  display: grid;
  gap: 0.6rem;
}

.comparison-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-wrap {
  max-width: 880px;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.1rem;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  background: transparent;
}

.accordion-item button::after {
  content: "+";
  font-size: 1.4rem;
}

.accordion-item button[aria-expanded="true"]::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 0 1.1rem 1.1rem;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.mobile-cart-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  color: #fffaf1;
  background: rgba(16, 36, 29, 0.94);
  box-shadow: var(--shadow);
}

.mobile-cart-bar span {
  padding-left: 0.35rem;
  font-weight: 800;
}

.mobile-cart-bar .button {
  min-height: 2.6rem;
  padding: 0.7rem 0.9rem;
}

.dashboard-card {
  min-height: 380px;
}

.dashboard-card > * {
  position: relative;
}

.dashboard-topbar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  height: 52px;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.12);
}

.dashboard-topbar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.52);
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.dashboard-stat-grid span,
.dashboard-line {
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.08);
}

.dashboard-stat-grid span {
  padding: 1rem;
  color: rgba(255, 250, 241, 0.78);
}

.dashboard-stat-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fffaf1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.dashboard-ticket-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.dashboard-ticket-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 18px;
  color: rgba(255, 250, 241, 0.76);
  background: rgba(255, 250, 241, 0.08);
}

.dashboard-ticket-list strong {
  flex: 0 0 auto;
  color: var(--mint);
  font-size: 0.82rem;
}

.dashboard-chart {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  min-height: 110px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.08);
}

.dashboard-chart span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--accent), rgba(216, 234, 209, 0.72));
}

.dashboard-line {
  height: 26px;
  margin-top: 0.8rem;
}

.dashboard-line.wide {
  width: 100%;
}

.dashboard-line.short {
  width: 64%;
}

.price {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 1rem;
}

.pricing-card-featured {
  background:
    linear-gradient(145deg, rgba(216, 234, 209, 0.72), rgba(255, 250, 241, 0.9)),
    var(--surface);
  border-color: rgba(215, 97, 53, 0.34);
}

.pricing-card .button {
  align-self: end;
}

.saas-plan-feedback {
  margin-top: 1rem;
}

.plan-badge {
  justify-self: start;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--accent);
}

.testimonial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(215, 97, 53, 0.22), transparent 38%),
    var(--bg-strong);
  box-shadow: var(--shadow);
}

.testimonial-panel .eyebrow {
  color: var(--mint);
}

.testimonial-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

.testimonial-panel blockquote {
  margin: 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  grid-column: 2;
}

.testimonial-meta span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.86rem;
  background: rgba(255, 250, 241, 0.08);
}

.content-demo {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.content-demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(215, 97, 53, 0.24), transparent 42%),
    var(--bg-strong);
}

.content-demo-hero h2 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
}

.content-demo-hero p {
  max-width: 58ch;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.7;
}

.demo-kicker {
  margin-bottom: 0.75rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.demo-actions .button-ghost {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.08);
}

.demo-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  min-height: 300px;
}

.demo-product-card {
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.28), transparent 46%),
    #a9b88f;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.demo-product-card.tall {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.34), transparent 48%),
    var(--accent);
}

.demo-product-card.dark {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.24), transparent 46%),
    #33443d;
}

.demo-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.demo-trust-strip span,
.demo-category-grid article,
.demo-products article,
.demo-editorial {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.68);
}

.demo-trust-strip span {
  padding: 0.85rem;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.demo-category-grid,
.demo-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.demo-category-grid article,
.demo-products article,
.demo-editorial {
  padding: 1.1rem;
}

.demo-category-grid span {
  color: var(--accent);
  font-weight: 900;
}

.demo-category-grid h3,
.demo-products h3,
.demo-editorial h3 {
  margin: 0.45rem 0 0.55rem;
}

.demo-category-grid p,
.demo-products p,
.demo-editorial p {
  color: var(--muted);
  line-height: 1.65;
}

.demo-products article {
  display: grid;
  gap: 0.6rem;
}

.demo-products strong {
  color: var(--ink);
  font-size: 1.4rem;
}

.demo-products .button {
  align-self: end;
}

.demo-product-thumb {
  min-height: 150px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.36), transparent 48%),
    #8aa078;
}

.demo-product-thumb.thumb-b {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.36), transparent 48%),
    #d7a84a;
}

.demo-product-thumb.thumb-c {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.28), transparent 48%),
    #39443f;
}

.demo-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

a:focus-visible,
button:focus-visible,
.thumbnail:focus-visible {
  outline: 3px solid rgba(215, 97, 53, 0.52);
  outline-offset: 3px;
}

.button {
  white-space: nowrap;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.hero-proof-list li,
.scope-note,
.service-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-proof-list li {
  padding: 0.55rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
}

.project-card {
  gap: 1rem;
  padding: 1.2rem;
}

.project-card h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
  line-height: 1.22;
}

.project-preview {
  position: relative;
  display: grid;
  min-height: 214px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(216, 234, 209, 0.58), rgba(255, 255, 255, 0.78)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  gap: 0.75rem;
}

.project-preview *,
.project-card * {
  min-width: 0;
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(16, 36, 29, 0.025) 0 1px, transparent 1px 20px);
}

.project-preview > * {
  position: relative;
}

.mock-browser-bar {
  display: flex;
  gap: 0.32rem;
  align-items: center;
  height: 1.28rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.88);
}

.mock-browser-bar span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.82rem;
  align-items: stretch;
  min-height: 158px;
  margin-top: 0;
}

.mock-product-image,
.mock-product-info,
.mock-card-grid span,
.mock-pricing-row b,
.mock-feature-row i,
.mock-service-cards span,
.mock-checklist-card,
.mock-status-row i,
.mock-category-row span,
.mock-content-split i,
.mock-content-split b {
  border: 1px solid rgba(16, 36, 29, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
}

.mock-product-image {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 48%),
    #8aa078;
}

.mock-product-image::before,
.mock-product-image::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.18);
}

.mock-product-image::before {
  width: 54%;
  height: 54%;
  left: 23%;
  top: 18%;
  border-radius: 18px 18px 26px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 52%),
    rgba(16, 36, 29, 0.24);
}

.mock-product-image::after {
  width: 42%;
  height: 0.5rem;
  left: 29%;
  bottom: 1.2rem;
}

.mock-product-info {
  display: grid;
  gap: 0.52rem;
  align-content: start;
  padding: 0.82rem;
  min-width: 0;
}

.mock-product-title,
.mock-product-price {
  min-width: 0;
  line-height: 1.1;
}

.mock-product-title {
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-product-price {
  justify-self: start;
  padding: 0.28rem 0.46rem;
  border-radius: 999px;
  color: #fffaf1;
  font-size: 0.7rem;
  font-weight: 900;
  background: var(--accent);
}

.mock-copy-lines {
  display: grid;
  gap: 0.34rem;
  margin: 0.04rem 0;
}

.mock-copy-lines span {
  display: block;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.14);
}

.mock-copy-lines span:last-child {
  width: 72%;
}

.mock-variants,
.mock-trust,
.mock-badges,
.mock-feature-row,
.mock-pricing-row,
.mock-service-cards,
.mock-status-row,
.mock-category-row,
.mock-content-split {
  display: grid;
  gap: 0.5rem;
}

.mock-variants,
.mock-trust,
.mock-badges,
.mock-feature-row,
.mock-pricing-row,
.mock-service-cards,
.mock-status-row,
.mock-category-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mock-variants span {
  min-width: 0;
  height: 1.34rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1.34rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  background: rgba(16, 36, 29, 0.1);
}

.mock-cta,
.mock-mobile-cta,
.mock-waitlist,
.mock-service-cta,
.mock-content-cta,
.mock-announcement,
.mock-accordion-line {
  height: 1.7rem;
  border-radius: 999px;
  background: var(--accent);
}

.mock-cta {
  display: grid;
  height: 1.86rem;
  place-items: center;
  color: #fffaf1;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(215, 97, 53, 0.18);
}

.mock-trust span {
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.18);
}

.preview-theme,
.preview-saas,
.preview-service,
.preview-checklist,
.preview-content {
  align-content: start;
  gap: 0.68rem;
}

.mock-announcement {
  height: 1.35rem;
  background: var(--bg-strong);
}

.mock-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.mock-card-grid span {
  min-height: 72px;
}

.mock-badges i {
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.12);
}

.mock-accordion-line {
  width: 78%;
  height: 1.2rem;
  background: rgba(16, 36, 29, 0.14);
}

.mock-mobile-cta {
  justify-self: end;
  width: 58%;
  height: 1.45rem;
}

.mock-saas-hero {
  display: grid;
  gap: 0.45rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--bg-strong);
}

.mock-saas-hero span,
.mock-saas-hero strong,
.mock-saas-hero em {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.mock-saas-hero strong {
  width: 78%;
  height: 0.82rem;
  background: var(--mint);
}

.mock-saas-hero em {
  width: 42%;
  background: var(--accent);
}

.mock-feature-row i {
  height: 2.7rem;
}

.mock-pricing-row b {
  height: 3.4rem;
}

.mock-waitlist {
  width: 64%;
  height: 1.45rem;
}

.mock-service-hero,
.mock-review-block,
.mock-content-hero {
  border-radius: var(--radius-sm);
  background: var(--bg-strong);
}

.mock-service-hero,
.mock-content-hero {
  height: 3.7rem;
}

.mock-service-cards span,
.mock-category-row span {
  height: 3.2rem;
}

.mock-review-block {
  height: 2.3rem;
  background: rgba(16, 36, 29, 0.78);
}

.mock-service-cta,
.mock-content-cta {
  width: 54%;
  height: 1.45rem;
}

.mock-checklist-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
}

.mock-checklist-card span {
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.18);
}

.mock-checklist-card span:nth-child(2),
.mock-checklist-card span:nth-child(4) {
  width: 78%;
}

.mock-status-row i {
  height: 2.3rem;
}

.mock-content-split {
  grid-template-columns: 0.8fr 1.2fr;
}

.mock-content-split i,
.mock-content-split b {
  height: 3.2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.service-tags span {
  padding: 0.42rem 0.55rem;
  color: rgba(255, 250, 241, 0.82);
  border-color: rgba(255, 250, 241, 0.16);
  background: rgba(255, 250, 241, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.proof-card h3 {
  margin: 1rem 0 0.6rem;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.proof-visual {
  display: grid;
  gap: 0.55rem;
  min-height: 140px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

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

.proof-before-after span,
.proof-responsive span,
.proof-checks span {
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 46%),
    var(--sage);
}

.proof-before-after span:first-child {
  opacity: 0.55;
}

.proof-responsive {
  grid-template-columns: 1.2fr 0.8fr 0.5fr;
  align-items: end;
}

.proof-responsive span:nth-child(1) {
  height: 94px;
}

.proof-responsive span:nth-child(2) {
  height: 74px;
}

.proof-responsive span:nth-child(3) {
  height: 104px;
  background: var(--bg-strong);
}

.proof-checks span {
  height: 1rem;
  border-radius: 999px;
  background: rgba(16, 36, 29, 0.18);
}

.proof-checks span:nth-child(2),
.proof-checks span:nth-child(4) {
  width: 76%;
}

.scope-note {
  align-self: end;
  justify-self: start;
  padding: 0.48rem 0.62rem;
  color: var(--accent-dark);
  background: rgba(215, 97, 53, 0.08);
}

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

.theme-demo,
.service-demo {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.theme-announcement {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  color: #fffaf1;
  font-weight: 800;
  background: var(--bg-strong);
}

.theme-announcement a {
  color: var(--mint);
}

.theme-hero-band,
.service-demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.44fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(215, 97, 53, 0.2), transparent 40%),
    var(--bg-strong);
}

.theme-hero-band h2,
.service-demo-hero h2 {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.theme-hero-band p,
.service-demo-hero p {
  max-width: 62ch;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.7;
}

.theme-mini-device,
.service-demo-panel {
  display: grid;
  gap: 0.8rem;
  min-height: 220px;
  align-content: end;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.1);
}

.theme-mini-device span {
  display: block;
  min-height: 96px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.28), transparent 46%),
    var(--sage);
}

.theme-mini-device strong,
.theme-mini-device em,
.service-demo-panel span,
.service-demo-panel strong,
.service-demo-panel em {
  display: block;
  font-style: normal;
}

.theme-mini-device em,
.service-demo-panel em {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: #fffaf1;
  font-weight: 800;
  text-align: center;
  background: var(--accent);
}

.theme-product-grid,
.service-demo-grid,
.service-why-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-why-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-product-grid article,
.service-demo-grid article,
.service-why-row article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
}

.theme-product-grid h3,
.service-demo-grid h3,
.service-why-row h3 {
  margin: 0.7rem 0 0.45rem;
}

.theme-product-grid p,
.service-demo-grid p,
.service-why-row p {
  color: var(--muted);
  line-height: 1.65;
}

.theme-product-thumb {
  min-height: 138px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 48%),
    #8aa078;
}

.theme-product-b {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 48%),
    var(--gold);
}

.theme-product-c {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 48%),
    #39443f;
}

.theme-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.theme-trust-row span {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
}

.theme-faq,
.service-faq {
  margin-top: 0.2rem;
}

.service-demo-panel {
  min-height: 210px;
}

.service-demo-panel span {
  justify-self: start;
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  color: var(--mint);
  font-weight: 800;
}

.service-demo-panel strong {
  color: #fffaf1;
  font-size: 1.4rem;
  line-height: 1.2;
}

.service-demo-grid span {
  color: var(--accent);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1020px) {
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .projects-grid,
  .benefit-grid,
  .steps-grid,
  .pricing-grid,
  .checklist-grid,
  .proof-grid,
  .product-info-grid,
  .content-demo-hero,
  .case-grid,
  .contact-panel,
  .hero-grid,
  .case-hero-grid,
  .two-column,
  .product-layout,
  .theme-hero-band,
  .service-demo-hero {
    grid-template-columns: 1fr;
  }

  .projects-grid-four,
  .projects-grid-six,
  .collaboration-grid,
  .skills-grid-four,
  .services-grid-wide,
  .process-grid,
  .theme-product-grid,
  .service-demo-grid,
  .theme-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .product-summary {
    position: static;
  }

  .testimonial-panel {
    grid-template-columns: 1fr;
  }

  .testimonial-meta {
    grid-column: auto;
  }

  .demo-trust-strip,
  .demo-category-grid,
  .demo-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .section {
    padding: 3.75rem 0;
  }

  .section-tight {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 0.25rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem;
    border-radius: 16px;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.05rem, 8.4vw, 3.2rem);
    letter-spacing: 0;
    text-wrap: balance;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.12;
  }

  .hero .hero-text {
    max-width: 34ch;
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .case-hero h1,
  .saas-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 10vw, 4rem);
    letter-spacing: 0;
  }

  .saas-hero h1,
  .cv-heading h1 {
    max-width: 16ch;
    font-size: clamp(2.35rem, 9vw, 3.6rem);
  }

  .hero-card h2 {
    font-size: clamp(1.65rem, 6.2vw, 2.25rem);
  }

  .hero-right {
    gap: 0.85rem;
  }

  .product-main-image {
    min-height: 420px;
  }

  .cv-viewer object {
    min-height: 72vh;
  }

  .product-summary h1 {
    font-size: 2.5rem;
  }

  .product-mockup {
    inset: 1.25rem;
  }

  .mobile-cart-bar {
    display: flex;
  }

  body.has-mobile-cart .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1120px);
  }

  .brand small {
    display: none;
  }

  .skills-grid,
  .services-grid,
  .projects-grid,
  .benefit-grid,
  .saas-feature-grid,
  .steps-grid,
  .proof-grid,
  .pricing-grid,
  .checklist-grid,
  .projects-grid-four,
  .projects-grid-six,
  .collaboration-grid,
  .skills-grid-four,
  .services-grid-wide,
  .process-grid,
  .theme-product-grid,
  .service-demo-grid,
  .theme-trust-row,
  .demo-trust-strip,
  .demo-category-grid,
  .demo-products,
  .thumbnail-row,
  .trust-grid,
  .dashboard-stat-grid,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .card-actions {
    display: grid;
  }

  .hero-side-panel .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-side-panel {
    padding: 0;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 0.94rem;
  }

  .content-demo {
    padding: 0.75rem;
  }

  .content-demo-hero {
    padding: 1rem;
  }

  .content-demo-hero h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .demo-actions {
    display: grid;
  }

  .demo-visual {
    min-height: 220px;
  }

  .theme-demo,
  .service-demo {
    padding: 0.75rem;
  }

  .theme-hero-band,
  .service-demo-hero {
    padding: 1rem;
  }

  .theme-hero-band h2,
  .service-demo-hero h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .project-preview {
    min-height: 220px;
    padding: 0.85rem;
  }

  .preview-product {
    min-height: 350px;
  }

  .mock-product-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mock-product-image {
    min-height: 124px;
  }

  .mock-product-info {
    gap: 0.5rem;
  }

  .mock-variants span {
    font-size: 0.52rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .dashboard-card {
    min-height: 0;
    padding: 1.1rem;
  }

  .dashboard-ticket-list div,
  .dashboard-stat-grid span {
    padding: 0.8rem;
  }

  .cv-section {
    padding-top: 2.75rem;
  }

  .cv-viewer {
    border-radius: var(--radius-md);
  }

  .cv-viewer object {
    min-height: 68vh;
  }

  .product-main-image {
    min-height: 340px;
  }

  .product-summary h1 {
    font-size: 2.15rem;
  }

  .product-main-image span {
    max-width: 15rem;
    font-size: 0.86rem;
  }

  .pack-illustration {
    width: min(82%, 300px);
  }

  .mobile-cart-bar {
    border-radius: 24px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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