/* ---------------------------------------------
   Handwerkstudio: visual foundation
---------------------------------------------- */

:root {
  color-scheme: light;
  --paper: #f7f8fa;
  --paper-solid: #fbfcfd;
  --silver: #dce1e6;
  --silver-deep: #aeb8c2;
  --ink: #2d3748;
  --ink-soft: #596474;
  --ink-faint: #7d8794;
  --warm: #e7d6bb;
  --warm-light: #f5ead8;
  --blue: #3a7bd5;
  --blue-action: #2868b8;
  --blue-dark: #155293;
  --night: #172230;
  --night-soft: #243243;
  --white: #ffffff;
  --danger: #b83f4b;
  --success: #1f8061;
  --shadow-sm: 0 8px 30px rgb(45 55 72 / 9%);
  --shadow-md: 0 18px 55px rgb(45 55 72 / 13%);
  --shadow-lg: 0 28px 90px rgb(45 55 72 / 18%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --content: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3,
strong {
  font-weight: 650;
  letter-spacing: -0.035em;
}

::selection {
  background: rgb(58 123 213 / 22%);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--paper-solid);
  box-shadow: 0 0 0 6px rgb(40 104 184 / 78%);
  border-radius: 8px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--night);
  color: white;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding-block: 112px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgb(45 55 72 / 14%);
  border-radius: 50%;
  font-size: 0.61rem;
  letter-spacing: 0;
}

.section-label--light {
  color: rgb(255 255 255 / 62%);
}

.section-label--light span {
  border-color: rgb(255 255 255 / 23%);
}

.section-heading {
  display: grid;
  max-width: 840px;
  margin-bottom: 68px;
}

.section-heading .section-label {
  margin-bottom: 26px;
}

.section-heading h2,
.statement h2,
.booking__intro h2,
.faq__intro h2 {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 640;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.section-heading h2 span,
.statement h2 span,
.booking__intro h2 span,
.faq__intro h2 span,
.closing h2 span {
  color: var(--blue-action);
}

.section-heading > p {
  max-width: 670px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.section-heading--split {
  grid-template-columns: 1.35fr 0.65fr;
  max-width: none;
  align-items: end;
  gap: 90px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

/* ---------------------------------------------
   Ambient background and liquid glass
---------------------------------------------- */

.ambient-scene {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(70rem 55rem at -10% 0%, rgb(58 123 213 / 18%), transparent 65%),
    radial-gradient(58rem 48rem at 110% 15%, rgb(231 214 187 / 72%), transparent 63%),
    radial-gradient(45rem 32rem at 50% 82%, rgb(220 225 230 / 56%), transparent 68%),
    var(--paper);
}

.ambient-scene__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  will-change: transform;
}

.ambient-scene__orb--blue {
  top: -18vw;
  left: -14vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle at 60% 60%, rgb(76 143 232 / 30%), rgb(58 123 213 / 5%) 65%, transparent 72%);
  animation: orbDriftOne 24s var(--ease) infinite alternate;
}

.ambient-scene__orb--warm {
  top: 2vh;
  right: -19vw;
  width: 64vw;
  height: 64vw;
  background: radial-gradient(circle at 40% 48%, rgb(244 218 176 / 55%), rgb(231 214 187 / 8%) 66%, transparent 73%);
  animation: orbDriftTwo 28s var(--ease) infinite alternate;
}

.ambient-scene__orb--silver {
  bottom: -24vw;
  left: 22vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle at 50%, rgb(197 210 224 / 38%), transparent 68%);
  animation: orbDriftThree 26s var(--ease) infinite alternate;
}

.ambient-scene__lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(ellipse 80% 40% at 10% 10%, transparent 67%, rgb(255 255 255 / 42%) 67.4%, transparent 67.9%),
    radial-gradient(ellipse 65% 32% at 95% 5%, transparent 69%, rgb(58 123 213 / 10%) 69.4%, transparent 70%),
    radial-gradient(ellipse 70% 30% at 55% 90%, transparent 74%, rgb(45 55 72 / 7%) 74.5%, transparent 75%);
}

.ambient-scene__grain {
  position: absolute;
  inset: -50%;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  transform: rotate(10deg);
}

.glass-surface {
  --spot-x: 50%;
  --spot-y: 20%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 68%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 58%), rgb(247 248 250 / 26%)),
    rgb(247 248 250 / 30%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 90%),
    inset 1px 0 0 rgb(58 123 213 / 10%),
    inset -1px 0 0 rgb(231 214 187 / 32%),
    var(--shadow-md);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.glass-surface::before {
  position: absolute;
  z-index: 0;
  top: -55%;
  left: -26%;
  width: 58%;
  height: 220%;
  transform: rotate(22deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 7%) 18%,
    rgb(255 255 255 / 58%) 47%,
    rgb(231 214 187 / 25%) 62%,
    transparent
  );
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.glass-surface::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle 180px at var(--spot-x) var(--spot-y), rgb(255 255 255 / 34%), transparent 62%),
    linear-gradient(100deg, transparent 8%, rgb(58 123 213 / 7%) 42%, rgb(231 214 187 / 14%) 65%, transparent 88%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.glass-surface > * {
  position: relative;
  z-index: 1;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass-surface {
    background: rgb(255 255 255 / 94%);
  }
}

/* ---------------------------------------------
   Header and buttons
---------------------------------------------- */

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  align-items: center;
  gap: 28px;
  padding: 9px 12px 9px 14px;
  overflow: visible;
  transform: translateX(-50%);
  border-radius: 25px;
  transition:
    min-height 240ms var(--ease),
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-header::before {
  display: none;
}

.site-header::after {
  border-radius: inherit;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: linear-gradient(135deg, rgb(255 255 255 / 78%), rgb(247 248 250 / 48%));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 95%),
    0 16px 45px rgb(45 55 72 / 14%);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
}

.brand img {
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 5px;
  color: var(--ink-faint);
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.primary-navigation a {
  position: relative;
  padding-block: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-action);
  content: "";
  transition: transform 250ms var(--ease);
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgb(255 255 255 / 52%);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 220ms ease;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled {
  transform: none;
  opacity: 0.45;
  cursor: not-allowed;
}

.button--primary {
  border-color: rgb(21 82 147 / 15%);
  background: linear-gradient(135deg, #3478c9, var(--blue-action));
  color: white;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 28%),
    0 10px 25px rgb(40 104 184 / 25%);
}

.button--primary:hover {
  background: linear-gradient(135deg, #2e74c8, var(--blue-dark));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 32%),
    0 14px 32px rgb(40 104 184 / 30%);
}

.button--glass {
  border-color: rgb(255 255 255 / 76%);
  background: linear-gradient(135deg, rgb(255 255 255 / 60%), rgb(255 255 255 / 25%));
  box-shadow:
    inset 0 1px 0 white,
    0 8px 24px rgb(45 55 72 / 8%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

.button--glass:hover {
  border-color: rgb(58 123 213 / 30%);
  background: rgb(255 255 255 / 74%);
}

.button--light {
  background: var(--paper-solid);
  color: var(--night);
  box-shadow: 0 14px 36px rgb(0 0 0 / 20%);
}

.button--quiet {
  border-color: rgb(45 55 72 / 12%);
  background: transparent;
  color: var(--ink-soft);
  box-shadow: none;
}

.button--quiet:hover {
  border-color: rgb(40 104 184 / 28%);
  background: rgb(255 255 255 / 55%);
  color: var(--ink);
}

.button--small {
  min-height: 48px;
  padding-inline: 18px;
}

.button--large {
  min-height: 57px;
  padding: 16px 24px;
  border-radius: 17px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(45 55 72 / 28%);
  font-size: 0.96rem;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--blue-action);
  color: var(--blue-action);
}

.mobile-booking-cta {
  display: none;
}

.mobile-booking-cta.is-hidden {
  transform: translateY(calc(100% + 22px));
  opacity: 0;
  pointer-events: none;
}

/* ---------------------------------------------
   Hero
---------------------------------------------- */

.hero {
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  padding-top: 180px;
  padding-bottom: 82px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 999px;
  background: rgb(255 255 255 / 38%);
  box-shadow: inset 0 1px 0 white, 0 8px 24px rgb(45 55 72 / 6%);
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-action);
  box-shadow: 0 0 0 5px rgb(58 123 213 / 10%);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(3.5rem, 6.3vw, 6.75rem);
  font-weight: 650;
  line-height: 0.91;
  letter-spacing: -0.078em;
}

.hero h1 span {
  color: var(--blue-action);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.65vw, 1.2rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0 4px;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero__microcopy span:first-child {
  color: var(--success);
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 610px;
  perspective: 1200px;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
}

.hero-light--one {
  top: 4%;
  right: -6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgb(246 223 187 / 70%), transparent 68%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-light--two {
  bottom: 0;
  left: -8%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgb(58 123 213 / 28%), transparent 69%);
  animation: pulseGlow 10s ease-in-out 1.2s infinite alternate-reverse;
}

.showcase-browser {
  position: absolute;
  top: 68px;
  right: 12px;
  width: min(100%, 535px);
  min-height: 414px;
  transform: rotateY(-4deg) rotateX(1deg) rotateZ(1.5deg);
  border-radius: 27px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 95%),
    0 35px 100px rgb(45 55 72 / 23%);
  transition: transform 480ms var(--ease);
}

.showcase-browser:hover {
  transform: rotateY(-1deg) rotateX(0) rotateZ(0.5deg) translateY(-6px);
}

.showcase-browser__bar {
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgb(45 55 72 / 8%);
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 600;
}

.showcase-browser__dots {
  display: flex;
  gap: 5px;
}

.showcase-browser__dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(45 55 72 / 14%);
}

.showcase-browser__dots i:nth-child(1) { background: #d99282; }
.showcase-browser__dots i:nth-child(2) { background: #e3c17e; }
.showcase-browser__dots i:nth-child(3) { background: #86b99d; }

.showcase-browser__secure {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 45%);
}

.showcase-browser__canvas {
  min-height: 360px;
  padding: 20px;
  background: linear-gradient(145deg, rgb(255 255 255 / 52%), rgb(220 225 230 / 34%));
}

.mock-nav {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 15px;
  padding-inline: 5px;
}

.mock-nav > span:not(.mock-logo) {
  width: 34px;
  height: 4px;
  margin-left: 3px;
  border-radius: 99px;
  background: rgb(45 55 72 / 13%);
}

.mock-nav > span:nth-last-child(1) {
  width: 50px;
}

.mock-logo {
  width: 78px;
  height: 7px;
  margin-right: auto;
  border-radius: 99px;
  background: var(--ink);
}

.mock-hero {
  display: grid;
  min-height: 230px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  padding: 26px 18px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 19px;
  background:
    radial-gradient(circle at 85% 20%, rgb(231 214 187 / 72%), transparent 38%),
    radial-gradient(circle at 15% 85%, rgb(58 123 213 / 18%), transparent 48%),
    rgb(255 255 255 / 45%);
}

.mock-hero__copy {
  display: grid;
  gap: 8px;
}

.mock-hero__copy > span {
  display: block;
  border-radius: 99px;
}

.mock-kicker {
  width: 56px;
  height: 6px;
  margin-bottom: 4px;
  background: var(--blue-action);
}

.mock-heading {
  width: 100%;
  height: 17px;
  background: var(--ink);
}

.mock-heading--short {
  width: 72%;
}

.mock-body {
  width: 85%;
  height: 6px;
  margin-top: 5px;
  background: rgb(45 55 72 / 20%);
}

.mock-button {
  width: 72px;
  height: 22px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--blue-action), var(--blue));
}

.mock-hero__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 28% 46% 34% 42%;
  background: linear-gradient(145deg, rgb(255 255 255 / 67%), rgb(255 255 255 / 23%));
  box-shadow: inset 0 1px 0 white, 0 18px 35px rgb(45 55 72 / 11%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mock-hero__visual img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 12px rgb(45 55 72 / 18%));
}

.mock-visual__ring {
  position: absolute;
  inset: 13%;
  border: 1px solid rgb(58 123 213 / 16%);
  border-radius: 42% 50% 45% 50%;
  transform: rotate(12deg);
}

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

.mock-metrics span {
  height: 44px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(255 255 255 / 58%), rgb(220 225 230 / 22%));
}

.floating-card {
  position: absolute;
  border-radius: 20px;
}

.floating-card--booking {
  z-index: 4;
  right: -34px;
  bottom: 46px;
  display: grid;
  width: 275px;
  min-height: 100px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  transform: rotate(-2.5deg);
  animation: cardFloat 6s ease-in-out infinite alternate;
}

.floating-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 15px;
  background: rgb(255 255 255 / 48%);
}

.floating-card__icon svg {
  width: 24px;
  fill: none;
  stroke: var(--blue-action);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.floating-card--booking > div:nth-child(2) {
  display: grid;
}

.floating-card small {
  color: var(--ink-faint);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.floating-card strong {
  font-size: 0.88rem;
  letter-spacing: -0.025em;
}

.floating-card--booking div > span {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgb(31 128 97 / 12%);
}

.floating-card--system {
  z-index: 3;
  bottom: -24px;
  left: -36px;
  width: 292px;
  padding: 16px 18px;
  transform: rotate(2.6deg);
}

.system-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.system-line i {
  width: 15px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--warm));
}

.hero__trust {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  margin-top: 44px;
  padding: 20px;
  border-top: 1px solid rgb(45 55 72 / 9%);
  border-bottom: 1px solid rgb(45 55 72 / 9%);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero__trust i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

/* ---------------------------------------------
   Statement and outcomes
---------------------------------------------- */

.statement {
  padding-top: 140px;
}

.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
}

.statement h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.statement h2 span {
  display: block;
  margin-top: 8px;
}

.statement__copy {
  padding-bottom: 8px;
}

.statement__copy p {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid rgb(45 55 72 / 11%);
  border-bottom: 1px solid rgb(45 55 72 / 11%);
}

.outcome-card {
  position: relative;
  min-height: 240px;
  padding: 32px clamp(24px, 3vw, 42px) 36px;
}

.outcome-card + .outcome-card {
  border-left: 1px solid rgb(45 55 72 / 11%);
}

.outcome-card__number {
  display: inline-flex;
  margin-bottom: 55px;
  color: var(--blue-action);
  font-size: 0.7rem;
  font-weight: 800;
}

.outcome-card h3 {
  margin-bottom: 11px;
  font-size: 1.26rem;
}

.outcome-card p {
  max-width: 290px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

.outcome-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 28px;
  height: 28px;
  border-right: 1px solid rgb(58 123 213 / 25%);
  border-bottom: 1px solid rgb(58 123 213 / 25%);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease, transform 250ms var(--ease);
}

.outcome-card:hover::after {
  transform: translate(5px, 5px);
  opacity: 1;
}

/* Reveal states */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes orbDriftOne {
  to { transform: translate3d(8vw, 5vh, 0) scale(1.06); }
}

@keyframes orbDriftTwo {
  to { transform: translate3d(-7vw, 8vh, 0) scale(0.94); }
}

@keyframes orbDriftThree {
  to { transform: translate3d(2vw, -7vh, 0) scale(1.07); }
}

@keyframes pulseGlow {
  to { transform: scale(1.1) translate3d(2%, -2%, 0); opacity: 0.72; }
}

@keyframes cardFloat {
  to { transform: translateY(-9px) rotate(-1deg); }
}

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

/* ---------------------------------------------
   Services
---------------------------------------------- */

.services {
  padding-top: 138px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgb(45 55 72 / 9%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 48%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 70%);
  transition:
    transform 320ms var(--ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgb(58 123 213 / 22%);
  box-shadow: var(--shadow-md), inset 0 1px 0 white;
}

.service-card--feature {
  min-height: 560px;
  grid-row: span 2;
  border-color: rgb(255 255 255 / 70%);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 0%, rgb(58 123 213 / 17%), transparent 39%),
    radial-gradient(circle at 92% 100%, rgb(231 214 187 / 48%), transparent 43%),
    linear-gradient(135deg, rgb(255 255 255 / 59%), rgb(247 248 250 / 29%));
}

.service-card--feature::before {
  left: 8%;
  width: 30%;
  opacity: 0.38;
}

.service-card--feature::after {
  background:
    radial-gradient(circle 220px at var(--spot-x) var(--spot-y), rgb(255 255 255 / 38%), transparent 64%),
    linear-gradient(140deg, transparent, rgb(58 123 213 / 5%), rgb(231 214 187 / 15%));
}

.service-card__index {
  position: absolute !important;
  top: 32px;
  right: 35px;
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 19px;
  background: linear-gradient(145deg, rgb(255 255 255 / 69%), rgb(220 225 230 / 26%));
  box-shadow: inset 0 1px 0 white, 0 10px 25px rgb(45 55 72 / 8%);
}

.service-card__icon svg {
  width: 29px;
  fill: none;
  stroke: var(--blue-action);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.service-card__eyebrow {
  margin-bottom: 9px;
  color: var(--blue-action);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.service-card p:not(.service-card__eyebrow) {
  max-width: 510px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 2px 0 32px;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.service-card li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--warm));
  content: "";
}

.service-card__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgb(45 55 72 / 24%);
  background: none;
  font-size: 0.87rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.service-card__cta:hover {
  border-color: var(--blue-action);
  color: var(--blue-action);
}

.service-card--dark {
  border-color: rgb(255 255 255 / 10%);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 7%), transparent 55%),
    var(--night);
  color: white;
  box-shadow: 0 22px 55px rgb(23 34 48 / 20%);
}

.service-card--dark .service-card__index,
.service-card--dark p:not(.service-card__eyebrow) {
  color: rgb(255 255 255 / 59%);
}

.service-card--dark .service-card__eyebrow,
.service-card--dark .service-card__icon svg {
  color: #88b8f5;
  stroke: #88b8f5;
}

.service-card--dark .service-card__icon {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 8%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 14%);
}

.service-card--dark .service-card__cta {
  border-color: rgb(255 255 255 / 25%);
  color: white;
}

.service-card--dark .service-card__glow {
  position: absolute;
  z-index: 0;
  right: -18%;
  bottom: -36%;
  width: 75%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(58 123 213 / 38%), transparent 68%);
}

.service-card--wide {
  grid-column: 2;
  min-height: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
}

.service-card--wide > p:not(.service-card__eyebrow) {
  grid-column: 2;
  margin: -20px 0 0;
}

.service-card--wide .service-card__icon {
  grid-row: 1 / span 2;
  margin: 0;
}

.service-card--wide h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

/* ---------------------------------------------
   Pricing and direct order
---------------------------------------------- */

.pricing {
  padding-top: 150px;
}

.pricing__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: stretch;
  gap: 18px;
}

.price-card,
.hosting-card,
.draft-choice {
  position: relative;
  overflow: hidden;
  border-color: rgb(255 255 255 / 78%);
}

.price-card--main {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgb(58 123 213 / 18%), transparent 36%),
    radial-gradient(circle at 100% 100%, rgb(231 214 187 / 52%), transparent 42%),
    linear-gradient(140deg, rgb(255 255 255 / 75%), rgb(247 248 250 / 45%));
  box-shadow: var(--shadow-md), inset 0 1px 0 white;
}

.price-card--main::before {
  left: 17%;
  width: 32%;
  opacity: 0.42;
}

.price-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.price-card__eyebrow span {
  color: var(--blue-action);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card__eyebrow i {
  padding: 7px 10px;
  border: 1px solid rgb(31 128 97 / 16%);
  border-radius: 999px;
  background: rgb(31 128 97 / 8%);
  color: var(--success);
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 800;
}

.price-card__price {
  display: flex;
  align-items: end;
  gap: 13px;
  margin-bottom: 17px;
}

.price-card__price strong {
  font-size: clamp(4.5rem, 8vw, 7.8rem);
  font-weight: 660;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.price-card__price span {
  padding-bottom: 5px;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 700;
}

.price-card--main > p {
  max-width: 540px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.price-card--main ul {
  display: grid;
  gap: 13px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.price-card--main li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.price-card--main li::before {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgb(58 123 213 / 9%);
  color: var(--blue-action);
  content: "✓";
  font-size: 0.63rem;
  font-weight: 900;
}

.price-card--main .button {
  align-self: flex-start;
  margin-top: auto;
}

.price-card--main > small {
  max-width: 530px;
  margin-top: 13px;
  color: var(--ink-faint);
  font-size: 0.61rem;
  line-height: 1.45;
}

.pricing__side {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.hosting-card,
.draft-choice {
  padding: 28px 30px;
  border-radius: 25px;
  background: rgb(255 255 255 / 58%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 84%), 0 18px 45px rgb(45 55 72 / 7%);
}

.hosting-card > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.hosting-card small,
.draft-choice > small {
  color: var(--blue-action);
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hosting-card strong {
  flex: 0 0 auto;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  text-align: right;
}

.hosting-card strong span {
  display: block;
  color: var(--ink-faint);
  font-size: 0.57rem;
  font-weight: 650;
  letter-spacing: 0;
}

.hosting-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hosting-card em {
  display: block;
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 0.56rem;
  font-style: normal;
  line-height: 1.45;
}

.draft-choice {
  display: grid;
  align-content: center;
  gap: 15px;
  background:
    linear-gradient(145deg, rgb(229 241 255 / 56%), rgb(255 246 232 / 52%)),
    rgb(255 255 255 / 60%);
}

.draft-choice h3 {
  max-width: 460px;
  margin-bottom: 2px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.draft-choice > div {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 11px;
  padding-top: 13px;
  border-top: 1px solid rgb(45 55 72 / 9%);
}

.draft-choice > div > span {
  color: var(--blue-action);
  font-size: 0.58rem;
  font-weight: 850;
}

.draft-choice p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.draft-choice p strong {
  color: var(--ink);
  font-size: 0.73rem;
}

/* ---------------------------------------------
   Work / concept studies
---------------------------------------------- */

.work {
  padding-top: 140px;
}

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

.project-card--large {
  grid-column: 1 / -1;
}

.project-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.34;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: var(--radius-lg);
  background: var(--silver);
  box-shadow: var(--shadow-sm), inset 0 1px 0 white;
}

.project-card--large .project-card__image {
  aspect-ratio: 2 / 1;
}

.project-card__image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgb(255 255 255 / 15%), transparent 45%, rgb(23 34 48 / 8%));
  content: "";
  pointer-events: none;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 700ms var(--ease);
}

.project-card:hover .project-card__image > img {
  transform: scale(1.025);
}

.project-card__image--live {
  display: block;
  border-color: rgb(255 255 255 / 48%);
  background: #020302;
  box-shadow:
    0 28px 70px rgb(16 26 40 / 18%),
    inset 0 1px 0 rgb(255 255 255 / 72%);
  color: white;
  text-decoration: none;
}

.project-card__image--live::after {
  background:
    linear-gradient(90deg, rgb(0 0 0 / 10%), transparent 48%, rgb(0 0 0 / 24%)),
    linear-gradient(180deg, transparent 58%, rgb(0 0 0 / 48%));
}

.project-card__image--live > .project-card__primary-image {
  filter: saturate(0.95) contrast(1.02);
}

.project-card__booking-preview {
  position: absolute;
  z-index: 3;
  right: 3.2%;
  bottom: 6.2%;
  width: min(49%, 700px);
  aspect-ratio: 1.78;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: clamp(14px, 1.8vw, 24px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 32%), rgb(255 255 255 / 8%)),
    rgb(9 12 14 / 68%);
  box-shadow:
    0 22px 55px rgb(0 0 0 / 48%),
    inset 0 1px 0 rgb(255 255 255 / 62%);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  transition:
    transform 650ms var(--ease),
    box-shadow 650ms var(--ease);
}

.project-card__booking-preview::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgb(255 255 255 / 20%), transparent 28%, transparent 68%, rgb(255 255 255 / 8%));
  content: "";
  pointer-events: none;
}

.project-card__booking-preview img {
  width: 100%;
  height: 100%;
  border-radius: clamp(9px, 1.2vw, 17px);
  object-fit: cover;
  object-position: top;
  transition: none;
}

.project-card__booking-preview figcaption {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  background: rgb(0 0 0 / 72%);
  color: rgb(255 255 255 / 84%);
  font-size: clamp(0.52rem, 0.75vw, 0.68rem);
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.project-card__image--live:hover .project-card__booking-preview {
  transform: translate3d(-5px, -5px, 0);
  box-shadow:
    0 28px 70px rgb(0 0 0 / 54%),
    inset 0 1px 0 rgb(255 255 255 / 72%);
}

.project-card__badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 999px;
  background: rgb(247 248 250 / 74%);
  box-shadow: 0 6px 18px rgb(45 55 72 / 9%);
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.project-card__badge--live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgb(255 255 255 / 22%);
  background: rgb(1 3 2 / 68%);
  color: rgb(255 255 255 / 90%);
  box-shadow:
    0 10px 26px rgb(0 0 0 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 16%);
}

.project-card__badge--live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32ff20;
  box-shadow: 0 0 0 4px rgb(50 255 32 / 12%), 0 0 16px rgb(50 255 32 / 72%);
}

.project-card__open {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(1 3 2 / 60%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 14%);
  color: rgb(255 255 255 / 90%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.project-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 5px 0;
}

.project-card__meta small {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-action);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card__meta h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 1.9rem);
  line-height: 1.1;
}

.project-card__intro p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--ink-faint);
  font-size: 0.84rem;
  line-height: 1.65;
}

.project-card__meta > span {
  flex: 0 0 auto;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 600;
}

.project-card__details {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--ink-faint);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: right;
}

.project-card__details a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--blue-action);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.project-card__details a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------------------------------------
   Process
---------------------------------------------- */

.process {
  padding-top: 145px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(45 55 72 / 12%);
  list-style: none;
}

.process-item {
  display: grid;
  min-height: 245px;
  grid-template-columns: 80px minmax(0, 1fr) minmax(230px, 0.55fr);
  align-items: center;
  gap: clamp(25px, 5vw, 70px);
  padding: 40px 10px;
  border-bottom: 1px solid rgb(45 55 72 / 12%);
}

.process-item__number {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgb(45 55 72 / 13%);
  border-radius: 50%;
  color: var(--blue-action);
  font-size: 0.69rem;
  font-weight: 800;
}

.process-item__content {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  align-items: baseline;
  gap: 12px 35px;
}

.process-item__content small {
  grid-column: 1;
  color: var(--ink-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-item__content h3 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.process-item__content p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.process-item__artifact {
  justify-self: end;
  width: 220px;
  height: 128px;
  padding: 22px;
  transform: rotate(2deg);
  border-radius: 23px;
  transition: transform 350ms var(--ease);
}

.process-item:hover .process-item__artifact {
  transform: rotate(0) translateY(-4px);
}

.process-item__artifact:not(.process-item__artifact--map, .process-item__artifact--screen, .process-item__artifact--check) {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 9px 13px;
}

.artifact-avatar {
  grid-row: 1 / span 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--warm));
  box-shadow: inset 0 0 0 7px rgb(255 255 255 / 55%);
}

.process-item__artifact i {
  display: block;
  height: 5px;
  border-radius: 99px;
  background: rgb(45 55 72 / 12%);
}

.process-item__artifact i:last-child {
  width: 68%;
}

.process-item__artifact--map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
}

.process-item__artifact--map span {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(58 123 213 / 28%);
  border-radius: 12px;
  background: rgb(255 255 255 / 35%);
}

.process-item__artifact--map span:first-child {
  grid-column: 1 / -1;
}

.process-item__artifact--map span:not(:first-child)::before {
  position: absolute;
  top: -23px;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgb(45 55 72 / 16%);
  content: "";
}

.process-item__artifact--screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.process-item__artifact--screen span {
  grid-column: 1 / -1;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(58 123 213 / 20%), rgb(231 214 187 / 42%));
}

.process-item__artifact--screen i {
  height: 30px;
  border-radius: 9px;
}

.process-item__artifact--check {
  display: grid;
  place-items: center;
}

.process-item__artifact--check svg {
  width: 60px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

/* ---------------------------------------------
   Studio dark zone
---------------------------------------------- */

.studio {
  width: min(calc(100% - 32px), 1420px);
  padding-top: 132px;
}

.studio__panel {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  overflow: hidden;
  padding: clamp(52px, 8vw, 118px);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 48px;
  background:
    radial-gradient(circle at 10% 0%, rgb(58 123 213 / 12%), transparent 34%),
    linear-gradient(145deg, #162230, #1d2938 60%, #17202c);
  box-shadow: 0 36px 100px rgb(23 34 48 / 21%);
  color: white;
}

.studio__panel::after {
  position: absolute;
  right: -10%;
  bottom: -24%;
  width: 75%;
  height: 80%;
  border: 1px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.studio__light {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
}

.studio__light--blue {
  top: 8%;
  right: 22%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgb(58 123 213 / 38%), transparent 68%);
}

.studio__light--warm {
  right: -8%;
  bottom: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgb(231 214 187 / 26%), transparent 67%);
}

.studio__copy {
  position: relative;
  z-index: 2;
}

.studio__copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.studio__copy h2 span {
  color: #78acf0;
}

.studio__copy p {
  max-width: 590px;
  margin-bottom: 18px;
  color: rgb(255 255 255 / 65%);
  font-size: 1rem;
  line-height: 1.75;
}

.studio__copy .button {
  margin-top: 17px;
}

.studio__visual {
  position: relative;
  z-index: 2;
  min-height: 540px;
}

.studio-mark {
  position: absolute;
  top: 16px;
  left: 50%;
  display: grid;
  width: 390px;
  max-width: 88%;
  aspect-ratio: 1;
  place-items: center;
  transform: translateX(-50%) rotate(3deg);
  border-color: rgb(255 255 255 / 14%);
  border-radius: 42% 48% 38% 51%;
  background:
    radial-gradient(circle at 28% 15%, rgb(255 255 255 / 20%), transparent 35%),
    linear-gradient(145deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 3%));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 23%),
    inset 1px 0 0 rgb(58 123 213 / 17%),
    inset -1px 0 0 rgb(231 214 187 / 17%),
    0 35px 75px rgb(0 0 0 / 25%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.studio-mark::before {
  opacity: 0.22;
}

.studio-mark img {
  z-index: 2;
  width: 44%;
  filter: drop-shadow(0 16px 22px rgb(0 0 0 / 30%));
}

.studio-mark__rings {
  position: absolute;
  z-index: 1;
  inset: 13%;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 44% 52% 45% 51%;
  transform: rotate(-14deg);
}

.studio-mark__rings::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(111 168 245 / 14%);
  border-radius: 50%;
  content: "";
}

.studio-values {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 8px;
  display: grid;
  width: 320px;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  padding: 18px;
  transform: rotate(-2deg);
  border-color: rgb(255 255 255 / 15%);
  border-radius: 23px;
  background: linear-gradient(145deg, rgb(255 255 255 / 13%), rgb(255 255 255 / 5%));
  box-shadow: 0 22px 48px rgb(0 0 0 / 25%);
}

.studio-values span {
  padding: 9px 10px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 10px;
  background: rgb(255 255 255 / 4%);
  color: rgb(255 255 255 / 70%);
  font-size: 0.66rem;
  font-weight: 650;
  text-align: center;
}

/* ---------------------------------------------
   Booking flow
---------------------------------------------- */

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
  align-items: start;
  gap: clamp(55px, 8vw, 115px);
  padding-top: 150px;
}

.booking__intro {
  position: sticky;
  top: 135px;
}

.booking__intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.7vw, 4.6rem);
}

.booking__intro > p {
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.booking-benefits {
  display: grid;
  margin-bottom: 28px;
}

.booking-benefits > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid rgb(45 55 72 / 10%);
}

.booking-benefits > div:last-child {
  border-bottom: 1px solid rgb(45 55 72 / 10%);
}

.booking-benefits span {
  padding-top: 2px;
  color: var(--blue-action);
  font-size: 0.67rem;
  font-weight: 800;
}

.booking-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.booking-benefits strong {
  color: var(--ink);
  font-size: 0.89rem;
  letter-spacing: -0.02em;
}

.booking-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 17px;
}

.booking-note__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-action), #5089d5);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgb(40 104 184 / 20%);
}

.booking-note > div:last-child {
  display: grid;
}

.booking-note strong {
  font-size: 0.86rem;
}

.booking-note span {
  color: var(--ink-faint);
  font-size: 0.69rem;
}

.booking-shell {
  min-height: 720px;
  overflow: hidden;
  border-color: rgb(255 255 255 / 80%);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 82%), rgb(247 248 250 / 68%)),
    rgb(255 255 255 / 74%);
  box-shadow:
    inset 0 1px 0 white,
    inset 1px 0 0 rgb(58 123 213 / 11%),
    inset -1px 0 0 rgb(231 214 187 / 33%),
    0 30px 90px rgb(45 55 72 / 16%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
}

.booking-shell::before {
  left: 48%;
  width: 32%;
  opacity: 0.27;
}

.booking-shell__topbar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(22px, 4vw, 38px);
  border-bottom: 1px solid rgb(45 55 72 / 8%);
  background: rgb(255 255 255 / 24%);
}

.booking-shell__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-shell__brand > div {
  display: grid;
  line-height: 1.25;
}

.booking-shell__brand strong {
  font-size: 0.87rem;
}

.booking-shell__brand small {
  color: var(--ink-faint);
  font-size: 0.64rem;
}

.booking-shell__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-faint);
  font-size: 0.66rem;
  font-weight: 650;
}

.booking-shell__secure svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.booking-intent {
  min-height: 590px;
  padding: 42px clamp(26px, 5vw, 48px) 34px;
  animation: stepIn 320ms var(--ease) both;
}

.booking-intent__options {
  display: grid;
  gap: 12px;
}

.booking-intent-card {
  display: grid;
  min-height: 142px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgb(45 55 72 / 11%);
  border-radius: 20px;
  background: rgb(255 255 255 / 57%);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 200ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-intent-card:hover {
  transform: translateY(-3px);
  border-color: rgb(40 104 184 / 28%);
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 16px 34px rgb(45 55 72 / 9%);
}

.booking-intent-card:focus-visible {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 62%);
}

.booking-intent-card--proposal {
  border-color: rgb(40 104 184 / 19%);
  background: linear-gradient(135deg, rgb(229 241 255 / 72%), rgb(255 246 232 / 69%));
}

.booking-intent-card--order {
  border-color: rgb(40 104 184 / 31%);
  background:
    radial-gradient(circle at 100% 0%, rgb(58 123 213 / 14%), transparent 45%),
    linear-gradient(135deg, rgb(255 255 255 / 86%), rgb(231 214 187 / 33%));
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 50%), 0 12px 28px rgb(45 55 72 / 7%);
}

.booking-intent-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgb(40 104 184 / 14%);
  border-radius: 17px;
  background: rgb(58 123 213 / 8%);
  color: var(--blue-action);
}

.booking-intent-card__icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.booking-intent-card > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.booking-intent-card small {
  color: var(--blue-action);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.booking-intent-card strong {
  font-size: 1rem;
}

.booking-intent-card em {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-style: normal;
  line-height: 1.45;
}

.booking-intent-card > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgb(58 123 213 / 8%);
  color: var(--blue-action);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.booking-intent__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 20px 0 0;
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-weight: 650;
}

.booking-intent__trust span {
  color: var(--success);
}

.booking-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 25px clamp(26px, 5vw, 48px) 10px;
}

.booking-progress > i {
  height: 1px;
  background: rgb(45 55 72 / 11%);
}

.booking-progress__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
}

.booking-progress__item span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgb(45 55 72 / 14%);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.booking-progress__item small {
  font-size: 0.65rem;
  font-weight: 700;
}

.booking-progress__item.is-active,
.booking-progress__item.is-complete {
  color: var(--ink);
}

.booking-progress__item.is-active span {
  border-color: var(--blue-action);
  background: var(--blue-action);
  color: white;
  box-shadow: 0 5px 14px rgb(40 104 184 / 22%);
}

.booking-progress__item.is-complete span {
  border-color: rgb(31 128 97 / 20%);
  background: rgb(31 128 97 / 11%);
  color: var(--success);
}

#booking-form {
  position: relative;
  min-height: 565px;
  padding: 26px clamp(26px, 5vw, 48px) 30px;
}

.booking-step {
  animation: stepIn 320ms var(--ease) both;
}

.booking-step[hidden],
.booking-success[hidden],
.booking-error[hidden],
.booking-controls button[hidden] {
  display: none;
}

.booking-step__heading {
  margin-bottom: 26px;
}

.booking-step__heading > small {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-action);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-step__heading h3 {
  margin-bottom: 9px;
  font-size: clamp(1.62rem, 3.4vw, 2.25rem);
  line-height: 1.12;
}

.booking-step__heading h3[tabindex="-1"]:focus {
  outline: none;
}

.booking-step__heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.goal-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 105px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgb(45 55 72 / 10%);
  border-radius: 17px;
  background: rgb(255 255 255 / 48%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 200ms var(--ease), box-shadow 180ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgb(58 123 213 / 28%);
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 8px 25px rgb(45 55 72 / 7%);
}

.choice-card:has(input:checked) {
  border-color: rgb(40 104 184 / 42%);
  background: rgb(58 123 213 / 7%);
  box-shadow: inset 0 0 0 1px rgb(58 123 213 / 6%), 0 8px 24px rgb(40 104 184 / 8%);
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 70%);
}

.choice-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(45 55 72 / 9%);
  border-radius: 13px;
  background: rgb(255 255 255 / 63%);
}

.choice-card__icon svg {
  width: 21px;
  fill: none;
  stroke: var(--blue-action);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.choice-card > span:nth-of-type(2) {
  display: grid;
  line-height: 1.25;
}

.choice-card strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.choice-card small {
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 0.66rem;
}

.choice-card > i {
  width: 16px;
  height: 16px;
  border: 1px solid rgb(45 55 72 / 19%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgb(255 255 255 / 95%);
}

.choice-card:has(input:checked) > i {
  border-color: var(--blue-action);
  background: var(--blue-action);
}

.availability-status {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  padding: 9px 12px;
  border-radius: 11px;
  background: rgb(58 123 213 / 6%);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
}

.availability-status.is-ready {
  background: rgb(31 128 97 / 7%);
  color: #366d5a;
}

.availability-status.is-error {
  background: rgb(184 63 75 / 7%);
  color: var(--danger);
}

.loading-dot {
  width: 11px;
  height: 11px;
  border: 2px solid rgb(40 104 184 / 18%);
  border-top-color: var(--blue-action);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.date-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.date-option,
.time-option {
  min-height: 72px;
  padding: 10px 4px;
  border: 1px solid rgb(45 55 72 / 10%);
  border-radius: 13px;
  background: rgb(255 255 255 / 48%);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.date-option:hover,
.time-option:hover {
  transform: translateY(-2px);
  border-color: rgb(40 104 184 / 30%);
  background: rgb(255 255 255 / 80%);
}

.date-option.is-selected,
.time-option.is-selected {
  border-color: var(--blue-action);
  background: var(--blue-action);
  color: white;
  box-shadow: 0 7px 18px rgb(40 104 184 / 19%);
}

.date-option span,
.date-option strong,
.date-option small {
  display: block;
}

.date-option span {
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.date-option strong {
  margin: 2px 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.date-option small {
  color: var(--ink-faint);
  font-size: 0.59rem;
}

.date-option.is-selected small {
  color: rgb(255 255 255 / 70%);
}

.time-picker {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgb(45 55 72 / 9%);
}

.time-picker__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.time-picker__heading strong {
  font-size: 0.83rem;
}

.time-picker__heading span {
  color: var(--ink-faint);
  font-size: 0.6rem;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.time-option {
  min-height: 46px;
  font-size: 0.76rem;
  font-weight: 700;
}

.booking-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 21px;
  padding: 13px 15px;
  border: 1px solid rgb(58 123 213 / 14%);
  border-radius: 13px;
  background: linear-gradient(135deg, rgb(58 123 213 / 7%), rgb(231 214 187 / 10%));
  font-size: 0.71rem;
}

.booking-summary strong {
  font-size: 0.77rem;
}

.booking-summary span {
  color: var(--ink-soft);
}

.booking-summary > small {
  display: block;
  flex-basis: 100%;
  margin-top: 0.45rem;
  color: var(--blue-action);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.form-field label span {
  color: var(--blue-action);
}

.form-field label em {
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(45 55 72 / 12%);
  border-radius: 12px;
  outline: 0;
  background: rgb(255 255 255 / 66%);
  color: var(--ink);
  font-size: 0.82rem;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.form-field input {
  height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 94px;
  padding: 12px 14px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0a8b2;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgb(40 104 184 / 55%);
  background: white;
  box-shadow: 0 0 0 4px rgb(58 123 213 / 9%);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgb(184 63 75 / 48%);
  background: rgb(255 250 250 / 88%);
}

.social-profile-field {
  min-inline-size: 0;
  margin: 3px 0 0;
  padding: 15px;
  border: 1px solid rgb(45 55 72 / 10%);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 58%), rgb(220 225 230 / 18%)),
    rgb(255 255 255 / 32%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 72%);
}

.social-profile-field legend {
  padding: 0 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.social-profile-field legend em {
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 500;
}

.social-profile-field > p {
  margin: 0 0 11px;
  color: var(--ink-faint);
  font-size: 0.66rem;
  line-height: 1.45;
}

.proposal-assets {
  min-inline-size: 0;
  margin: 3px 0 0;
  padding: 15px;
  border: 1px solid rgb(45 55 72 / 10%);
  border-radius: 16px;
  background: linear-gradient(135deg, rgb(255 255 255 / 62%), rgb(231 214 187 / 14%));
}

.proposal-assets legend {
  padding: 0 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.proposal-assets legend em {
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 500;
}

.proposal-assets > p {
  margin: 0 0 11px;
  color: var(--ink-faint);
  font-size: 0.66rem;
  line-height: 1.45;
}

.order-options {
  min-inline-size: 0;
  margin: 3px 0 0;
  padding: 16px;
  border: 1px solid rgb(40 104 184 / 17%);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgb(229 241 255 / 58%), rgb(255 246 232 / 44%)),
    rgb(255 255 255 / 42%);
}

.order-options legend {
  padding: 0 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 760;
}

.order-options legend span {
  color: var(--blue-action);
}

.order-options > p {
  margin: 0 0 12px;
  color: var(--ink-faint);
  font-size: 0.65rem;
  line-height: 1.45;
}

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

.hosting-option {
  position: relative;
  cursor: pointer;
}

.hosting-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hosting-option > span {
  display: grid;
  min-height: 150px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgb(45 55 72 / 11%);
  border-radius: 14px;
  background: rgb(255 255 255 / 62%);
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hosting-option:hover > span {
  transform: translateY(-2px);
  border-color: rgb(40 104 184 / 28%);
  background: rgb(255 255 255 / 88%);
}

.hosting-option:has(input:checked) > span {
  border-color: rgb(40 104 184 / 48%);
  background: white;
  box-shadow: inset 0 0 0 1px rgb(58 123 213 / 7%), 0 8px 22px rgb(40 104 184 / 9%);
}

.hosting-option:has(input:focus-visible) > span {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 62%);
}

.hosting-option i {
  justify-self: start;
  margin-bottom: 8px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgb(58 123 213 / 8%);
  color: var(--blue-action);
  font-size: 0.49rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hosting-option strong {
  margin-bottom: 5px;
  font-size: 0.72rem;
  line-height: 1.25;
}

.hosting-option em {
  margin-bottom: 6px;
  color: var(--blue-action);
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 800;
}

.hosting-option small {
  color: var(--ink-faint);
  font-size: 0.55rem;
  line-height: 1.4;
}

.order-options > .field-error {
  display: block;
  margin: 7px 2px 0;
}

.order-options__after {
  margin-top: 11px;
  padding: 11px 12px;
  border: 1px solid rgb(31 128 97 / 10%);
  border-radius: 11px;
  background: rgb(31 128 97 / 5%);
}

.order-options__after strong {
  display: block;
  margin-bottom: 3px;
  color: var(--success);
  font-size: 0.63rem;
}

.order-options__after p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.57rem;
  line-height: 1.45;
}

.proposal-dropzone {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px dashed rgb(40 104 184 / 28%);
  border-radius: 13px;
  background: rgb(255 255 255 / 54%);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
}

.proposal-dropzone:hover,
.proposal-dropzone:has(input:focus-visible) {
  transform: translateY(-1px);
  border-color: rgb(40 104 184 / 56%);
  background: white;
}

.proposal-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.proposal-dropzone__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgb(58 123 213 / 9%);
  color: var(--blue-action);
  font-size: 1.2rem;
}

.proposal-dropzone > span:last-child {
  display: grid;
  gap: 3px;
}

.proposal-dropzone strong {
  color: var(--ink);
  font-size: 0.7rem;
}

.proposal-dropzone small {
  color: var(--ink-faint);
  font-size: 0.57rem;
  line-height: 1.35;
}

.proposal-file-list {
  display: grid;
  gap: 6px;
  margin-top: 9px;
}

.proposal-file {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  border: 1px solid rgb(45 55 72 / 9%);
  border-radius: 10px;
  background: rgb(255 255 255 / 66%);
}

.proposal-file__preview {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgb(58 123 213 / 8%);
  color: var(--blue-action);
  font-size: 0.55rem;
  font-weight: 850;
}

.proposal-file__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proposal-file__copy {
  display: grid;
  min-width: 0;
}

.proposal-file__copy strong {
  overflow: hidden;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proposal-file__copy small {
  color: var(--ink-faint);
  font-size: 0.53rem;
}

.proposal-file button {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgb(45 55 72 / 6%);
  color: var(--ink-soft);
  font-size: 0.72rem;
  cursor: pointer;
}

.social-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.social-platform-option {
  position: relative;
  cursor: pointer;
}

.social-platform-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.social-platform-option > span {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgb(45 55 72 / 11%);
  border-radius: 12px;
  background: rgb(255 255 255 / 60%);
  color: var(--ink-soft);
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.social-platform-option:hover > span {
  transform: translateY(-1px);
  border-color: rgb(40 104 184 / 26%);
  background: rgb(255 255 255 / 86%);
}

.social-platform-option svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-platform-option strong {
  font-size: 0.68rem;
  letter-spacing: -0.01em;
}

.social-platform-option:has(input:checked) > span {
  border-color: rgb(40 104 184 / 38%);
  background: rgb(58 123 213 / 8%);
  box-shadow: inset 0 0 0 1px rgb(58 123 213 / 5%);
  color: var(--blue-action);
}

.social-platform-option--instagram:has(input:checked) > span {
  border-color: rgb(198 72 142 / 34%);
  background: linear-gradient(135deg, rgb(248 219 239 / 48%), rgb(255 239 218 / 42%));
  color: #a83f7a;
}

.social-platform-option--tiktok:has(input:checked) > span {
  border-color: rgb(25 153 165 / 32%);
  background: linear-gradient(135deg, rgb(208 247 246 / 48%), rgb(255 226 233 / 38%));
  color: #147a84;
}

.social-platform-option:has(input:focus-visible) > span {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 62%);
}

.social-profile-handle {
  margin-top: 11px;
  animation: stepIn 240ms var(--ease) both;
}

.social-profile-handle[hidden] {
  display: none;
}

.social-profile-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(45 55 72 / 12%);
  border-radius: 12px;
  background: rgb(255 255 255 / 72%);
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.social-profile-input:focus-within {
  border-color: rgb(40 104 184 / 55%);
  background: white;
  box-shadow: 0 0 0 4px rgb(58 123 213 / 9%);
}

.social-profile-input > span:first-child {
  display: grid;
  width: 42px;
  height: 30px;
  place-items: center;
  border-right: 1px solid rgb(45 55 72 / 10%);
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 800;
}

.social-profile-input input {
  min-width: 0;
  height: 47px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.79rem;
}

.social-profile-input input::placeholder {
  color: #a0a8b2;
}

.social-profile-input:has(input[aria-invalid="true"]) {
  border-color: rgb(184 63 75 / 48%);
  background: rgb(255 250 250 / 88%);
}

.social-profile-search {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-right: 6px;
  padding: 0 12px;
  border: 1px solid rgb(40 104 184 / 18%);
  border-radius: 9px;
  background: rgb(58 123 213 / 9%);
  color: var(--blue-action);
  font-size: 0.64rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease;
}

.social-profile-search:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--blue-action);
  color: white;
}

.social-profile-search:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.social-profile-hint {
  display: block;
  margin: 7px 2px 0;
  color: var(--ink-faint);
  font-size: 0.59rem;
  line-height: 1.4;
}

.social-profile-suggestions {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid rgb(58 123 213 / 12%);
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgb(236 245 255 / 76%), rgb(255 249 240 / 58%)),
    rgb(255 255 255 / 68%);
  box-shadow:
    0 8px 24px rgb(45 55 72 / 5%),
    inset 0 1px 0 rgb(255 255 255 / 82%);
  animation: stepIn 180ms var(--ease) both;
}

.social-profile-suggestions[hidden] {
  display: none;
}

.social-profile-suggestions__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.social-profile-suggestions__heading strong {
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.social-profile-suggestions__heading > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.social-profile-suggestions__heading i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2fc792;
  box-shadow: 0 0 0 4px rgb(47 199 146 / 10%);
}

.social-suggestion-list {
  display: grid;
  gap: 6px;
}

.social-suggestion {
  display: grid;
  min-width: 0;
  min-height: 64px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 8px;
  border: 1px solid rgb(45 55 72 / 9%);
  border-radius: 10px;
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 170ms var(--ease),
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

.social-suggestion:hover {
  transform: translateY(-2px);
  border-color: rgb(40 104 184 / 28%);
  background: white;
  box-shadow: 0 7px 18px rgb(45 55 72 / 7%);
}

.social-suggestion:focus-visible {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 62%);
}

.social-suggestion__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 50%;
  background: linear-gradient(145deg, #dce7f7, #f0ddc2);
  box-shadow: 0 2px 10px rgb(45 55 72 / 10%);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
}

.social-suggestion__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-suggestion__copy {
  display: grid;
  min-width: 0;
}

.social-suggestion__copy strong {
  overflow: hidden;
  font-size: 0.67rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-suggestion__verified {
  display: inline-grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-action);
  color: white;
  font-size: 0.48rem;
  vertical-align: 1px;
}

.social-suggestion__copy small {
  margin-top: 2px;
  color: var(--ink-faint);
  font-size: 0.55rem;
}

.social-suggestion__copy .social-suggestion__meta {
  margin-top: 3px;
  color: #798492;
  font-size: 0.5rem;
}

.social-suggestion__action {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgb(58 123 213 / 8%);
  color: var(--blue-action);
  font-size: 0.53rem;
  font-weight: 800;
  white-space: nowrap;
}

.social-suggestion:hover .social-suggestion__action {
  background: var(--blue-action);
  color: white;
}

.social-suggestion--loading {
  pointer-events: none;
}

.social-suggestion--loading > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(45 55 72 / 8%);
}

.social-suggestion--loading > span {
  display: grid;
  gap: 7px;
}

.social-suggestion--loading > span i {
  width: min(190px, 68%);
  height: 8px;
  border-radius: 999px;
  background: rgb(45 55 72 / 8%);
}

.social-suggestion--loading > span i:last-child {
  width: min(120px, 45%);
}

.social-suggestion--loading > i,
.social-suggestion--loading > span i {
  animation: socialSearchPulse 1.1s ease-in-out infinite alternate;
}

.social-profile-suggestions > small {
  display: block;
  margin: 8px 2px 0;
  color: var(--ink-faint);
  font-size: 0.53rem;
  line-height: 1.4;
}

@keyframes socialSearchPulse {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

.social-profile-handle .field-error {
  display: block;
  margin: 5px 2px 0;
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.61rem;
  line-height: 1.3;
}

.field-error:empty {
  display: none;
}

.consent-field {
  position: relative;
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 9px;
  margin-top: 16px;
  cursor: pointer;
}

.consent-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-field > span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid rgb(45 55 72 / 22%);
  border-radius: 5px;
  background: rgb(255 255 255 / 70%);
}

.consent-field input:checked + span {
  border-color: var(--blue-action);
  background: var(--blue-action);
}

.consent-field input:checked + span::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  content: "";
}

.consent-field:has(input:focus-visible) > span {
  outline: 3px solid white;
  box-shadow: 0 0 0 6px rgb(40 104 184 / 70%);
}

.consent-field small {
  color: var(--ink-faint);
  font-size: 0.64rem;
  line-height: 1.45;
}

.consent-field a {
  color: var(--blue-action);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid rgb(45 55 72 / 9%);
}

.booking-controls #booking-back {
  margin-right: auto;
}

.booking-controls .button {
  min-width: 126px;
}

.booking-shell__privacy {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0 30px 25px;
  color: var(--ink-faint);
  font-size: 0.61rem;
  font-weight: 600;
  text-align: center;
}

.booking-error {
  margin-top: 18px;
  padding: 11px 13px;
  border: 1px solid rgb(184 63 75 / 13%);
  border-radius: 11px;
  background: rgb(184 63 75 / 7%);
  color: var(--danger);
  font-size: 0.72rem;
  line-height: 1.5;
}

.booking-success {
  display: grid;
  min-height: 470px;
  align-content: center;
  justify-items: center;
  text-align: center;
  animation: stepIn 360ms var(--ease) both;
}

.booking-success__mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgb(31 128 97 / 14%);
  border-radius: 50%;
  background: rgb(31 128 97 / 9%);
  box-shadow: 0 15px 35px rgb(31 128 97 / 12%);
}

.booking-success__mark svg {
  width: 42px;
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.booking-success__mark.is-payment-cancelled,
.booking-success__mark.is-payment-pending {
  position: relative;
  background: rgb(231 214 187 / 42%);
  border-color: rgb(184 122 32 / 20%);
}

.booking-success__mark.is-payment-cancelled svg,
.booking-success__mark.is-payment-pending svg {
  display: none;
}

.booking-success__mark.is-payment-cancelled::after {
  content: "×";
  color: #9a651b;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.booking-success__mark.is-payment-pending::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid rgb(40 104 184 / 20%);
  border-top-color: var(--blue-action);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.booking-success > small {
  color: var(--success);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.booking-success h3 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.booking-success > p {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.booking-success__details {
  min-width: min(100%, 420px);
  margin-bottom: 25px;
  padding: 15px 18px;
  border: 1px solid rgb(45 55 72 / 9%);
  border-radius: 14px;
  background: rgb(255 255 255 / 49%);
  font-size: 0.76rem;
}

.booking-success__details strong,
.booking-success__details span {
  display: block;
}

.booking-success__details span {
  margin-top: 3px;
  color: var(--ink-soft);
}

.booking-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------
   FAQ, closing and footer
---------------------------------------------- */

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(520px, 1.35fr);
  align-items: start;
  gap: clamp(50px, 9vw, 130px);
  padding-top: 150px;
}

.faq__intro {
  position: sticky;
  top: 140px;
}

.faq__intro h2 {
  margin-bottom: 24px;
}

.faq__intro > p {
  max-width: 380px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgb(45 55 72 / 13%);
}

.faq-list details {
  border-bottom: 1px solid rgb(45 55 72 / 13%);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 3px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgb(45 55 72 / 13%);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -4px 52px 27px 3px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.closing {
  width: min(calc(100% - 32px), 1420px);
  padding-top: 140px;
}

.closing__panel {
  display: grid;
  min-height: 420px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 75px);
  overflow: hidden;
  padding: clamp(45px, 7vw, 92px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 15%, rgb(58 123 213 / 19%), transparent 37%),
    radial-gradient(circle at 92% 80%, rgb(231 214 187 / 46%), transparent 42%),
    linear-gradient(135deg, rgb(255 255 255 / 64%), rgb(247 248 250 / 35%));
}

.closing__light {
  position: absolute !important;
  z-index: 0 !important;
  top: -50%;
  right: 20%;
  width: 340px;
  height: 660px;
  transform: rotate(25deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 58%), rgb(231 214 187 / 24%), transparent);
  filter: blur(8px);
  opacity: 0.55;
}

.closing__panel > img {
  width: clamp(74px, 8vw, 112px);
  filter: drop-shadow(0 16px 24px rgb(45 55 72 / 18%));
}

.closing__panel small {
  display: block;
  margin-bottom: 11px;
  color: var(--blue-action);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.9vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
  padding: 45px 0 32px;
}

.site-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 45px 0 60px;
  border-top: 1px solid rgb(45 55 72 / 11%);
}

.brand--footer {
  max-width: 290px;
}

.site-footer__nav {
  display: grid;
  min-width: min(100%, 560px);
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.site-footer__nav > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__nav small {
  margin-bottom: 8px;
  color: var(--ink-faint);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav a {
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.site-footer__nav a:hover {
  color: var(--blue-action);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgb(45 55 72 / 9%);
  color: var(--ink-faint);
  font-size: 0.67rem;
}

/* Legal pages */
.legal-page {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 900px);
  min-height: 75vh;
  margin-inline: auto;
  padding: 160px 0 90px;
}

body:has(.legal-page) .site-header > .button {
  margin-left: auto;
}

.legal-card {
  padding: clamp(32px, 6vw, 70px);
  border-radius: 32px;
}

.legal-card__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--blue-action);
  font-size: 0.78rem;
  font-weight: 750;
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.legal-card h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-card a:not(.legal-card__back) {
  color: var(--blue-action);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card__notice {
  margin: 26px 0 36px;
  padding: 15px 17px;
  border: 1px solid rgb(184 122 32 / 18%);
  border-radius: 13px;
  background: rgb(231 214 187 / 26%);
  color: #755726 !important;
  font-size: 0.78rem;
}

.legal-card address {
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.75;
}

/* ---------------------------------------------
   Responsive design
---------------------------------------------- */

@media (max-width: 1120px) {
  .primary-navigation {
    gap: 18px;
  }

  .primary-navigation a {
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6vw, 5rem);
  }

  .floating-card--booking {
    right: -12px;
  }

  .floating-card--system {
    left: -8px;
  }

  .process-item {
    grid-template-columns: 62px minmax(0, 1fr) 190px;
    gap: 25px;
  }

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

  .process-item__content p {
    grid-column: 1;
    grid-row: auto;
    margin-top: 7px;
  }

  .process-item__artifact {
    width: 185px;
  }

  .studio__panel {
    padding: 70px 60px;
  }

  .booking {
    grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1.32fr);
    gap: 55px;
  }

  .closing__panel {
    grid-template-columns: auto 1fr;
  }

  .closing__panel .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .section {
    width: min(calc(100% - 38px), var(--content));
    padding-block: 92px;
  }

  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    min-height: 68px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .brand__text small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    z-index: 10;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 15px;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    border: 1px solid rgb(255 255 255 / 75%);
    border-radius: 22px;
    background: rgb(247 248 250 / 92%);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    backdrop-filter: blur(24px) saturate(150%);
    transition: opacity 180ms ease, transform 220ms var(--ease), visibility 180ms ease;
  }

  .primary-navigation.is-open {
    transform: translateY(0) scale(1);
    visibility: visible;
    opacity: 1;
  }

  .primary-navigation a {
    min-height: 50px;
    padding: 14px 10px;
    border-bottom: 1px solid rgb(45 55 72 / 8%);
    font-size: 0.95rem;
  }

  .primary-navigation a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 145px;
  }

  .hero__copy {
    max-width: 730px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 10vw, 6.2rem);
  }

  .hero__visual {
    width: min(100%, 650px);
    min-height: 590px;
    margin: 0 auto;
  }

  .showcase-browser {
    top: 55px;
    right: 6%;
    width: 82%;
  }

  .floating-card--booking {
    right: 0;
  }

  .hero__trust {
    margin-top: 0;
  }

  .statement__grid,
  .section-heading--split,
  .booking,
  .faq {
    grid-template-columns: 1fr;
  }

  .statement__grid,
  .section-heading--split,
  .booking,
  .faq {
    gap: 42px;
  }

  .statement__copy {
    max-width: 620px;
  }

  .section-heading--split {
    align-items: start;
  }

  .section-heading--split > p {
    max-width: 670px;
  }

  .outcome-card {
    padding-inline: 25px;
  }

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

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

  .price-card--main {
    min-height: 610px;
  }

  .pricing__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .draft-choice {
    grid-column: 1 / -1;
  }

  .service-card,
  .service-card--feature,
  .service-card--wide {
    min-height: 390px;
    grid-column: auto;
    grid-row: auto;
  }

  .service-card--wide {
    grid-template-columns: auto 1fr;
    min-height: 280px;
  }

  .process-item {
    grid-template-columns: 60px 1fr;
  }

  .process-item__artifact {
    display: none !important;
  }

  .studio {
    width: calc(100% - 24px);
  }

  .studio__panel {
    min-height: 1080px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 70px 50px;
  }

  .studio__copy {
    max-width: 680px;
  }

  .studio__visual {
    min-height: 480px;
  }

  .studio-mark {
    width: 390px;
  }

  .booking__intro,
  .faq__intro {
    position: static;
  }

  .booking__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  .booking__intro .section-label,
  .booking__intro h2,
  .booking__intro > p {
    grid-column: 1 / -1;
  }

  .booking-note {
    align-self: end;
  }

  .booking-shell {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .faq__intro {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 84px;
  }

  .section {
    width: calc(100% - 28px);
    padding-block: 76px;
  }

  .section-label {
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .statement h2,
  .booking__intro h2,
  .faq__intro h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .site-header {
    min-height: 62px;
    border-radius: 19px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 0.78rem;
    letter-spacing: 0.035em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    width: calc(100% - 28px);
    padding-top: 125px;
    padding-bottom: 50px;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 23px;
    font-size: 0.57rem;
    letter-spacing: 0.075em;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.25rem, 16.2vw, 4.6rem);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__microcopy {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.69rem;
  }

  .hero__visual {
    min-height: 460px;
  }

  .showcase-browser {
    top: 40px;
    right: 1%;
    width: 96%;
    min-height: 340px;
    transform: rotateY(0) rotateZ(1deg);
    border-radius: 22px;
  }

  .showcase-browser__bar {
    height: 46px;
  }

  .showcase-browser__canvas {
    min-height: 292px;
    padding: 13px;
  }

  .mock-hero {
    min-height: 184px;
    padding: 18px 13px;
  }

  .mock-heading {
    height: 12px;
  }

  .mock-hero__visual img {
    width: 54px;
  }

  .mock-metrics span {
    height: 35px;
  }

  .floating-card--booking {
    right: -4px;
    bottom: 10px;
    width: 238px;
    min-height: 88px;
    padding: 12px;
  }

  .floating-card--system {
    display: none;
  }

  .floating-card__icon {
    width: 41px;
    height: 41px;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    font-size: 0.66rem;
  }

  .hero__trust i {
    display: none;
  }

  .statement {
    padding-top: 90px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .outcome-card {
    min-height: 210px;
  }

  .outcome-card + .outcome-card {
    border-top: 1px solid rgb(45 55 72 / 11%);
    border-left: 0;
  }

  .outcome-card__number {
    margin-bottom: 40px;
  }

  .service-card,
  .service-card--feature,
  .service-card--wide {
    min-height: 410px;
    padding: 27px;
    border-radius: 27px;
  }

  .service-card--wide {
    display: flex;
  }

  .pricing {
    padding-top: 100px;
  }

  .price-card--main {
    min-height: 590px;
    padding: 32px 27px;
    border-radius: 28px;
  }

  .price-card__eyebrow {
    margin-bottom: 35px;
  }

  .price-card__price strong {
    font-size: clamp(4.4rem, 23vw, 6.3rem);
  }

  .price-card--main .button {
    width: 100%;
  }

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

  .draft-choice {
    grid-column: auto;
  }

  .hosting-card,
  .draft-choice {
    padding: 25px 23px;
    border-radius: 22px;
  }

  .service-card--wide > p:not(.service-card__eyebrow) {
    margin: 0 0 24px;
  }

  .service-card h3 {
    font-size: 1.9rem;
  }

  .work__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-card--large {
    grid-column: auto;
  }

  .project-card__image,
  .project-card--large .project-card__image {
    aspect-ratio: 1.2;
    border-radius: 23px;
  }

  .project-card--large .project-card__image--live {
    aspect-ratio: 1.04;
  }

  .project-card__booking-preview {
    right: 14px;
    bottom: 15px;
    width: 82%;
    padding: 5px;
    border-radius: 15px;
  }

  .project-card__booking-preview img {
    border-radius: 11px;
  }

  .project-card__booking-preview figcaption {
    top: 11px;
    left: 11px;
    padding: 5px 8px;
    font-size: 0.48rem;
  }

  .project-card__badge,
  .project-card__open {
    top: 14px;
  }

  .project-card__badge {
    left: 14px;
    padding: 7px 9px;
    font-size: 0.54rem;
  }

  .project-card__open {
    right: 14px;
    padding: 7px 9px;
    font-size: 0.54rem;
  }

  .project-card__meta {
    display: grid;
    gap: 9px;
  }

  .project-card__meta > span {
    white-space: normal;
  }

  .project-card__details {
    justify-items: start;
    text-align: left;
  }

  .process-item {
    min-height: 0;
    grid-template-columns: 45px 1fr;
    align-items: start;
    gap: 16px;
    padding: 30px 0;
  }

  .process-item__number {
    width: 42px;
    height: 42px;
  }

  .process-item__content h3 {
    font-size: 1.75rem;
  }

  .studio {
    width: calc(100% - 16px);
    padding-top: 80px;
  }

  .studio__panel {
    min-height: 950px;
    padding: 55px 24px;
    border-radius: 32px;
  }

  .studio__copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .studio__visual {
    min-height: 410px;
  }

  .studio-mark {
    width: min(100%, 320px);
  }

  .studio-values {
    right: 0;
    bottom: 4px;
    width: min(100%, 290px);
  }

  .booking__intro {
    display: block;
  }

  .booking-note {
    margin-top: 25px;
  }

  .booking-shell {
    min-height: 0;
    isolation: auto;
    border-radius: 26px;
    background: rgb(250 251 252 / 96%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .booking-shell::before,
  .booking-shell::after {
    display: none;
  }

  .booking-shell__topbar {
    padding-inline: 18px;
  }

  .booking-shell__secure {
    display: none;
  }

  .booking-intent {
    min-height: 0;
    padding: 28px 18px 26px;
  }

  .booking-intent-card {
    min-height: 132px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
  }

  .booking-intent-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .booking-intent-card > i {
    display: none;
  }

  .booking-intent-card strong {
    font-size: 0.88rem;
  }

  .booking-intent__trust {
    align-items: flex-start;
    text-align: center;
  }

  .booking-progress {
    padding: 22px 18px 8px;
  }

  .booking-progress__item {
    display: grid;
    justify-items: center;
    gap: 4px;
  }

  .booking-progress__item small {
    font-size: 0.55rem;
  }

  #booking-form {
    min-height: 0;
    padding: 24px 18px 26px;
  }

  .goal-options,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 88px;
  }

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

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

  .form-field--full {
    grid-column: auto;
  }

  .social-platforms {
    gap: 6px;
  }

  .social-platform-option > span {
    min-height: 58px;
    flex-direction: column;
    gap: 4px;
    padding: 7px 5px;
  }

  .social-platform-option strong {
    font-size: 0.61rem;
  }

  .social-profile-input {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .social-profile-search {
    grid-column: 1 / -1;
    min-height: 42px;
    margin: 0 6px 6px;
  }

  .social-suggestion-list {
    grid-template-columns: 1fr;
  }

  .social-suggestion {
    min-height: 49px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .social-suggestion__action {
    grid-column: auto;
  }

  .proposal-dropzone {
    align-items: flex-start;
  }

  .hosting-options {
    grid-template-columns: 1fr;
  }

  .hosting-option > span {
    min-height: 132px;
  }

  .booking-summary {
    display: grid;
    gap: 4px;
  }

  .booking-controls {
    flex-wrap: wrap;
  }

  .booking-controls .button:not(#booking-back) {
    flex: 1;
  }

  .booking-controls #booking-back {
    min-width: 92px;
  }

  .booking-shell__privacy {
    padding-inline: 20px;
  }

  .faq-list summary {
    min-height: 76px;
    padding-block: 20px;
  }

  .faq-list details p {
    margin-right: 5px;
  }

  .closing {
    width: calc(100% - 16px);
  }

  .closing__panel {
    min-height: 520px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding: 42px 28px;
    border-radius: 30px;
  }

  .closing__panel .button {
    grid-column: auto;
  }

  .site-footer {
    width: calc(100% - 28px);
  }

  .site-footer__main {
    display: grid;
    gap: 48px;
  }

  .site-footer__nav {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .site-footer__nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin-block: -6px;
    padding-block: 6px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 5px;
  }

  .mobile-booking-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgb(255 255 255 / 27%);
    border-radius: 18px;
    background: rgb(23 34 48 / 93%);
    box-shadow: 0 18px 45px rgb(23 34 48 / 28%);
    color: white;
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
  }

  .mobile-booking-cta > span {
    display: grid;
    line-height: 1.15;
  }

  .mobile-booking-cta small {
    margin-bottom: 3px;
    color: rgb(255 255 255 / 52%);
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .mobile-booking-cta strong {
    font-size: 0.86rem;
    letter-spacing: -0.01em;
  }

  .mobile-booking-cta i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: var(--blue-action);
    font-style: normal;
  }
}

@media (max-width: 340px) {
  .date-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand__text strong {
    font-size: 0.71rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .glass-surface::after {
    opacity: 0.48;
  }

  .service-card:hover,
  .project-card:hover .project-card__image img,
  .button:hover,
  .date-option:hover,
  .time-option:hover,
  .choice-card:hover {
    transform: none;
  }
}

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

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

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
