/* Editorial Atelier — selected Package 3 landing direction. */

:root {
  --gold: #c79a2b;
  --gold-light: #e2c875;
  --gold-dark: #8d6816;
  --bg: #f5f0e6;
  --bg-card: #fffdf8;
  --bg-surface: #ece2d1;
  --ink: #11130f;
  --ink-soft: #34362f;
  --text: #151611;
  --text-secondary: #4d5048;
  --text-muted: #696b62;
  --border: rgba(17, 19, 15, 0.15);
  --paper: #fbf7ef;
  --cream: #efe5d4;
  --rust: #9a3f19;
  --indigo: #16263e;
  --success: #236946;
  --radius: 4px;
  --radius-sm: 2px;
  --container: 1240px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

section[id],
.inline-signup {
  scroll-margin-top: 0;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(199, 154, 43, 0.42);
  outline-offset: 3px;
}

.btn {
  min-height: 48px;
  border-radius: 2px;
  padding: 13px 26px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
  background: var(--gold);
  color: #10110d;
  box-shadow: none;
}

.btn-primary:hover {
  background: #b78920;
  color: #090a08;
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid rgba(17, 19, 15, 0.62);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold-dark);
  background: rgba(199, 154, 43, 0.08);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

/* Navigation */
.nav {
  position: fixed;
  padding: 18px 0;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid transparent;
  color: var(--ink);
}

.nav.scrolled,
.nav.menu-open {
  padding: 12px 0;
  background: rgba(251, 247, 239, 0.98) !important;
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: 1360px;
  padding: 0 clamp(20px, 3vw, 44px);
}

.nav-logo {
  gap: 8px;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
}

.nav-logo-text {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.nav-links {
  gap: clamp(22px, 2.5vw, 40px);
}

.nav-links a,
.nav-sign-in,
.nav-customer {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.nav-sign-in:hover,
.nav-customer:hover {
  color: var(--gold-dark);
}

.nav-actions {
  gap: 18px;
}

.nav-actions .btn {
  padding-inline: 24px;
}

.nav-toggle {
  min-width: 48px;
  min-height: 48px;
  padding: 12px;
}

.nav-toggle span {
  background: var(--ink);
}

.mobile-menu {
  gap: 0;
  max-height: 0;
  visibility: hidden;
  padding: 0 24px;
  background: var(--paper);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
}

.mobile-menu.open {
  visibility: visible;
  max-height: calc(100vh - 76px);
  padding: 14px 24px 28px;
  border-bottom-color: var(--border);
  opacity: 1;
  overflow-y: auto;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu > a {
  min-height: 48px;
  color: var(--ink-soft);
  border-bottom-color: var(--border);
}

.mobile-menu-actions {
  padding-top: 20px;
}

/* Region selector */
.region-btn {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-soft);
}

.region-dropdown {
  visibility: hidden;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  box-shadow: 0 18px 48px rgba(17, 19, 15, 0.14);
}

.region-dropdown.open {
  visibility: visible;
}

.region-option {
  min-height: 44px;
  color: var(--ink-soft);
  border-radius: 2px;
}

.region-option:hover,
.region-option:focus-visible {
  background: rgba(199, 154, 43, 0.1);
  color: var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  min-height: clamp(960px, 100svh, 1240px);
  align-items: stretch;
  justify-content: stretch;
  padding: 94px 0 0;
  background: var(--paper);
}

.hero-bg {
  inset: auto auto 0 0;
  width: 52%;
  height: 210px;
  opacity: 0.13;
  overflow: hidden;
}

.hero-bg-img {
  object-fit: cover;
  object-position: center;
  opacity: 1;
  mix-blend-mode: multiply;
}

.hero-overlay {
  display: none;
}

.hero-content {
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 0 0 auto;
  padding: clamp(70px, 8vw, 118px) clamp(38px, 5vw, 82px) 72px clamp(28px, 5vw, 72px);
  text-align: left;
}

.hero-kicker,
.section-eyebrow {
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(54px, 5.8vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-period {
  color: var(--gold);
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  justify-content: flex-start;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  max-width: 390px;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 34px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.hero-trust-mark {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 8% 70%);
}

.hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero-media-linework {
  position: absolute;
  left: 4%;
  bottom: 4%;
  width: min(340px, 48%);
  border: 1px solid rgba(199, 154, 43, 0.48);
  opacity: 0.68;
  mix-blend-mode: multiply;
}

/* Signup retains every production auth node while taking on the paper-card treatment. */
.inline-signup {
  width: min(100%, 560px);
  max-width: 560px;
  margin: 0;
}

.signup-form {
  border: 1px solid rgba(17, 19, 15, 0.18);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 44px rgba(38, 33, 24, 0.1);
  backdrop-filter: blur(12px);
}

.signup-fields {
  gap: 10px;
}

.signup-field {
  min-width: 0;
}

.signup-input {
  min-height: 50px;
  border: 1px solid rgba(17, 19, 15, 0.22);
  border-radius: 2px;
  background: #fffefa;
  color: var(--ink);
}

.signup-input:focus {
  border-color: var(--gold-dark);
  background: #fffefa;
  box-shadow: 0 0 0 3px rgba(199, 154, 43, 0.16);
}

.signup-input::placeholder {
  color: #74766e;
}

.signup-btn {
  border-radius: 2px;
}

.otp-input {
  font-family: "Inter", sans-serif;
}

.signup-note,
.signup-step-desc,
.loading-bridge-msg,
.loading-bridge-sub,
.loading-bridge-fallback p {
  color: var(--text-secondary);
}

.signup-step-title,
.loading-bridge-title {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
}

.signup-link {
  color: var(--gold-dark);
}

.signup-error {
  color: #9c2c2c;
  background: #fbefec;
  border-color: rgba(156, 44, 44, 0.26);
}

#resumeBanner {
  background: #f7eedb !important;
  border-color: rgba(199, 154, 43, 0.32) !important;
}

#resumeBanner > div > div:last-child {
  color: var(--text-secondary) !important;
}

.loading-bridge-progress {
  background: rgba(17, 19, 15, 0.1);
}

.loading-bridge-bar {
  background: var(--gold);
}

/* Editorial workflow */
.workflow-story {
  position: relative;
  padding: 112px clamp(24px, 4vw, 64px) 122px;
  background: var(--bg);
  border-top: 1px solid rgba(199, 154, 43, 0.45);
  overflow: hidden;
}

.workflow-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(50px, 6vw, 96px);
  max-width: 1360px;
  margin: 0 auto;
  align-items: center;
}

.editorial-rule {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
}

.workflow-intro > h2 {
  max-width: 480px;
  margin-bottom: 46px;
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.workflow-steps {
  display: grid;
  gap: 26px;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.workflow-number {
  color: var(--gold-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.workflow-steps h3 {
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.workflow-steps p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.order-preview {
  border: 1px solid rgba(17, 19, 15, 0.22);
  border-radius: 4px;
  background: #fffdf8;
  box-shadow: 0 28px 70px rgba(38, 33, 24, 0.14);
  overflow: hidden;
}

.order-preview-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 26px;
  background: var(--ink);
  color: #f7f1e6;
}

.order-preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.order-preview-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.order-preview-nav {
  display: flex;
  gap: 24px;
  color: rgba(247, 241, 230, 0.7);
  font-size: 11px;
}

.order-preview-nav .active {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 8px;
}

.order-preview-body {
  padding: clamp(24px, 3vw, 38px);
}

.order-preview-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.order-preview-label {
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.order-preview-heading h3 {
  font-size: 34px;
  font-weight: 500;
}

.order-status {
  padding: 7px 12px;
  border: 1px solid rgba(199, 154, 43, 0.35);
  background: #f8edcf;
  color: #765514;
  font-size: 12px;
  font-weight: 700;
}

.order-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px;
  gap: 24px;
}

.order-timeline {
  border: 1px solid var(--border);
}

.order-event {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}

.order-event:last-child {
  border-bottom: 0;
}

.event-marker {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(17, 19, 15, 0.32);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.order-event.complete .event-marker {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.order-event.current .event-marker {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.order-event strong,
.order-event small {
  display: block;
}

.order-event strong {
  color: var(--ink);
  font-size: 13px;
}

.order-event small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.paid-copy {
  color: var(--success) !important;
}

.order-summary {
  display: grid;
  align-content: start;
  border: 1px solid var(--border);
}

.order-summary > div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.order-summary > div:last-child {
  border-bottom: 0;
}

.order-summary span {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.order-summary strong {
  font-size: 13px;
}

.order-summary-note {
  margin-top: 8px;
  background: #f4ecde;
}

.workflow-linework {
  position: absolute;
  left: 0;
  bottom: -44px;
  width: min(540px, 45vw);
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.workshop-rhythm {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 540px;
  background: var(--cream);
  overflow: hidden;
}

.workshop-rhythm-copy {
  max-width: 640px;
  align-self: center;
  justify-self: end;
  padding: 76px clamp(40px, 6vw, 96px) 76px clamp(26px, 5vw, 72px);
}

.workshop-rhythm h2 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.workshop-rhythm p:not(.section-eyebrow) {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.workshop-rhythm-image {
  min-height: 540px;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.workshop-rhythm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

/* Existing lower product sections receive the same warm editorial system. */
.section-header {
  margin-bottom: 54px;
}

.section-tag,
.apps-badge {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-dark);
  font-family: "Inter", sans-serif;
}

.section-title,
.apps-inner h2,
.cta-inner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.features,
.pricing,
.about {
  padding: 112px 0;
}

.features-grid {
  gap: 16px;
}

.feature-card,
.pricing-card,
.about-card {
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  box-shadow: none;
}

.about-card {
  transform: translateY(20px);
}

.about-card.visible {
  transform: translateY(0);
}

.feature-card:hover,
.pricing-card:hover,
.about-card:hover {
  border-color: rgba(199, 154, 43, 0.55);
  box-shadow: 0 16px 42px rgba(38, 33, 24, 0.08);
}

.feature-card h3,
.about-card h4,
.pricing-tier {
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

.feature-card p,
.about-content p,
.about-card p,
.pricing-period,
.pricing-features li,
.apps-inner p,
.cta-inner p {
  color: var(--text-secondary);
}

.pricing-card-featured {
  border-color: var(--gold-dark);
  box-shadow: 0 20px 58px rgba(95, 67, 14, 0.1);
}

.pricing-price {
  font-family: "Playfair Display", Georgia, serif;
}

.pricing-badge {
  border-radius: 2px;
  background: var(--gold);
  color: var(--ink);
}

.pricing-features li {
  border-bottom-color: var(--border);
}

.how-it-works {
  padding: 100px 0;
  border-color: var(--border);
  background: var(--cream);
}

.step-number,
.step h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.step p {
  color: var(--text-secondary);
}

.ai-section {
  padding: 112px 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: #f6f0e5;
}

.ai-section h2,
.ai-section h3,
.ai-section h4,
.ai-section .sandbox-title {
  color: #f6f0e5;
}

.ai-section .sandbox-title {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.ai-section .section-subtitle,
.ai-section .ai-card p,
.ai-section .ai-highlights li,
.ai-section .sandbox-desc,
.ai-section .idle-state,
.ai-section .sandbox-placeholder p {
  color: rgba(246, 240, 229, 0.72);
}

.ai-section .btn-ghost,
.ai-section .btn-upload {
  border-color: rgba(246, 240, 229, 0.42);
  background: rgba(246, 240, 229, 0.04);
  color: #f6f0e5;
}

.ai-section .btn-ghost:hover,
.ai-section .btn-upload:hover {
  border-color: var(--gold-light);
  background: rgba(199, 154, 43, 0.14);
  color: #fffaf0;
}

.ai-section .sample-btn {
  border-color: rgba(255, 255, 255, 0.18);
  background: #11130f;
}

.ai-section .sample-btn span,
.ai-section .status-indicator,
.ai-section .customer-info-box h5,
.ai-section .measurements-box h5,
.ai-section .measurements-table th,
.ai-section .table-empty,
.ai-section .notes-box p {
  color: rgba(246, 240, 229, 0.72);
}

.ai-section .data-header h4,
.ai-section .info-grid,
.ai-section .notes-box,
.ai-section .measurements-table td {
  color: #f6f0e5;
}

.ai-section .status-scanning {
  color: var(--gold-light);
}

.ai-section .status-success {
  color: #55d9a2;
}

.ai-section .status-error {
  color: #ff8178;
}

.ai-card,
.ai-card-main,
.sandbox-container,
.sandbox-image-pane,
.sandbox-data-pane {
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  background: #191b17;
}

.ai-card-main {
  background: #1c1e19;
}

.sandbox-preview-box,
.data-content,
.customer-info-box,
.measurements-box {
  border-color: rgba(255, 255, 255, 0.14);
  background: #11130f;
}

.apps-coming-soon {
  padding: 90px 0;
  background: var(--cream);
}

.store-badge {
  border-color: var(--border);
  border-radius: 3px;
  background: var(--bg-card);
  color: var(--text-secondary);
}

a.store-badge-live {
  color: var(--ink);
}

.cta {
  padding: 90px 0;
  background: var(--bg);
}

.cta-inner {
  border: 0;
  border-radius: 3px;
  background: var(--indigo);
}

.cta-inner::before {
  display: none;
}

.cta-inner h2 {
  color: #fffaf0;
}

.cta-inner p {
  color: rgba(255, 250, 240, 0.72);
}

.footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: var(--ink);
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 0;
  object-fit: contain;
}

.footer-brand p,
.footer-links a,
.footer-link-button,
.footer-region {
  color: rgba(246, 240, 229, 0.7);
}

.footer-links h4 {
  color: var(--gold-light);
  font-family: "Inter", sans-serif;
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--gold-light);
}

.whatsapp-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.cookie-banner {
  border-color: rgba(255, 255, 255, 0.18);
  background: #151713;
}

.cookie-banner h4,
.cookie-banner .btn-ghost {
  color: #fff;
}

.cookie-banner p,
.cookie-banner .choice-label {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1160px) {
  .nav-links {
    gap: 20px;
  }

  .region-name {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-content {
    padding-inline: 36px;
  }

  .workflow-inner {
    grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
    gap: 42px;
  }
}

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

  .nav-actions {
    display: flex;
    margin-left: auto;
    margin-right: 2px;
  }

  .nav-actions > .nav-sign-in,
  .nav-actions > .nav-customer,
  .nav-actions > .btn {
    display: none;
  }

  .nav-toggle,
  .mobile-menu {
    display: flex;
  }

  .nav-toggle {
    flex-direction: column;
    justify-content: center;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding-top: 84px;
  }

  .hero-content {
    max-width: none;
    margin: 0;
    padding: 66px clamp(20px, 6vw, 54px) 54px;
  }

  .hero-title {
    max-width: 700px;
    font-size: clamp(48px, 9.5vw, 76px);
  }

  .hero-media {
    width: 100%;
    min-height: 560px;
    clip-path: none;
  }

  .hero-media-image {
    object-position: center 46%;
  }

  .hero-bg {
    display: none;
  }

  .workflow-story {
    padding-block: 88px;
  }

  .workflow-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .workflow-intro > h2 {
    max-width: 650px;
  }

  .order-preview {
    max-width: 760px;
  }

  .workshop-rhythm {
    grid-template-columns: 1fr;
  }

  .workshop-rhythm-copy {
    max-width: none;
    justify-self: stretch;
    padding: 72px clamp(24px, 7vw, 64px);
  }

  .workshop-rhythm-image {
    min-height: 480px;
    clip-path: none;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 10px 0;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
  }

  .nav-logo-text {
    font-size: 25px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-content {
    padding: 48px 20px 40px;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero-title {
    margin-bottom: 22px;
    font-size: clamp(43px, 14vw, 62px);
    line-height: 1;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media-linework {
    width: 46%;
  }

  .signup-form {
    padding: 18px 16px;
  }

  .sandbox-container {
    margin-top: 40px;
    padding: 30px 16px;
  }

  .sandbox-workspace,
  .sandbox-image-pane,
  .sandbox-data-pane {
    width: 100%;
    min-width: 0;
  }

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

  .sample-btn {
    min-width: 0;
  }

  .sample-btn span {
    white-space: normal;
    line-height: 1.25;
  }

  #countryField {
    flex-wrap: wrap;
  }

  #countryField .signup-input {
    min-width: 0;
    flex-basis: 100% !important;
  }

  .workflow-story {
    padding: 72px 20px 80px;
  }

  .workflow-intro > h2 {
    margin-bottom: 36px;
    font-size: 42px;
  }

  .workflow-steps li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .order-preview-bar {
    padding-inline: 16px;
  }

  .order-preview-nav {
    display: none;
  }

  .order-preview-body {
    padding: 20px 14px;
  }

  .order-preview-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-summary > div {
    border-right: 1px solid var(--border);
    border-bottom: 0;
    padding: 12px;
  }

  .order-summary > div:nth-child(3) {
    border-right: 0;
  }

  .order-summary-note {
    display: none !important;
  }

  .workshop-rhythm-copy {
    padding: 64px 20px;
  }

  .workshop-rhythm h2 {
    font-size: 43px;
  }

  .workshop-rhythm-image {
    min-height: 360px;
  }

  .features,
  .pricing,
  .about,
  .ai-section {
    padding-block: 80px;
  }

  .cta-inner {
    padding: 56px 22px;
  }
}

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

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