:root {
  color-scheme: light;
  --bg: #f7f3ec;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #101820;
  --muted: #5f686d;
  --line: rgba(16, 24, 32, 0.14);
  --brand: #c58b35;
  --brand-dark: #865b1e;
  --teal: #0e756c;
  --blue: #2f6fed;
  --rose: #b75555;
  --shadow: 0 20px 55px rgba(16, 24, 32, 0.13);
  --radius: 8px;
  --container: 1160px;
  --font: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101820;
  --surface: #162229;
  --surface-strong: #1d2b33;
  --ink: #f8f4ea;
  --muted: #b4c0c5;
  --line: rgba(248, 244, 234, 0.16);
  --brand: #e0ad5b;
  --brand-dark: #f0cd8c;
  --teal: #60c7b7;
  --blue: #80a8ff;
  --rose: #f09a90;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header[data-elevated="true"] {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 204px;
}

.brand-logo {
  width: 204px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(16, 24, 32, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

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

.button,
.theme-toggle {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--brand);
  color: #101820;
  box-shadow: 0 12px 26px rgba(197, 139, 53, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: ">";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.button:hover,
.button:focus-visible {
  background: #f0bd62;
  box-shadow: 0 16px 32px rgba(197, 139, 53, 0.34);
  transform: translateY(-2px);
}

.button--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button--secondary {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: none;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.theme-toggle__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset -5px -3px 0 color-mix(in srgb, currentColor 45%, transparent);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.68) 42%, rgba(16, 24, 32, 0.18)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.6), rgba(16, 24, 32, 0.08) 44%);
}

.hero__content {
  width: min(var(--container), calc(100% - 40px));
  align-self: end;
  margin: 0 auto;
  padding: 150px 0 62px;
  color: #fff;
}

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

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

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.28;
}

.hero__lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.hero__stats {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero__stats div {
  padding: 16px 18px;
  background: rgba(16, 24, 32, 0.24);
}

.hero__stats dt {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.hero__stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
}

.insight-strip p {
  margin: 0;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: color-mix(in srgb, var(--surface) 86%, transparent);
  font-weight: 700;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

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

.section__header {
  max-width: 790px;
  margin-bottom: 38px;
}

.section__header p:not(.eyebrow),
.showcase__copy p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  min-height: 258px;
  padding: 24px;
}

.service-card__index {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--teal);
  font-weight: 900;
}

.service-card p,
.plan-card li,
.timeline p,
.capability-list span {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.commerce-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.browser-bar span:nth-child(2) {
  background: var(--brand);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.browser-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.storefront {
  padding: 18px;
}

.storefront__hero {
  display: flex;
  min-height: 290px;
  align-items: end;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.78), rgba(16, 24, 32, 0.12)),
    url("./assets/storefront-preview.png") center/cover;
  color: #fff;
}

.storefront__hero div {
  max-width: 390px;
  padding: 28px;
}

.storefront__hero small {
  color: #f0bd62;
  font-weight: 900;
  text-transform: uppercase;
}

.storefront__hero h3 {
  margin: 8px 0 16px;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.storefront__hero button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #101820;
  cursor: pointer;
  font-weight: 900;
  padding: 8px 16px;
}

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

.storefront__products div {
  min-height: 128px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 88%, var(--brand) 12%);
}

.storefront__products span {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  opacity: 0.86;
}

.storefront__products strong,
.storefront__products em {
  display: block;
}

.storefront__products em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.section--bands {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  background: var(--surface);
}

.capability-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.capability-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list strong {
  color: var(--brand-dark);
  font-size: 1.12rem;
}

.deliverables {
  width: min(1280px, calc(100% - 40px));
}

.deliverables__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
}

.deliverables__image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.deliverable-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.deliverable-card__icon,
.plan-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 18%, transparent), transparent 52%),
    var(--surface-strong);
}

.deliverable-card__icon {
  width: 66px;
  height: 66px;
  margin-bottom: 38px;
}

.deliverable-card__icon::before,
.deliverable-card__icon::after,
.plan-visual::before,
.plan-visual::after {
  position: absolute;
  content: "";
}

.deliverable-card__icon--site::before {
  inset: 14px 12px;
  border: 2px solid var(--teal);
  border-radius: 6px;
}

.deliverable-card__icon--site::after {
  right: 18px;
  bottom: 16px;
  left: 18px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.deliverable-card__icon--mobile::before {
  inset: 10px 21px;
  border: 2px solid var(--blue);
  border-radius: 10px;
}

.deliverable-card__icon--mobile::after {
  right: 27px;
  bottom: 14px;
  left: 27px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.deliverable-card__icon--ops::before {
  width: 30px;
  height: 30px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  left: 14px;
  top: 14px;
}

.deliverable-card__icon--ops::after {
  width: 26px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  left: 28px;
  top: 30px;
  transform: rotate(-35deg);
}

.deliverable-card__icon--guide::before {
  inset: 14px 17px;
  border: 2px solid var(--rose);
  border-radius: 4px;
}

.deliverable-card__icon--guide::after {
  left: 25px;
  right: 25px;
  top: 25px;
  height: 20px;
  border-top: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
}

.deliverable-card h3 {
  margin-bottom: 10px;
}

.deliverable-card p {
  margin: 0;
  color: var(--muted);
}

.demo-gallery {
  width: min(1280px, calc(100% - 40px));
}

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

.demo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 24, 32, 0.08);
}

.demo-card__media {
  display: block;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
}

.demo-browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
}

.demo-browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.demo-browser-bar i:nth-child(2) {
  background: var(--brand);
}

.demo-browser-bar i:nth-child(3) {
  background: var(--teal);
}

.demo-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}

.demo-card:hover .demo-card__media img {
  transform: scale(1.025);
}

.demo-card__body {
  display: grid;
  gap: 10px;
  padding: 24px;
  align-content: start;
}

.demo-card__tag {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-card__body h3 {
  margin-bottom: 0;
}

.demo-card__body p:not(.demo-card__tag) {
  margin: 0 0 8px;
  color: var(--muted);
}

.demo-card__body .button {
  justify-self: start;
  margin-top: 4px;
}

.demo-gallery__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.plans {
  width: min(var(--container), calc(100% - 40px));
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.plan-visual {
  height: 94px;
  margin-bottom: 20px;
}

.plan-visual--onepage::before {
  inset: 14px 72px 14px 20px;
  border: 2px solid var(--teal);
  border-radius: 12px;
}

.plan-visual--onepage::after {
  top: 26px;
  right: 24px;
  width: 36px;
  height: 42px;
  border-top: 7px solid var(--brand);
  border-bottom: 7px solid var(--brand);
}

.plan-visual--starter::before {
  left: 20px;
  top: 22px;
  width: 48px;
  height: 42px;
  border: 2px solid var(--brand);
  border-radius: 0 0 12px 12px;
}

.plan-visual--starter::after {
  left: 31px;
  top: 14px;
  width: 26px;
  height: 22px;
  border: 2px solid var(--brand);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  box-shadow: 62px 20px 0 -8px var(--teal), 108px 20px 0 -8px var(--blue);
}

.plan-visual--growth::before {
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 38px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: skewX(-18deg);
}

.plan-visual--growth::after {
  right: 24px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-top: 4px solid var(--brand);
  border-right: 4px solid var(--brand);
  transform: rotate(45deg);
}

.plan-visual--custom::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  left: 28px;
  top: 35px;
  box-shadow: 66px -18px 0 var(--teal), 118px 18px 0 var(--blue);
}

.plan-visual--custom::after {
  left: 49px;
  top: 44px;
  width: 126px;
  height: 28px;
  border-top: 2px solid color-mix(in srgb, var(--ink) 46%, transparent);
  border-right: 2px solid color-mix(in srgb, var(--ink) 46%, transparent);
  transform: skewY(-18deg);
}

.plan-card--featured {
  border-color: color-mix(in srgb, var(--brand) 72%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 78%, var(--brand) 22%), var(--surface));
  box-shadow: var(--shadow);
  transform: translateY(-16px);
}

.plan-card__label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--teal) 13%, transparent);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
}

.plan-card__price {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.1;
}

.plan-detail {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.plan-detail strong {
  color: var(--brand-dark);
  font-size: 0.88rem;
}

.plan-detail p,
.plan-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.plan-card__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.plan-card .button {
  margin-top: auto;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.timeline::before {
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--teal), var(--blue));
  content: "";
  opacity: 0.45;
}

.timeline li {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid color-mix(in srgb, var(--brand) 50%, var(--line));
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--brand-dark);
  font-weight: 900;
}

.contact {
  display: grid;
  max-width: 900px;
  justify-items: start;
}

.line-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, #06c755 42%, var(--line));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, #06c755 12%, transparent), transparent 52%),
    var(--surface);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.08);
}

.line-card__label {
  margin-bottom: 8px;
  color: #06a846;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.line-card h3 {
  margin-bottom: 10px;
}

.line-card p:not(.line-card__label) {
  margin-bottom: 18px;
}

.line-card img {
  width: 156px;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.12);
}

.button--line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 199, 85, 0.22);
}

.button--line:hover,
.button--line:focus-visible {
  background: #05b14c;
  box-shadow: 0 16px 32px rgba(6, 199, 85, 0.26);
}

.button:focus-visible,
.theme-toggle:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 42%, transparent);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .plan-card--featured {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    background: var(--surface);
    color: var(--ink);
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 90px;
  }

  .insight-strip,
  .showcase,
  .deliverables__layout,
  .line-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .deliverable-grid,
  .demo-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .plan-card--featured {
    transform: none;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 158px;
    height: auto;
  }

  .theme-toggle,
  .header-actions .button::after {
    display: none;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 8px 11px;
    white-space: nowrap;
  }

  .hero__content,
  .section,
  .demo-gallery,
  .plans {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .hero__stats,
  .service-grid,
  .deliverable-grid,
  .demo-grid,
  .storefront__products,
  .timeline,
  .capability-list div {
    grid-template-columns: 1fr;
  }

  .deliverables__image {
    min-height: 300px;
  }

  .line-card img {
    width: min(220px, 100%);
  }

  .insight-strip p {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .storefront__hero {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
