:root {
  --orange: #18c4af;
  --orange-dark: #238fc8;
  --orange-soft: #e9fbf8;
  --ink: #14232a;
  --muted: #617078;
  --line: #dfe9e9;
  --cream: #f7fbfb;
  --white: #fff;
  --dark: #13282e;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 32px rgba(63, 39, 24, 0.08);
  --shadow-lg: 0 28px 80px rgba(63, 39, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
textarea {
  font-family: "Noto Sans SC", sans-serif;
}

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

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

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 116px 0;
}

.section--compact {
  padding: 24px 0 88px;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.page-glow--one {
  top: 90px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 114, 65, 0.14), rgba(255, 114, 65, 0));
}

.page-glow--two {
  top: 620px;
  left: -240px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(241, 186, 68, 0.1), rgba(241, 186, 68, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 220, 211, 0.76);
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #ff6d42, #ec3b19);
  box-shadow: 0 10px 22px rgba(245, 83, 45, 0.24);
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 5px;
  bottom: 10px;
  border-radius: 3px 3px 1px 1px;
  background: #fff;
  transform: rotate(34deg);
  transform-origin: bottom;
}

.brand-mark span:nth-child(1) {
  height: 12px;
  left: 12px;
}

.brand-mark span:nth-child(2) {
  height: 20px;
  left: 20px;
}

.brand-mark span:nth-child(3) {
  height: 29px;
  left: 28px;
}

.brand-mark--small {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.brand-mark--small span {
  width: 3px;
  bottom: 7px;
}

.brand-mark--small span:nth-child(1) {
  height: 8px;
  left: 9px;
}

.brand-mark--small span:nth-child(2) {
  height: 14px;
  left: 15px;
}

.brand-mark--small span:nth-child(3) {
  height: 20px;
  left: 21px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a,
.text-link {
  color: #524b45;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(245, 83, 45, 0.2);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 16px 36px rgba(245, 83, 45, 0.27);
}

.button--small {
  min-height: 42px;
  padding: 0 21px;
  font-size: 13px;
}

.button--large {
  min-height: 54px;
  padding: 0 27px;
}

.button--large svg {
  width: 19px;
  margin-left: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: #d8ccc1;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button--light {
  border-color: #fff;
  color: var(--orange-dark);
  background: #fff;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  padding-top: 80px;
  padding-bottom: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.91fr 1.09fr;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245, 83, 45, 0.1);
}

.hero h1 {
  margin: 24px 0 24px;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.12;
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  color: var(--orange);
}

.hero h1 .hero-line {
  white-space: nowrap;
}

.hero h1 .hero-line--ink {
  margin-top: 0;
  color: var(--ink);
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 35px;
  height: 35px;
  margin-left: -7px;
  place-items: center;
  border: 3px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--orange);
}

.avatar-stack span:nth-child(2) {
  background: #d89b3c;
}

.avatar-stack span:nth-child(3) {
  background: #6d564a;
}

.stars {
  color: #ee9b2e;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-trust p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 24px 0 46px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 32px;
  background: #ddd;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.1deg);
}

.hero-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 16, 11, 0.22));
  content: "";
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  min-height: 435px;
  object-fit: cover;
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-width: 250px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #fff;
  background: rgba(24, 20, 17, 0.72);
  backdrop-filter: blur(14px);
}

.status-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
}

.status-icon svg {
  width: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.4;
}

.hero-status div {
  display: flex;
  flex-direction: column;
}

.hero-status strong {
  font-size: 13px;
}

.hero-status small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.status-check {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: #3bbf79;
  font-size: 12px;
}

.prompt-float {
  position: absolute;
  z-index: 3;
  left: -38px;
  bottom: 0;
  width: min(420px, 72%);
  padding: 16px;
  border: 1px solid rgba(229, 218, 208, 0.86);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.prompt-top,
.prompt-bottom {
  display: flex;
  align-items: center;
}

.prompt-top {
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.prompt-badge {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-weight: 700;
}

.prompt-float p {
  margin: 13px 0;
  font-size: 12px;
  line-height: 1.7;
}

.prompt-bottom {
  gap: 6px;
}

.prompt-bottom > span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 9px;
}

.prompt-bottom button {
  display: grid;
  width: 29px;
  height: 29px;
  margin-left: auto;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--orange);
}

.prompt-bottom svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-metric {
  position: absolute;
  top: 0;
  right: -18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 13px 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: rotate(3deg);
}

.hero-metric strong {
  font: 800 24px/1 "Manrope", sans-serif;
}

.hero-metric span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.client-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.client-strip .container {
  display: flex;
  gap: 38px;
  align-items: center;
}

.client-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.client-list {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: #3c3631;
  font-size: 14px;
  font-weight: 700;
}

.client-list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c7bbb0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.result-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px;
  text-align: center;
}

.result-grid article + article::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.result-grid strong {
  font: 800 27px/1 "Manrope", "Noto Sans SC", sans-serif;
}

.result-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.comparison-section {
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.comparison-section::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 83, 45, 0.26), transparent 64%);
  content: "";
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.3vw, 56px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.heading-side p,
.heading-copy {
  margin: 0;
  color: #bcb2aa;
  font-size: 15px;
  line-height: 1.9;
}

.comparison-tabs {
  display: flex;
  gap: 8px;
  margin-top: 23px;
}

.comparison-tabs button {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.comparison-tabs button.is-active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}

.comparison-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #3a332f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.comparison-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.comparison-stage.is-changing img {
  opacity: 0.25;
}

.comparison-label {
  position: absolute;
  top: 22px;
  display: flex;
  flex-direction: column;
  padding: 11px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(21, 17, 14, 0.72);
  backdrop-filter: blur(12px);
}

.comparison-label--before {
  left: 22px;
}

.comparison-label--after {
  right: 22px;
  align-items: flex-end;
  background: rgba(230, 63, 29, 0.86);
}

.comparison-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-label strong {
  margin-top: 4px;
  font-size: 13px;
}

.comparison-center {
  position: absolute;
  inset: 0 50% 0 auto;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(50%);
}

.comparison-center span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: var(--orange);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.comparison-center svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.comparison-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.12);
}

.comparison-benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 24px 30px;
  background: var(--dark);
}

.benefit-number {
  grid-row: 1 / 3;
  color: var(--orange);
  font: 800 14px/1 "Manrope", sans-serif;
}

.comparison-benefits strong {
  font-size: 15px;
}

.comparison-benefits p {
  margin: 7px 0 0;
  color: #9e938b;
  font-size: 12px;
}

.studio-section {
  background: #f5f0ea;
}

.section-heading--center {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading--center p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.studio-shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid #e5dcd3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(61, 42, 29, 0.13);
}

.studio-sidebar {
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  border-right: 1px solid #eee7df;
  background: #fbfaf8;
}

.studio-logo {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 7px 24px;
  font-size: 13px;
}

.sidebar-item {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  color: #6f6761;
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.sidebar-item svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sidebar-item.is-active {
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-weight: 700;
}

.sidebar-space {
  flex: 1;
}

.team-card {
  padding: 14px;
  border-radius: 14px;
  background: #231c18;
}

.team-card strong {
  color: #fff;
  font-size: 12px;
}

.team-card p {
  margin: 7px 0 12px;
  color: #a89e97;
  font-size: 9px;
  line-height: 1.6;
}

.team-card a {
  color: #ff8968;
  font-size: 9px;
  font-weight: 700;
}

.studio-workspace {
  min-width: 0;
}

.workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee7df;
}

.workspace-head div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.workspace-head span {
  color: #9a918a;
  font-size: 10px;
}

.workspace-head strong {
  padding-left: 8px;
  border-left: 1px solid #ddd4cc;
  font-size: 13px;
}

.demo-tag {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted) !important;
  background: #faf8f6;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 562px;
}

.control-panel {
  padding: 23px;
  border-right: 1px solid #eee7df;
}

.control-panel > label,
.control-panel legend {
  margin-bottom: 9px;
  color: #524b45;
  font-size: 11px;
  font-weight: 700;
}

.prompt-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5ddd5;
  border-radius: 12px;
  background: #fff;
}

.prompt-box:focus-within {
  border-color: rgba(245, 83, 45, 0.6);
  box-shadow: 0 0 0 3px rgba(245, 83, 45, 0.08);
}

.prompt-box textarea {
  width: 100%;
  min-height: 100px;
  resize: none;
  border: 0;
  outline: 0;
  padding: 13px 13px 28px;
  color: #342e2a;
  background: transparent;
  font-size: 11px;
  line-height: 1.7;
}

.prompt-box > span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #afa69e;
  font-size: 9px;
}

.control-panel fieldset {
  min-width: 0;
  margin: 19px 0 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: flex;
  gap: 6px;
}

.choice {
  flex: 1;
  min-height: 36px;
  padding: 0 5px;
  border: 1px solid #e6ded6;
  border-radius: 9px;
  color: #786f68;
  background: #fff;
  font-size: 9px;
  cursor: pointer;
}

.choice.is-active {
  border-color: rgba(245, 83, 45, 0.36);
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-weight: 700;
}

.select-like {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  padding: 0 11px;
  border: 1px solid #e6ded6;
  border-radius: 9px;
  color: #5f5751;
  background: #fff;
  font-size: 10px;
}

.select-like svg {
  width: 15px;
  fill: none;
  stroke: #91877f;
  stroke-width: 1.7;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.generate-button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #fb633c, #e84120);
  box-shadow: 0 12px 24px rgba(245, 83, 45, 0.2);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.generate-button small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  font-weight: 500;
}

.generate-button.is-loading {
  pointer-events: none;
}

.generate-icon {
  font-size: 16px;
}

.preview-panel {
  display: flex;
  min-width: 0;
  padding: 18px;
  flex-direction: column;
  background: #f6f3ef;
}

.preview-top,
.preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-top {
  padding: 1px 2px 13px;
  color: #625a54;
  font-size: 10px;
  font-weight: 700;
}

.preview-top div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.preview-top button {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #ddd5cd;
  border-radius: 6px;
  color: #756c65;
  background: #fff;
}

.preview-canvas {
  position: relative;
  display: grid;
  flex: 1;
  min-height: 400px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(45deg, #e7e1da 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(-45deg, #e7e1da 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(45deg, transparent 75%, #e7e1da 75%) 0 0 / 18px 18px,
    linear-gradient(-45deg, transparent 75%, #e7e1da 75%) 0 0 / 18px 18px,
    #eee9e3;
}

.preview-canvas img {
  width: calc(100% - 34px);
  border: 7px solid #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(51, 35, 25, 0.15);
}

.preview-chip {
  position: absolute;
  bottom: 24px;
  left: 50%;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 19, 16, 0.76);
  font-size: 9px;
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.generation-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(28, 21, 17, 0.82);
  backdrop-filter: blur(9px);
}

.generation-overlay.is-visible {
  display: flex;
}

.generation-overlay strong {
  margin-top: 14px;
  font-size: 13px;
}

.generation-overlay small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.loader {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.preview-actions {
  gap: 7px;
  padding-top: 13px;
}

.preview-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #ddd5cd;
  border-radius: 8px;
  color: #625a54;
  background: #fff;
  font-size: 9px;
}

.preview-actions .download-button {
  margin-left: auto;
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.solutions-section {
  background: #fff;
}

.solutions-section .heading-side,
.solutions-section .heading-copy {
  align-self: end;
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbf9f6;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.solution-card--featured {
  grid-row: span 2;
  min-height: 578px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 90%, rgba(245, 83, 45, 0.42), transparent 36%),
    #211915;
}

.solution-card--featured::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 170px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 80px 80px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(255, 255, 255, 0.05) 36px);
  content: "";
  transform: perspective(500px) rotateY(-10deg);
}

.solution-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: var(--orange-soft);
}

.solution-card--featured .solution-icon {
  color: #fff;
  background: var(--orange);
}

.solution-icon svg,
.workflow-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.solution-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #ff9a7c;
  background: rgba(245, 83, 45, 0.13);
  font-size: 9px;
  font-weight: 700;
}

.solution-card h3 {
  margin: 24px 0 12px;
  font-size: 23px;
}

.solution-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.solution-card--featured p {
  color: #afa39b;
}

.solution-card ul {
  position: relative;
  z-index: 2;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  margin-top: 13px;
  color: #e0d8d2;
  font-size: 12px;
}

.solution-card li::before {
  margin-right: 9px;
  color: var(--orange);
  content: "✓";
}

.solution-card a {
  position: absolute;
  bottom: 27px;
  left: 28px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
}

.cases-section {
  background: #f5f0ea;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.case-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  background: #d7d0ca;
}

.case-card--skin {
  margin-top: 50px;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover img {
  transform: scale(1.035);
}

.case-card::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(21, 15, 12, 0.85));
  content: "";
}

.case-overlay {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 25px;
  left: 24px;
  color: #fff;
}

.case-overlay > span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.case-overlay h3 {
  margin: 14px 0 6px;
  font-size: 22px;
}

.case-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.workflow-section {
  background: #fff;
}

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

.workflow-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfaf8;
}

.workflow-grid article > span {
  position: absolute;
  top: 15px;
  right: 22px;
  color: #eee8e2;
  font: 800 55px/1 "Manrope", sans-serif;
}

.workflow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: var(--orange-soft);
}

.workflow-grid h3 {
  margin: 42px 0 11px;
  font-size: 19px;
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.partner-section {
  padding-top: 20px;
  background: #fff;
}

.partner-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  overflow: hidden;
  padding: 70px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(245, 83, 45, 0.42), transparent 38%),
    radial-gradient(circle at 100% 0, rgba(232, 150, 59, 0.2), transparent 34%),
    #201814;
}

.partner-card::after {
  position: absolute;
  top: -40px;
  right: 30%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.eyebrow--light {
  color: #ff9b7f;
}

.partner-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 4vw, 55px);
  letter-spacing: -0.05em;
  line-height: 1.18;
}

.partner-copy p {
  max-width: 540px;
  margin: 0;
  color: #b3a8a0;
  font-size: 14px;
  line-height: 1.9;
}

.partner-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.partner-link {
  color: #ff9a7d;
  font-size: 13px;
  font-weight: 700;
}

.partner-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-content: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.partner-points span {
  display: grid;
  grid-row: 1 / 3;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
}

.partner-points strong {
  font-size: 12px;
}

.partner-points small {
  margin-top: 5px;
  color: #9f948c;
  font-size: 9px;
  line-height: 1.5;
}

.final-cta {
  padding: 126px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 80%, rgba(245, 83, 45, 0.1), transparent 36%),
    var(--cream);
}

.final-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #ff6d42, #ec3b19);
  box-shadow: 0 15px 30px rgba(245, 83, 45, 0.24);
  font-size: 25px;
  font-weight: 900;
}

.final-cta h2 {
  margin: 0;
  font-size: 50px;
  letter-spacing: 0.08em;
}

.final-slogan {
  margin: 10px 0 0;
  color: var(--orange);
  font-size: 23px;
  font-weight: 800;
}

.final-copy {
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

footer {
  padding: 70px 0 25px;
  color: #d8d0ca;
  background: #181310;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.brand--footer .brand-copy strong {
  color: #fff;
}

.brand--footer .brand-copy small {
  color: #8f847c;
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: #7f756e;
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-grid > div > a {
  color: #847a73;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-grid > div > a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #665e58;
  font-size: 10px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .prompt-float {
    left: -10px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .studio-shell {
    grid-template-columns: 1fr;
  }

  .studio-sidebar {
    display: none;
  }

  .workspace-grid {
    grid-template-columns: 300px 1fr;
  }

  .partner-card {
    gap: 40px;
    padding: 56px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 34px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .text-link {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
  }

  .menu-button span + span {
    margin-top: -12px;
  }

  .mobile-nav {
    position: absolute;
    right: 17px;
    left: 17px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 12px;
    border-radius: 9px;
    font-size: 13px;
  }

  .mobile-nav a:hover {
    background: var(--orange-soft);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .section-heading--split,
  .partner-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(43px, 10vw, 62px);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .hero-image-card img {
    min-height: 380px;
  }

  .client-strip .container {
    flex-direction: column;
    gap: 18px;
  }

  .client-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .result-grid article:nth-child(3)::before {
    display: none;
  }

  .result-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading--split {
    gap: 24px;
  }

  .comparison-tabs {
    flex-wrap: wrap;
  }

  .comparison-benefits,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .comparison-benefits {
    gap: 0;
    background: transparent;
  }

  .comparison-benefits > div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .control-panel {
    border-right: 0;
    border-bottom: 1px solid #eee7df;
  }

  .preview-canvas {
    min-height: 360px;
  }

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

  .solution-card--featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 430px;
  }

  .case-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .case-card--skin {
    margin-top: 0;
  }

  .case-card--store {
    grid-column: span 2;
    min-height: 400px;
  }

  .partner-card {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .nav-actions .button--small {
    min-height: 38px;
    padding: 0 15px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 42px;
    letter-spacing: -0.06em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }

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

  .hero-image-card {
    border-width: 5px;
    border-radius: 22px;
  }

  .hero-image-card img {
    min-height: 300px;
  }

  .hero-status {
    right: 12px;
    bottom: 12px;
    min-width: 215px;
  }

  .prompt-float {
    position: relative;
    left: 0;
    width: calc(100% - 24px);
    margin: -20px auto 0;
  }

  .hero-metric {
    top: 3px;
    right: -5px;
  }

  .client-list i {
    display: none;
  }

  .client-list {
    gap: 8px;
  }

  .client-list span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
  }

  .result-grid strong {
    font-size: 22px;
  }

  .result-grid article {
    padding: 22px 10px;
  }

  .section-heading h2 {
    font-size: 37px;
  }

  .comparison-stage {
    border-radius: 18px;
  }

  .comparison-stage img {
    aspect-ratio: 1 / 1;
  }

  .comparison-label {
    top: 10px;
    padding: 7px 9px;
  }

  .comparison-label--before {
    left: 10px;
  }

  .comparison-label--after {
    right: 10px;
  }

  .comparison-label strong {
    display: none;
  }

  .comparison-center span {
    width: 38px;
    height: 38px;
  }

  .studio-shell {
    border-radius: 17px;
  }

  .workspace-head {
    padding: 14px 16px;
  }

  .control-panel {
    padding: 17px;
  }

  .choice-row {
    flex-wrap: wrap;
  }

  .choice {
    flex: 1 1 30%;
  }

  .preview-panel {
    padding: 12px;
  }

  .preview-canvas {
    min-height: 300px;
  }

  .preview-actions button:not(.download-button) {
    display: none;
  }

  .solution-grid,
  .case-gallery,
  .partner-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solution-card--featured,
  .case-card--store {
    grid-column: auto;
  }

  .solution-card--featured {
    min-height: 480px;
  }

  .case-card {
    min-height: 440px;
  }

  .case-card--store {
    min-height: 440px;
  }

  .partner-card {
    padding: 36px 25px;
    border-radius: 24px;
  }

  .partner-copy h2 {
    font-size: 39px;
  }

  .partner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-link {
    text-align: center;
  }

  .final-cta {
    padding: 90px 0;
  }

  .final-cta h2 {
    font-size: 42px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-grid > div:not(.footer-brand) {
    display: none;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Multi-page company site additions */

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 24px rgba(27, 153, 168, 0.14);
}

.desktop-nav a.is-active {
  color: var(--orange-dark);
}

.desktop-nav a.is-active::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto 0;
  border-radius: 2px;
  background: var(--orange);
  content: "";
}

.hero-trust {
  display: inline-flex;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-trust strong {
  color: var(--orange-dark);
  font-size: 13px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 12px;
}

.inline-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.named-comparison .storefront-name {
  position: absolute;
  z-index: 4;
  top: 29%;
  width: 33%;
  padding: 10px 12px;
  text-align: center;
  pointer-events: none;
}

.storefront-name--before {
  left: 8.5%;
  color: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  background: rgba(41, 45, 45, 0.52);
  font-size: 13px;
}

.storefront-name--after {
  right: 8.5%;
  display: flex;
  flex-direction: column;
  color: #fff8d7;
  text-shadow: 0 2px 8px rgba(87, 16, 7, 0.74);
}

.storefront-name--after strong {
  font-size: clamp(16px, 2vw, 29px);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.storefront-name--after small {
  margin-top: 5px;
  color: #ffe9bc;
  font-size: clamp(7px, 0.8vw, 11px);
  letter-spacing: 0.16em;
}

.comparison-center span {
  font-size: 22px;
  font-weight: 900;
}

.design-value-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(35, 143, 200, 0.09), transparent 30%),
    #fff;
}

.design-value-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.design-value-copy h2 {
  margin: 17px 0 23px;
  font-size: clamp(35px, 4.2vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.25;
}

.design-value-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.design-value-copy blockquote {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  color: #31515a;
  background: var(--orange-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.value-path {
  display: grid;
  gap: 12px;
}

.value-path article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  transition: transform 0.2s ease;
}

.value-path article:hover {
  transform: translateX(6px);
}

.value-path article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  font: 800 12px/1 "Manrope", sans-serif;
}

.value-path strong {
  font-size: 16px;
}

.value-path p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-link-card {
  position: relative;
  min-height: 290px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease;
}

.service-link-card:hover {
  transform: translateY(-5px);
}

.service-link-card > span {
  color: #d7e5e5;
  font: 800 54px/1 "Manrope", sans-serif;
}

.service-link-card h3 {
  margin: 33px 0 12px;
  font-size: 22px;
}

.service-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.service-link-card b {
  position: absolute;
  bottom: 27px;
  left: 29px;
  color: var(--orange-dark);
  font-size: 12px;
}

.knowledge-preview {
  background: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-grid--full {
  row-gap: 32px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card-body {
  padding: 22px;
}

.article-card-body > span,
.article-category {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.article-card h2,
.article-card h3 {
  margin: 12px 0 10px;
  font-size: 18px;
  line-height: 1.5;
}

.article-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card small {
  display: block;
  margin-top: 18px;
  color: #91a0a4;
  font-size: 10px;
}

.article-card--empty {
  grid-column: 1 / -1;
}

.final-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 22px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 15px 32px rgba(29, 151, 167, 0.18);
}

.inner-hero {
  padding: 100px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(24, 196, 175, 0.12), transparent 30%),
    var(--cream);
}

.inner-hero--dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(24, 196, 175, 0.24), transparent 34%),
    var(--dark);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.inner-hero-grid h1,
.inner-hero-simple h1,
.about-hero h1 {
  margin: 20px 0;
  font-size: clamp(43px, 5vw, 66px);
  letter-spacing: -0.065em;
  line-height: 1.18;
}

.inner-hero h1 span {
  color: var(--orange);
}

.inner-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.inner-hero--dark p {
  color: #a9b8b9;
}

.inner-hero-grid > img {
  width: 100%;
  max-height: 460px;
  border: 7px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.inner-hero-simple {
  max-width: 920px;
  text-align: center;
}

.inner-hero-simple .eyebrow {
  justify-content: center;
}

.inner-hero-simple p {
  margin-inline: auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.detail-grid article > span {
  color: var(--orange);
  font: 800 13px/1 "Manrope", sans-serif;
}

.detail-grid h2 {
  margin: 20px 0 12px;
  font-size: 25px;
}

.detail-grid p,
.detail-grid li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.detail-grid a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.narrow {
  max-width: 840px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.storefront-case-list {
  display: grid;
  gap: 34px;
}

.storefront-detail-card {
  display: grid;
  grid-template-columns: 1.38fr 0.62fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.storefront-image-wrap {
  position: relative;
  min-height: 420px;
}

.storefront-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-image-wrap .storefront-name--after {
  position: absolute;
  top: 29%;
  right: 8.5%;
  width: 34%;
  text-align: center;
}

.sign-spec {
  padding: 34px;
}

.sign-spec > span,
.case-study > div > span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.sign-spec h2 {
  margin: 14px 0;
  font-size: 27px;
}

.sign-spec > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.sign-spec dl {
  margin: 24px 0 0;
}

.sign-spec dl > div {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.sign-spec dt {
  color: #8a999d;
}

.sign-spec dd {
  margin: 0;
  color: #344c53;
  font-weight: 600;
}

.process-band {
  background: #fff;
}

.process-band .workflow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-detail-list {
  display: grid;
  gap: 80px;
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.case-study--reverse img {
  order: 2;
}

.case-study img {
  width: 100%;
  max-height: 570px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.case-study h2 {
  margin: 14px 0 22px;
  font-size: 35px;
}

.case-study p {
  margin: 13px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-grid article {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.pricing-grid article.is-featured {
  color: #fff;
  background: var(--dark);
  transform: translateY(-16px);
}

.pricing-grid article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.pricing-grid h2 {
  margin: 20px 0 10px;
  font-size: 28px;
}

.pricing-grid p,
.pricing-grid li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.pricing-grid .is-featured p,
.pricing-grid .is-featured li {
  color: #a9b7b8;
}

.pricing-grid ul {
  min-height: 160px;
  padding-left: 20px;
}

.pricing-grid .button {
  width: 100%;
}

.contact-placeholder {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-placeholder strong {
  font-size: 18px;
}

.contact-placeholder p {
  margin: 12px 0 0;
  color: #a9b7b8;
  font-size: 13px;
}

.about-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero > img {
  width: 220px;
  border-radius: 45px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.prose-page {
  font-size: 15px;
  line-height: 2;
}

.prose-page h2 {
  margin: 48px 0 15px;
  font-size: 28px;
}

.prose-page p,
.prose-page li {
  color: var(--muted);
}

.prose-page blockquote {
  margin: 28px 0;
  padding: 25px 28px;
  border-left: 5px solid var(--orange);
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-size: 23px;
  font-weight: 900;
}

.content-search {
  display: flex;
  max-width: 650px;
  margin: 34px auto 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.content-search input {
  flex: 1;
  min-width: 0;
  padding: 0 17px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.content-search button {
  min-height: 43px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
}

.search-result-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.search-result-note a {
  color: var(--orange-dark);
  font-weight: 700;
}

.empty-state {
  padding: 60px 20px;
  border: 1px dashed #cbdadb;
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.empty-state p {
  color: var(--muted);
}

.article-page {
  padding-bottom: 110px;
}

.article-hero {
  padding: 80px 0 50px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(24, 196, 175, 0.12), transparent 34%),
    var(--cream);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 35px;
  color: #8b999d;
  font-size: 11px;
}

.breadcrumb b {
  color: var(--orange-dark);
}

.article-hero h1 {
  margin: 18px 0;
  font-size: clamp(37px, 5vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.article-excerpt {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  color: #8b999d;
  font-size: 10px;
}

.article-cover {
  width: 100%;
  max-height: 520px;
  margin: 48px 0;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.answer-summary {
  margin-bottom: 36px;
  padding: 24px 26px;
  border: 1px solid rgba(24, 196, 175, 0.26);
  border-radius: 16px;
  background: var(--orange-soft);
}

.answer-summary strong {
  color: var(--orange-dark);
}

.answer-summary p {
  margin: 8px 0 0;
  color: #46636a;
  line-height: 1.85;
}

.article-content {
  color: #344c53;
  font-size: 16px;
  line-height: 2;
}

.article-content h2 {
  margin: 52px 0 15px;
  color: var(--ink);
  font-size: 29px;
}

.article-content h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 21px;
}

.article-content p {
  margin: 17px 0;
}

.article-content li {
  margin: 8px 0;
}

.article-content a {
  color: var(--orange-dark);
  text-decoration: underline;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 45px;
}

.article-keywords strong {
  font-size: 12px;
}

.article-keywords a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-size: 10px;
}

.article-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 45px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.article-author img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: contain;
}

.article-author p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Admin */

.admin-body {
  min-height: 100vh;
  background: #f1f6f6;
}

.login-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100vh;
}

.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  flex-direction: column;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 20% 80%, rgba(24, 196, 175, 0.4), transparent 36%),
    var(--dark);
}

.login-brand img {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  object-fit: contain;
  background: #fff;
}

.login-brand h1 {
  margin: 24px 0 7px;
  font-size: 44px;
  letter-spacing: 0.12em;
}

.login-brand p {
  margin: 0;
  color: #70ded2;
  font-size: 20px;
  font-weight: 800;
}

.login-brand small {
  margin-top: 35px;
  color: #8ca0a3;
}

.login-card {
  width: min(460px, calc(100% - 48px));
  margin: auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.admin-kicker {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.login-card h2,
.admin-title-row h1,
.editor-head h1 {
  margin: 12px 0;
  font-size: 32px;
}

.login-card > p,
.admin-title-row p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.login-card form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.login-card label,
.article-editor label {
  display: grid;
  gap: 8px;
  color: #4d6368;
  font-size: 12px;
  font-weight: 700;
}

.login-card input,
.article-editor input,
.article-editor textarea,
.article-editor select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fff;
}

.login-card input:focus,
.article-editor input:focus,
.article-editor textarea:focus,
.article-editor select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(24, 196, 175, 0.1);
}

.login-card .button {
  width: 100%;
  min-height: 48px;
  border-radius: 11px;
}

.back-site {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1260px) / 2));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.admin-brand {
  display: flex;
  gap: 11px;
  align-items: center;
}

.admin-brand img {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  object-fit: contain;
}

.admin-brand span {
  display: flex;
  flex-direction: column;
}

.admin-brand strong {
  font-size: 14px;
}

.admin-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.admin-header nav {
  display: flex;
  gap: 22px;
}

.admin-header nav a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.admin-main {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0 90px;
}

.admin-title-row,
.editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-title-row .button {
  padding: 0 23px;
  min-height: 45px;
}

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

.admin-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-entry-grid > a {
  display: grid;
  gap: 9px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: 0.2s ease;
}

.admin-entry-grid > a:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 196, 175, 0.55);
  box-shadow: var(--shadow);
}

.admin-entry-grid span,
.admin-entry-grid b {
  color: var(--orange-dark);
  font-size: 10px;
}

.admin-entry-grid strong {
  font-size: 18px;
}

.admin-entry-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.admin-stats article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.admin-stats strong {
  display: block;
  font: 800 27px/1 "Manrope", sans-serif;
}

.admin-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.admin-listing-rule {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: -8px 0 24px;
  padding: 13px 16px;
  border: 1px solid #cbece7;
  border-radius: 12px;
  color: #356b66;
  background: #eaf8f6;
  font-size: 10px;
  line-height: 1.6;
}

.admin-listing-rule strong {
  flex: 0 0 auto;
  color: #087c6e;
}

.admin-panel,
.admin-guide {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.admin-panel-head h2,
.admin-guide h2 {
  margin: 0;
  font-size: 17px;
}

.admin-panel-head span {
  color: var(--muted);
  font-size: 10px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #edf2f2;
  font-size: 11px;
  text-align: left;
}

.admin-table th {
  color: #89979a;
  background: #fbfdfd;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  margin-top: 4px;
  color: #9aa6a9;
}

.admin-table td:last-child {
  display: flex;
  gap: 11px;
  align-items: center;
}

.admin-table td a,
.admin-table td button {
  border: 0;
  color: var(--orange-dark);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.status-pill {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
}

.status-pill--published {
  color: #087c6e;
  background: #dcf8f3;
}

.status-pill--draft {
  color: #8a6b23;
  background: #fff4d5;
}

.admin-empty {
  margin: 24px;
}

.admin-guide {
  margin-top: 24px;
  padding: 25px;
}

.admin-guide-intro {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.admin-guide > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.admin-guide > div > a {
  display: grid;
  gap: 8px;
  padding: 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f4f9f9;
  transition: 0.2s ease;
}

.admin-guide > div > a:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 196, 175, 0.45);
  background: #eefaf8;
}

.admin-guide strong {
  font-size: 12px;
}

.admin-guide p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.admin-guide b {
  color: var(--orange-dark);
  font-size: 10px;
}

.admin-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 11px;
}

.admin-alert--error {
  color: #a72c2c;
  background: #ffeded;
}

.admin-alert--success {
  color: #087c6e;
  background: #dcf8f3;
}

.admin-alert--template {
  margin-bottom: 18px;
  color: #256a64;
  background: #e7f7f5;
}

.site-editor-main {
  width: min(1440px, calc(100% - 48px));
}

.site-editor-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 20px;
}

.site-page-nav {
  position: sticky;
  top: 20px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.site-page-nav > strong {
  display: block;
  padding: 10px 11px 13px;
  color: var(--muted);
  font-size: 10px;
}

.site-page-nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  padding: 0 11px;
  border-radius: 10px;
  color: #43585c;
  font-size: 11px;
  font-weight: 700;
}

.site-page-nav > a:hover,
.site-page-nav > a.is-active {
  color: #087c6e;
  background: #e9f9f6;
}

.site-page-nav > a span {
  font-size: 16px;
}

.site-editor-tip {
  margin-top: 12px;
  padding: 14px 11px;
  border-top: 1px solid var(--line);
}

.site-editor-tip strong {
  font-size: 10px;
}

.site-editor-tip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.site-content-form {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.site-field-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.site-field-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #fbfdfd;
}

.site-field-group-head h2 {
  margin: 0;
  font-size: 15px;
}

.site-field-group-head span {
  color: var(--muted);
  font-size: 9px;
}

.site-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 22px;
}

.site-text-field,
.site-image-field {
  display: grid;
  gap: 9px;
  align-content: start;
  color: #4d6368;
  font-size: 11px;
  font-weight: 700;
}

.site-text-field--wide,
.site-image-field {
  grid-column: 1 / -1;
}

.site-text-field input,
.site-text-field textarea,
.site-image-field input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.site-text-field textarea {
  resize: vertical;
  line-height: 1.75;
}

.site-text-field input:focus,
.site-text-field textarea:focus,
.site-image-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(24, 196, 175, 0.1);
}

.site-image-preview {
  overflow: hidden;
  width: min(560px, 100%);
  aspect-ratio: 16 / 8;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #eef4f4;
}

.site-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-image-field input {
  width: min(560px, 100%);
}

.site-image-field small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
}

.site-editor-actions {
  position: sticky;
  bottom: 14px;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-editor-actions .button {
  min-height: 43px;
}

.article-editor {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 22px;
}

.editor-main,
.editor-side > section {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.editor-main {
  display: grid;
  gap: 22px;
}

.editor-main label > small {
  color: var(--muted);
  font-weight: 400;
}

.article-editor textarea {
  resize: vertical;
  line-height: 1.75;
}

.content-editor {
  min-height: 680px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.editor-side {
  display: grid;
  align-content: start;
  gap: 15px;
}

.editor-side section {
  display: grid;
  gap: 16px;
}

.editor-side h2 {
  margin: 0;
  font-size: 14px;
}

.editor-side .button {
  width: 100%;
  min-height: 42px;
  border-radius: 9px;
}

.cover-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 9px;
  object-fit: cover;
}

.editor-side small,
.geo-checklist li {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.geo-checklist ul {
  margin: 0;
  padding-left: 17px;
}

@media (max-width: 900px) {
  .design-value-grid,
  .inner-hero-grid,
  .storefront-detail-card,
  .case-study,
  .login-shell,
  .article-editor {
    grid-template-columns: 1fr;
  }

  .case-study--reverse img {
    order: initial;
  }

  .service-link-grid,
  .article-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-band .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .login-brand {
    min-height: 330px;
  }

  .article-editor {
    display: block;
  }

  .editor-side {
    margin-top: 20px;
  }

  .admin-stats,
  .admin-guide > div,
  .admin-entry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-editor-layout {
    grid-template-columns: 1fr;
  }

  .site-page-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .site-page-nav > strong,
  .site-editor-tip {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .design-value-grid {
    gap: 36px;
  }

  .service-link-grid,
  .article-grid,
  .detail-grid,
  .pricing-grid,
  .process-band .workflow-grid,
  .admin-stats,
  .admin-guide > div,
  .admin-entry-grid,
  .site-field-grid,
  .site-page-nav {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding: 70px 0 60px;
  }

  .inner-hero-grid h1,
  .inner-hero-simple h1,
  .about-hero h1 {
    font-size: 39px;
  }

  .storefront-image-wrap {
    min-height: 300px;
  }

  .sign-spec {
    padding: 24px;
  }

  .about-hero {
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .about-hero > img {
    width: 100px;
    border-radius: 24px;
  }

  .content-search {
    border-radius: 16px;
  }

  .content-search button {
    padding: 0 15px;
  }

  .article-hero {
    padding-top: 60px;
  }

  .article-meta {
    gap: 8px 13px;
  }

  .login-brand {
    min-height: 260px;
    padding: 35px;
  }

  .login-brand img {
    width: 86px;
    height: 86px;
  }

  .login-brand h1 {
    font-size: 35px;
  }

  .login-card {
    margin: 25px auto;
    padding: 27px;
  }

  .admin-header {
    padding: 0 15px;
  }

  .admin-header nav a:not(:last-child) {
    display: none;
  }

  .admin-main {
    width: calc(100% - 28px);
    padding-top: 30px;
  }

  .admin-title-row,
  .editor-head {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

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

  .admin-title-actions .button {
    width: 100%;
  }

  .admin-listing-rule {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-text-field--wide,
  .site-image-field,
  .site-page-nav > strong,
  .site-editor-tip {
    grid-column: auto;
  }

  .site-editor-actions {
    flex-direction: column;
  }

  .site-editor-actions .button {
    width: 100%;
  }

  .admin-panel-head span {
    display: none;
  }
}
