:root {
  color-scheme: dark;
  --ink: #0a0b0e;
  --lumen: #24f08a;
  --neon: #2fccff;
  --soft: #f6f7fb;
  --muted: #cfd3e6;
  --card: rgba(22, 18, 40, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: radial-gradient(1200px 800px at 70% -10%, #221640 0%, #0a0b0e 60%) fixed;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--soft);
  font-family: Inter, system-ui, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.1px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(70% 55% at 78% 16%, rgba(47, 204, 255, 0.11), transparent 60%),
    radial-gradient(60% 60% at 16% 96%, rgba(36, 240, 138, 0.09), transparent 60%);
}

.grain {
  position: fixed;
  inset: -100px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(1200px, calc(100% - 28px));
  margin: 14px auto;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(13, 14, 22, 0.72);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(140%);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; height: 28px; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-family: "Conthrax", Impact, sans-serif;
  font-size: 13px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 17px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--lumen), var(--neon));
  box-shadow: 0 6px 22px rgba(36, 240, 138, 0.25);
  color: var(--ink);
  font: 700 15px/1 Inter, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; filter: grayscale(0.65); opacity: 0.65; transform: none; }
.button.secondary { border: 1px solid var(--line); background: transparent; box-shadow: none; color: var(--soft); }

main { display: block; }

.page-hero {
  min-height: 68svh;
  padding: 150px clamp(20px, 6vw, 80px) 64px;
}

.container { width: min(1120px, 100%); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(36, 240, 138, 0.28);
  border-radius: 999px;
  background: rgba(36, 240, 138, 0.09);
  color: #c8ffe8;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0 0 12px; font-family: Urbanist, Inter, sans-serif; }
h1 { max-width: 900px; font: 700 clamp(40px, 7vw, 76px)/1.02 Impact, Haettenschweiler, "Arial Black", sans-serif; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 21px; }
p { line-height: 1.7; }
.lede { max-width: 760px; color: var(--muted); font-size: clamp(17px, 2.1vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.section { padding: 32px clamp(20px, 6vw, 80px) 84px; }

.panel,
.summary-card,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.panel { padding: clamp(20px, 4vw, 34px); }
.order-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr); gap: 24px; align-items: start; }
.summary-card { position: sticky; top: 104px; padding: 24px; }

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label, legend { font-weight: 600; }
.hint { margin: 0; color: var(--muted); font-size: 13px; }

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(10, 11, 14, 0.7);
  color: var(--soft);
  font: inherit;
}

textarea { min-height: 126px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 2px solid rgba(147, 255, 254, 0.7); outline-offset: 3px; }
select option { background: #14151b; color: var(--soft); }


.summary-list { display: grid; gap: 12px; margin: 20px 0; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); }
.summary-row strong { color: var(--soft); text-align: right; }
.summary-row.total { padding-top: 14px; border-top: 1px solid var(--line); font-size: 19px; }
.summary-row.total strong { color: var(--lumen); }
.summary-card .button { width: 100%; }

.status { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.status[data-kind="error"] { color: #ff9eaa; }
.status[data-kind="success"] { color: #9dffcf; }

.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.trust-item { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255, 255, 255, 0.035); }
.trust-item p { margin: 0; color: var(--muted); font-size: 14px; }

.notice { max-width: 760px; padding: clamp(24px, 5vw, 42px); }
.notice[data-state="paid"] { border-color: rgba(36, 240, 138, 0.35); }
.notice[data-state="cancelled"] { border-color: rgba(47, 204, 255, 0.3); }
.order-reference { display: inline-block; margin-top: 8px; color: var(--lumen); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }

.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 24px; align-items: start; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.035); }
.contact-card a { color: var(--lumen); }

.site-footer { padding: 44px 24px; color: var(--muted); text-align: center; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 12px; }
.site-footer a { text-underline-offset: 3px; }
.footlogo { margin-bottom: 10px; font-family: Orbitron, system-ui, sans-serif; letter-spacing: 2px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@media (max-width: 860px) {
  .nav-shell { grid-template-columns: auto 1fr; border-radius: 22px; }
  .site-nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
  .nav-shell > .button { justify-self: end; }
  .page-hero { padding-top: 168px; }
  .order-layout, .contact-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-shell > .button { padding: 10px 12px; font-size: 13px; }
  .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .page-hero { padding-top: 176px; }
}

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

/* Homepage visual system shared by the Order and Contact journeys */
body.order-page,
body.contact-page {
  overflow-x: clip;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(78, 48, 149, 0.32), transparent 62%),
    radial-gradient(850px 600px at -10% 48%, rgba(0, 145, 155, 0.14), transparent 68%),
    #08090d;
}

body.order-page::before,
body.contact-page::before {
  z-index: 0;
  background: linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.018) 48% 49%, transparent 50% 100%);
  background-size: 140px 140px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.order-page main,
.contact-page main,
.order-page .site-footer,
.contact-page .site-footer { position: relative; z-index: 1; }

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.order-page .nav-shell,
.contact-page .nav-shell {
  gap: 18px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 17, 0.77);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px) saturate(150%);
}

.order-page .brand,
.contact-page .brand { min-width: 86px; }

.order-page .brand img,
.contact-page .brand img { width: 86px; height: 28px; object-fit: contain; }

.order-page .site-nav,
.contact-page .site-nav { gap: 5px; font-size: 12px; }

.order-page .site-nav a,
.contact-page .site-nav a {
  position: relative;
  padding: 10px 11px;
  opacity: 0.74;
}

.order-page .site-nav a:hover,
.contact-page .site-nav a:hover,
.order-page .site-nav a[aria-current="page"],
.contact-page .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.065);
  opacity: 1;
}

.order-page .site-nav a[aria-current="page"]::after,
.contact-page .site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--lumen), var(--neon));
  box-shadow: 0 0 8px var(--neon);
}

.header-tools { display: flex; align-items: center; gap: 7px; }
.header-cta { font-weight: 800; white-space: nowrap; }
.language-toggle {
  display: inline-grid;
  width: 42px;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(157, 255, 207, 0.28);
  border-radius: 13px;
  background: rgba(157, 255, 207, 0.07);
  color: #bfffe0;
  font: 700 10px "Conthrax", Orbitron, sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.language-toggle:hover { background: rgba(157, 255, 207, 0.13); box-shadow: 0 0 16px rgba(147, 255, 254, 0.12); }

.journey-hero {
  min-height: 0;
  padding-top: 124px;
  padding-bottom: 48px;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 14px;
  min-height: 590px;
}

.journey-copy,
.journey-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 18, 26, 0.8);
}

.journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 62px);
  background:
    radial-gradient(600px 400px at 88% 4%, rgba(47, 204, 255, 0.13), transparent 64%),
    rgba(10, 11, 17, 0.88);
}

.journey-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #bfffe0;
  font: 700 11px/1.2 "Conthrax", Orbitron, sans-serif;
}

.journey-copy .eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--lumen), var(--neon));
  box-shadow: 0 0 10px var(--neon);
}

.journey-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.journey-copy .lede { max-width: 680px; margin-bottom: 0; color: #c9cedb; }
.journey-copy .accent {
  color: transparent;
  background: linear-gradient(90deg, var(--lumen), var(--neon));
  background-clip: text;
  -webkit-background-clip: text;
}

.journey-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.journey-visual:hover img { transform: scale(1.035); }
.journey-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(5, 6, 9, 0.76), transparent 52%); }
.journey-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(7, 8, 12, 0.64);
  color: #eef0f5;
  font: 700 10px "Conthrax", Orbitron, sans-serif;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.journey-caption span:last-child { color: #9dffcf; }

.journey-section { padding-top: 36px; }
.journey-intro { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 30px; }
.journey-intro h2 { max-width: 720px; margin-bottom: 5px; font-size: clamp(34px, 4.8vw, 58px); line-height: 0.98; letter-spacing: -1px; }
.journey-intro p { max-width: 620px; margin: 0; color: var(--muted); }
.release-pill { padding: 9px 12px; border: 1px solid rgba(157, 255, 207, 0.3); border-radius: 999px; color: #bfffe0; font: 700 10px "Conthrax", Orbitron, sans-serif; text-transform: uppercase; white-space: nowrap; }

.order-page .panel,
.contact-page .panel,
.order-page .summary-card,
.contact-page .contact-card {
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(16, 18, 26, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.order-page .panel { position: relative; overflow: hidden; }
.order-page .panel::before { position: absolute; top: 0; right: 0; left: 0; height: 2px; content: ""; background: linear-gradient(90deg, var(--lumen), var(--neon), transparent 82%); }
.order-page .summary-card { top: 112px; }
.order-page .summary-card h2,
.contact-page .panel h2 { font-size: clamp(28px, 3vw, 38px); }
.summary-kicker { margin: -4px 0 17px; color: #9dffcf; font: 700 10px "Conthrax", Orbitron, sans-serif; letter-spacing: 1px; text-transform: uppercase; }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.path-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, 0.035); }
.path-card strong { display: block; margin-bottom: 7px; font-size: 15px; }
.path-card p { margin: 0; color: var(--muted); font-size: 13px; }
.path-card a { color: #9dffcf; text-underline-offset: 3px; }

.quote-guide { position: sticky; top: 112px; padding: clamp(24px, 4vw, 34px); }
.quote-guide .eyebrow { margin-bottom: 18px; }
.quote-guide h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.quote-list { display: grid; gap: 0; margin: 25px 0; border-top: 1px solid var(--line); }
.quote-list div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.quote-list b { color: #9dffcf; font: 700 10px "Conthrax", Orbitron, sans-serif; }
.quote-list p { margin: 0; color: var(--muted); font-size: 14px; }
.direct-email { color: #9dffcf; text-underline-offset: 4px; }
.form-heading { margin-bottom: 24px; }
.form-heading p { margin: 0; color: var(--muted); }

.order-page input,
.order-page select,
.order-page textarea,
.contact-page input,
.contact-page select,
.contact-page textarea {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(7, 8, 12, 0.68);
}

.order-page .site-footer,
.contact-page .site-footer { border-top: 1px solid rgba(255, 255, 255, 0.07); }

/* Private Studio dashboard */
.studio-page { min-height: 100vh; background: #080a10; color: var(--ink); }
.studio-page .site-header { position: relative; }
.studio-page .nav-shell { justify-content: space-between; }
.studio-main { position: relative; z-index: 1; width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 70px 0 100px; }
.studio-login { width: min(560px, 100%); margin: 7vh auto; padding: clamp(28px, 5vw, 52px); border-color: rgba(255,255,255,.12); background: rgba(16,18,26,.9); box-shadow: 0 28px 80px rgba(0,0,0,.38); }
.studio-login h1, .studio-heading h1 { margin: 10px 0 16px; font-size: clamp(42px, 6vw, 72px); line-height: .98; }
.studio-login > p:not(.eyebrow), .studio-heading > div > p:not(.eyebrow) { max-width: 58ch; margin: 0; color: var(--muted); }
.studio-login-form { display: grid; gap: 12px; margin-top: 30px; }
.studio-login-form .button { justify-self: start; margin-top: 8px; }
.studio-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.studio-actions { position: relative; z-index: 3; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.studio-actions .button { position: relative; z-index: 1; pointer-events: auto; }
.text-button { padding: 8px 0; border: 0; color: var(--muted); background: none; cursor: pointer; font: inherit; text-decoration: underline; text-underline-offset: 4px; }
.text-button:hover { color: var(--ink); }
.studio-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.studio-stat { min-height: 130px; padding: 23px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(16,18,26,.82); box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.studio-stat span { display: block; color: var(--muted); font-size: 13px; }
.studio-stat strong { display: block; margin-top: 18px; color: #9dffcf; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; }
.studio-orders { padding: clamp(22px, 4vw, 36px); border-color: rgba(255,255,255,.11); background: rgba(16,18,26,.86); box-shadow: 0 28px 80px rgba(0,0,0,.36); }
.studio-orders-topline { display: flex; align-items: end; justify-content: space-between; gap: 22px; }
.studio-orders h2 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 40px); }
.studio-search-label { display: grid; gap: 7px; min-width: min(320px, 100%); color: var(--muted); font-size: 12px; }
.studio-search-label input { min-height: 42px; }
.studio-table-wrap { overflow-x: auto; margin-top: 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; }
.studio-table { width: 100%; min-width: 1120px; border-collapse: collapse; text-align: left; }
.studio-table th, .studio-table td { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.09); vertical-align: top; }
.studio-table th { color: #9dffcf; font: 700 10px "Conthrax", Orbitron, sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.studio-table tr:last-child td { border-bottom: 0; }
.studio-table strong, .studio-table small, .studio-table a { display: block; }
.studio-table strong { font-size: 13px; }
.studio-table small, .studio-table a { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.studio-table a { overflow-wrap: anywhere; color: #b8ffd9; text-underline-offset: 3px; }
.studio-table select { min-width: 155px; min-height: 39px; padding: 8px; font-size: 12px; }
.status-pill { display: inline-flex; width: fit-content; margin-top: 8px; padding: 4px 7px; border-radius: 999px; font: 700 9px "Conthrax", Orbitron, sans-serif; letter-spacing: .6px; text-transform: uppercase; }
.status-pill--paid { color: #0b1e19; background: #9dffcf; }
.studio-empty { padding: 28px !important; color: var(--muted); text-align: center; }
.form-status.is-error { color: #ff8ba3; }

@media (max-width: 780px) {
  .studio-main { width: min(100% - 24px, 1180px); padding-top: 34px; }
  .studio-heading, .studio-orders-topline { align-items: start; flex-direction: column; }
  .studio-stats { grid-template-columns: 1fr 1fr; }
  .studio-stat { min-height: 106px; padding: 18px; }
  .studio-search-label { width: 100%; min-width: 0; }
}

@media (max-width: 900px) {
  .journey-grid { grid-template-columns: 1fr; min-height: 0; }
  .journey-copy { min-height: 560px; }
  .journey-visual { min-height: 430px; }
  .quote-guide { position: static; }
  .order-page .nav-shell > .header-tools,
  .contact-page .nav-shell > .header-tools { grid-column: 2; grid-row: 1; justify-self: end; }
}

@media (max-width: 620px) {
  .order-page .nav-shell,
  .contact-page .nav-shell { width: calc(100% - 20px); margin: 10px auto; padding: 9px 10px; }
  .order-page .site-nav,
  .contact-page .site-nav { width: 100%; justify-content: space-between; gap: 0; overflow: visible; font-size: 9px; }
  html[lang="bg"] .order-page .site-nav,
  html[lang="bg"] .contact-page .site-nav { font-size: 8px; letter-spacing: -0.15px; }
  .order-page .site-nav a,
  .contact-page .site-nav a { padding: 8px 3px; }
  .order-page .header-tools,
  .contact-page .header-tools { gap: 5px; }
  .order-page .header-tools .button,
  .contact-page .header-tools .button { min-height: 40px; padding: 9px 10px; font-size: 11px; }
  .order-page .language-toggle,
  .contact-page .language-toggle { width: 38px; min-width: 38px; height: 38px; }
  .journey-hero { padding: 142px 12px 34px; }
  .journey-copy { min-height: 560px; padding: 24px; }
  .journey-copy h1 { font-size: clamp(48px, 15vw, 68px); }
  .journey-visual { min-height: 450px; }
  .journey-section { padding-right: 12px; padding-left: 12px; }
  .journey-intro { grid-template-columns: 1fr; gap: 12px; }
  .release-pill { width: fit-content; }
  .path-grid { grid-template-columns: 1fr; }
}
