@font-face {
  font-family: "DaMiOne";
  src: url("assets/DaMiOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CruinnRegular";
  src: url("assets/Cruinn-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.68);
  --muted-strong: rgba(244, 244, 241, 0.82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
  --section-padding-y: 30px;
  --section-padding-x: 28px;
  --card-padding: 20px;
  --app-vh: 1vh;
  --app-vw: 100vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Cruinn", "Inter", sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  min-width: 0;
  min-height: calc(var(--app-vh) * 100);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #060606 0%, #0d0d0d 42%, #050505 100%);
  color: var(--text);
}

.site-video-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-bg-video,
.site-bg-fallback,
.site-bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-bg-video {
  object-fit: cover;
  filter: grayscale(1) brightness(0.48) contrast(1.08);
  transform: scale(1.04);
  background: #040404;
}

.site-bg-fallback {
  inset: 50% auto auto 50%;
  width: min(72vw, 760px);
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.site-video-background.video-ready .site-bg-fallback {
  opacity: 0;
}

.site-bg-overlay {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.04), transparent 0 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.025), transparent 0 16%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.52), rgba(6, 6, 6, 0.62) 42%, rgba(4, 4, 4, 0.72) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.065), transparent 0 18%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.04), transparent 0 16%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.035), transparent 0 18%);
  filter: blur(10px);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 88%);
  animation: gridFloat 24s linear infinite;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: calc(var(--app-vh) * 100);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
}

.page-shell::before {
  top: 14%;
  left: -8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.025),
    0 0 0 48px rgba(255, 255, 255, 0.015);
  opacity: 0.3;
  animation: orbitPulse 14s ease-in-out infinite;
}

.page-shell::after {
  right: -10%;
  bottom: 8%;
  width: 460px;
  height: 460px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.045), transparent 62%);
  filter: blur(24px);
  opacity: 0.18;
  animation: ambientDrift 22s ease-in-out infinite alternate-reverse;
}

.topbar,
main,
.footer {
  width: min(100%, var(--max-width));
  max-width: calc(var(--app-vw) - 32px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  width: min(100%, var(--max-width));
  max-width: calc(var(--app-vw) - 32px);
  margin-left: auto;
  margin-right: auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, opacity 260ms ease, background 260ms ease, border-color 260ms ease;
}

.topbar.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav a {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.brand-logo {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 7, 7, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.22);
}

.topbar .brand-logo {
  width: clamp(260px, 24vw, 330px);
  justify-content: center;
  padding: 4px 14px;
}

.brand-logo-image {
  display: block;
  width: clamp(126px, 13.5vw, 182px);
  height: auto;
  border-radius: 999px;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

.topbar .brand-logo-image {
  width: min(100%, 270px);
  max-width: 100%;
}

.brand-script {
  font-family: "DaMiOne", "Damion", cursive;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(244, 244, 241, 0.9);
}

.hero-brand-medallion {
  display: inline-flex;
  align-items: center;
  margin: 0 0 38px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 48%),
    rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.24);
}

.hero-brand-image {
  display: block;
  width: min(100%, 260px);
  height: auto;
  border-radius: 18px;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

.brand-logo:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.78);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 10px;
  color: var(--muted);
  font-size: 1.42rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav a,
.footer-links a,
.footer-policy-button {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  transition: color 220ms ease, opacity 220ms ease;
}

.nav a:hover,
.footer-links a:hover,
.footer-policy-button:hover {
  color: var(--text);
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 244, 241, 0.8);
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a,
.footer-policy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-policy-button:hover,
.footer-policy-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

main {
  padding: 14px 0 0;
}

section {
  margin: 0 0 14px;
}

main > section:first-child {
  margin-top: 0;
}

.hero,
.lead,
.trust-compact,
.work-steps,
.showcase-toggle,
.deliveries-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.28fr;
  gap: 28px;
  min-height: 50vh;
  padding: 16px var(--section-padding-x) 6px;
  align-items: start;
}

.hero-single {
  grid-template-columns: 1fr;
  max-width: none;
}

.hero-copy,
.about-panel,
.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.hero-copy {
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero-copy > .eyebrow {
  display: block;
  margin: 10px 0 24px;
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.trust-head > .eyebrow,
.work-steps-head > .eyebrow,
.lead-copy > .eyebrow,
.footer-brand p {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 5.8vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy h1,
.section-head h2,
.benefit-card h3,
.timeline-step h3,
.catalog-meta h3,
.lead-copy h2 {
  font-family: "DaMiOne", "Damion", cursive;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-text,
.section-note,
.about p,
.lead-copy p,
.timeline-step p,
.benefit-card p,
.catalog-specs,
.review-card p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.lead-copy p {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.hero-text {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 28px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.button-primary {
  background: #f5f5f1;
  color: #0c0c0c;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12);
}

.button-primary:hover {
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(255, 255, 255, 0.18);
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.button-secondary,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-side {
  display: grid;
  gap: 10px;
  align-self: end;
}

.hero-note,
.hero-metrics article {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.54);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.hero-note:hover,
.hero-metrics article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(9, 9, 9, 0.62);
}

.hero-note {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-note-label {
  display: block;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(244, 244, 241, 0.78);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  max-width: 22ch;
  margin-bottom: 10px;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.hero-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics article {
  min-width: 0;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-metrics strong,
.catalog-price,
.review-author strong {
  display: block;
  margin-bottom: 8px;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.82rem;
}

.hero-metrics span,
.review-author span {
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.92rem;
}

.metric-lines {
  display: block;
}

.metric-lines > span {
  display: block;
  white-space: nowrap;
}

.metric-direct-copy {
  display: block;
  width: 200%;
  max-width: 200%;
  letter-spacing: -0.025em;
}

.metric-geo-copy {
  display: inline-block;
  width: 200%;
  max-width: 200%;
}

.lead {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.about,
.trust-compact {
  padding: var(--section-padding-y) var(--section-padding-x) 22px;
}

.work-steps {
  padding: var(--section-padding-y) var(--section-padding-x) 22px;
}

.showcase-toggle,
.deliveries-showcase {
  padding: var(--section-padding-y) var(--section-padding-x) 22px;
}

.trust-showcase-toggle {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-compact .deliveries-showcase {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: none;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.split-head {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-note {
  max-width: 430px;
  margin-bottom: 10px;
}

.timeline-step,
.lead-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.timeline-step,
.lead-form {
  padding: var(--card-padding);
}

.lead {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.trust-head h2 {
  max-width: 18ch;
}

.work-steps-head h2 {
  max-width: 13ch;
}

.deliveries-head h2 {
  max-width: 19ch;
}

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

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

.showcase-toggle-bar,
.deliveries-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.showcase-toggle-copy span {
  display: block;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.7;
}

.showcase-toggle-button {
  min-width: 220px;
}

.deliveries-controls {
  display: flex;
  gap: 10px;
}

.deliveries-nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.deliveries-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.deliveries-showcase[hidden] {
  display: none;
}

.deliveries-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.deliveries-track::-webkit-scrollbar {
  display: none;
}

.delivery-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 9, 0.52);
  scroll-snap-align: start;
  cursor: zoom-in;
}

.delivery-photo {
  position: relative;
  height: 220px;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
    #111;
  background-size: cover;
  background-position: center;
}

.delivery-photo::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto 18px;
  height: 64%;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0));
  filter: blur(2px);
  opacity: 0.85;
}


.delivery-photo-a::before {
  clip-path: polygon(12% 66%, 24% 44%, 56% 36%, 79% 46%, 89% 66%, 76% 70%, 21% 72%);
}

.delivery-photo-b::before {
  clip-path: polygon(10% 68%, 22% 48%, 52% 38%, 83% 48%, 90% 67%, 75% 72%, 18% 72%);
}

.delivery-photo-c::before {
  clip-path: polygon(12% 67%, 24% 46%, 58% 35%, 82% 47%, 90% 66%, 76% 72%, 21% 73%);
}

.delivery-photo-d::before {
  clip-path: polygon(11% 69%, 23% 47%, 55% 37%, 81% 48%, 90% 68%, 77% 72%, 20% 73%);
}

.delivery-photo-e::before {
  clip-path: polygon(11% 68%, 24% 46%, 57% 36%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-f::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 82% 48%, 90% 68%, 77% 72%, 18% 73%);
}

.delivery-photo-g::before {
  clip-path: polygon(10% 69%, 23% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-h::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-i::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 81% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-j::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-k::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-l::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 81% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-m::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-n::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-o::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-p::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-q::before {
  clip-path: polygon(10% 68%, 22% 47%, 55% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-r::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-s::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-t::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo-u::before {
  clip-path: polygon(10% 68%, 22% 47%, 56% 37%, 82% 48%, 90% 68%, 77% 72%, 19% 73%);
}

.delivery-photo span {
  display: none;
}

.delivery-meta {
  padding: 16px 18px 18px;
}

.delivery-meta strong {
  display: block;
  margin-bottom: 10px;
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 1rem;
}

.delivery-meta span {
  display: block;
  color: var(--muted);
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  line-height: 1.5;
}

.delivery-meta p {
  display: none;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 4, 4, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 1100px);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-media {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  touch-action: pan-y;
  cursor: grab;
}

.lightbox-media:active {
  cursor: grabbing;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.lightbox-close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 84px);
  margin: 0 auto;
  border-radius: 20px;
  object-fit: contain;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  left: 18px;
  bottom: 30px;
  z-index: 1;
  display: inline-grid;
  justify-items: start;
  gap: 3px;
  width: fit-content;
  max-width: min(420px, calc(100% - 36px));
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.14), rgba(10, 10, 10, 0.54));
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.lightbox-title {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.lightbox-route {
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 720px) {
  .lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    padding: 12px;
    border-radius: 20px;
  }

  .lightbox-image {
    max-height: calc(100vh - 40px);
  }

  .lightbox-caption {
    left: 12px;
    bottom: 18px;
    max-width: min(280px, calc(100% - 24px));
    padding: 8px 12px;
    border-radius: 14px;
  }
}

.trust-compact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 9, 0.52);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 36px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.work-step-card {
  min-height: 168px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(9, 9, 9, 0.52);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 36px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.trust-compact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.58);
}

.work-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.58);
}

.trust-compact-card strong {
  display: block;
  margin-bottom: 0;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 1.08rem;
}

.work-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 244, 241, 0.78);
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-step-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 1.06rem;
}

.trust-compact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.55;
}

.trust-check-copy {
  font-size: 0.92rem;
  line-height: 1.55;
}

.work-step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.7;
}

.work-step-copy-flow span {
  display: block;
}

.lead-form {
  padding: 20px;
}

.lead-form label {
  display: block;
  margin-bottom: 12px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-strong);
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.button-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 10px 4px 0;
  color: var(--muted);
}

.policy-note {
  margin: 10px 4px 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
}

.policy-note a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-trigger,
.footer-policy-button {
  padding: 0;
  color: var(--text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-trigger {
  border: 0;
  background: none;
}

.footer-policy-button {
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
}

.privacy-panel {
  max-width: 100%;
}

.privacy-panel h2 {
  max-width: none;
}

.privacy-panel strong {
  color: var(--text);
}

.privacy-section[hidden] {
  display: none;
}

.footer {
  display: grid;
  gap: 5px;
  margin-top: 0;
  padding: 0 0 20px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.footer-brand {
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 330px);
}

.footer-brand .brand-logo-footer {
  width: 100%;
  justify-content: center;
  padding: 4px 14px;
}

.footer-brand .brand-logo-image {
  width: min(100%, 270px);
  max-width: 100%;
  transform: none;
}

.footer-side {
  flex: 1 1 auto;
  min-width: 0;
  width: min(100%, 900px);
}

.rates-card {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
}

.rates-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rates-title {
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.9rem;
}

.rates-source,
.rates-date,
.rates-loading {
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.76rem;
}

.rates-list {
  position: relative;
  display: block;
  overflow: hidden;
  overflow-y: hidden;
  width: 100%;
  margin: 0;
  padding: 5px 0 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  scrollbar-width: none;
}

.rates-list::-webkit-scrollbar {
  display: none;
}

.rates-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-width: max-content;
  animation: tickerScroll 34s linear infinite;
  --ticker-loop-width: 0px;
  will-change: transform;
}

.rates-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  padding-right: 24px;
}

.rate-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 5px;
  white-space: nowrap;
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
}

.rate-row::after {
  content: "•";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(244, 244, 241, 0.28);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
}

.rate-code {
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.8rem;
  white-space: nowrap;
}

.rate-name {
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.76rem;
  white-space: nowrap;
}

.rate-value {
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--text);
  white-space: nowrap;
}

.rates-date {
  margin: 8px 0 0;
  text-align: right;
}

.footer-description {
  margin: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  line-height: 1.7;
  max-width: 900px;
  justify-self: end;
  text-align: right;
}

.footer-company {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(244, 244, 241, 0.62);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  justify-self: end;
  text-align: right;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 30;
  width: min(calc(var(--app-vw) - 32px), 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-title {
  margin: 0 0 6px;
  color: var(--text);
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 0.92rem;
}

.cookie-banner-text {
  margin: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-policy-trigger {
  padding: 0;
  border: 0;
  background: none;
  color: var(--text);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-accept {
  flex: 0 0 auto;
  min-width: 150px;
}

.footer-links {
  align-items: center;
  justify-content: flex-end;
  max-width: none;
  justify-self: end;
}

.hero-status-line,
.lead-trust-strip,
.lead-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-status-line {
  margin-top: 18px;
}

.hero-status-line span,
.lead-trust-strip span,
.lead-direct-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  backdrop-filter: blur(14px);
}

.hero-status-line span {
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-ticker {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(18px);
}

.market-ticker + .market-ticker,
.privacy-section[hidden] + .market-ticker {
  display: none;
}

.market-ticker::before,
.market-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}

.market-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0));
}

.market-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0));
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  min-width: max-content;
  animation: tickerScroll 28s linear infinite;
  --ticker-loop-width: 0px;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 34px;
  padding-right: 34px;
}

.ticker-group span {
  color: rgba(244, 244, 241, 0.72);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lead {
  position: relative;
  overflow: hidden;
}

.lead::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -8%;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 66%);
  filter: blur(16px);
  opacity: 0.42;
  pointer-events: none;
}

.lead-copy {
  position: relative;
  z-index: 1;
}

.lead-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.lead-trust-strip span {
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  justify-content: center;
  min-height: 48px;
  font-size: 0.88rem;
  text-align: center;
}

.lead-form {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(9, 9, 9, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.lead-form-glow {
  position: absolute;
  inset: -22% auto auto 50%;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
  filter: blur(20px);
  opacity: 0.34;
  transform: translateX(-50%);
  pointer-events: none;
}

.lead-form-head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
}

.lead-form-head strong {
  display: block;
  margin-bottom: 8px;
  font-family: "DaMiOne", "Cruinn", "Inter", sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}

.lead-form-head span {
  margin: 0;
  color: var(--muted);
  font-family: "CruinnRegular", "Cruinn", "Inter", sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  white-space: nowrap;
}

.lead-form label,
.button-submit,
.policy-note,
.form-note,
.lead-direct-links {
  position: relative;
  z-index: 1;
}

.lead-direct-links {
  margin-top: 14px;
}

.lead-direct-links a {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.lead-direct-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.footer-button {
  min-width: 210px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero,
  .lead,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .split-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .hero-copy {
    transform: translateY(-44px);
  }

  .hero-empty {
    min-height: 52vh;
  }

  .hero-copy > .eyebrow {
    margin: 18px 0 22px;
  }

  .hero {
    width: min(100%, var(--max-width));
    max-width: calc(var(--app-vw) - 20px);
  }

  .topbar,
  main,
  .footer {
    width: min(100%, var(--max-width));
    max-width: calc(var(--app-vw) - 20px);
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
  }

  .brand-logo {
    padding: 5px 8px;
  }

  .topbar .brand-logo {
    width: clamp(220px, 28vw, 280px);
    padding: 4px 12px;
  }

  .button-ghost {
    display: none;
  }

  main {
    padding-top: 12px;
  }

  .hero,
  .benefits,
  .process,
  .risks,
  .trust,
  .deliveries,
  .contract,
  .faq,
  .catalog,
  .reviews,
  .about,
  .lead,
  .trust-compact,
  .work-steps {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .hero,
  .lead,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .hero-metrics,
  .trust-compact-grid,
  .work-steps-grid {
    grid-template-columns: 1fr;
  }

  .showcase-toggle-bar,
  .deliveries-showcase-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contract-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  h2 {
    max-width: 12ch;
  }

  .hero-actions,
  .footer,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .catalog-card img,
  .review-card img {
    height: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .rates-track {
    animation: tickerScroll 28s linear infinite !important;
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.04);
  }
}

@keyframes gridFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-36px, -36px, 0);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.24;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.38;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--ticker-loop-width, 0px)), 0, 0);
  }
}

.proof,
.curator,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  padding: var(--section-padding-y) var(--section-padding-x);
}

.contract-features,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.contract-feature,
.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--card-padding);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.contract-feature:hover,
.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--surface-strong);
}

.contract-feature strong,
.proof-card strong {
  display: block;
  margin-bottom: 10px;
}

.contract-feature p,
.proof-card span {
  color: var(--muted);
  line-height: 1.7;
}

.proof-card strong {
  font-size: 1.55rem;
  line-height: 1;
}

.curator-panel,
.cta-band-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.curator-panel p,
.cta-band-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .contract-features,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .proof,
  .curator,
  .cta-band {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .contract-features,
  .proof-grid,
  .curator-panel,
  .cta-band-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .footer-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .footer-side {
    width: min(100%, 760px);
  }

  .footer-description,
  .footer-links {
    justify-self: stretch;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .hero-status-line,
  .lead-trust-strip,
  .lead-direct-links {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-side {
    width: 100%;
  }

  .hero-status-line span,
  .lead-trust-strip span,
  .lead-direct-links a,
  .footer-button {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics,
  .lead-trust-strip {
    grid-template-columns: 1fr;
  }

  .market-ticker {
    padding: 12px 0;
  }

  .ticker-track {
    animation-duration: 22s;
  }

  .rates-track {
    animation: tickerScroll 26s linear infinite;
    animation-duration: 26s;
    will-change: transform;
  }

  .ticker-group {
    gap: 24px;
    padding-right: 24px;
  }

  .ticker-group span {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .lead-form-head {
    padding: 12px 14px;
  }

  .rates-card {
    min-width: 0;
    width: 100%;
  }

  .rates-group {
    gap: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 760px) {
  .site-bg-fallback {
    width: min(84vw, 380px);
  }

  .site-video-background {
    background: #040404;
  }

  .site-bg-video {
    object-fit: cover;
    transform: scale(0.96);
  }

  .topbar {
    top: 8px;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand-logo {
    justify-content: center;
    width: auto;
    padding: 8px 16px;
  }

  .brand-logo-image {
    width: min(100%, 142px);
  }

  .topbar .brand-logo {
    width: 100%;
    max-width: 260px;
    padding: 4px 12px;
  }

  .topbar .brand-logo-image {
    width: min(100%, 220px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }

  .nav a {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
    white-space: normal;
  }

  .topbar.menu-open .nav {
    display: flex;
  }

  .topbar.menu-open .menu-toggle span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 14px 14px 12px;
  }

  .hero-shell {
    gap: 12px;
  }

  .hero-copy {
    transform: none;
  }

  .hero-copy > .eyebrow {
    margin: 0 0 10px;
  }

  .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(1.78rem, 9.2vw, 2.45rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-status-line {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-status-line span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  .hero-side {
    align-self: stretch;
    gap: 10px;
  }

  .hero-note,
  .hero-metrics article {
    padding: 12px;
  }

  .hero-note {
    min-height: auto;
  }

  .hero-note-label {
    margin-bottom: 12px;
  }

  .hero-note strong {
    max-width: none;
    font-size: 1rem;
  }

  .hero-note p,
  .hero-metrics span,
  .lead-copy p,
  .showcase-toggle-copy span,
  .trust-compact-card p,
  .work-step-card p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-metrics article {
    min-height: auto;
    gap: 6px;
  }

  .trust-compact,
  .work-steps,
  .lead {
    padding: 18px 14px;
  }

  .section-head {
    gap: 6px;
    margin-bottom: 14px;
  }

  .trust-head h2,
  .work-steps-head h2,
  .deliveries-head h2,
  .lead-copy h2 {
    max-width: none;
    font-size: clamp(1.38rem, 7.2vw, 1.92rem);
    line-height: 0.92;
    letter-spacing: 0;
  }

  .showcase-toggle-button {
    width: 100%;
    min-width: 0;
  }

  .deliveries-nav {
    display: none;
  }

  .deliveries-track {
    grid-auto-columns: minmax(224px, 80vw);
    gap: 12px;
    padding-bottom: 2px;
  }

  .delivery-photo {
    height: 188px;
    padding: 14px;
  }

  .delivery-photo::before {
    inset: 14px 14px auto 14px;
  }

  .delivery-meta {
    padding: 14px;
  }

  .delivery-meta strong {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }

  .delivery-meta span {
    font-size: 0.92rem;
  }

  .lead {
    gap: 14px;
  }

  .lead-form,
  .lead-form-head {
    padding: 14px;
  }

  .lead-form-head span {
    white-space: normal;
  }

  .lead-trust-strip {
    margin-top: 16px;
  }

  .lead-trust-strip span {
    min-height: 42px;
    font-size: 0.82rem;
  }

  .lead-form input,
  .lead-form textarea {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .policy-note,
  .form-note {
    font-size: 0.88rem;
  }

  .lightbox-dialog {
    width: 100%;
    padding: 10px;
    border-radius: 18px;
  }

  .lightbox-media {
    width: 100%;
  }

  .lightbox-image {
    width: 100%;
    max-height: calc(100vh - 96px);
  }

  .lightbox-caption {
    left: 10px;
    bottom: 10px;
    max-width: min(220px, calc(100% - 20px));
    padding: 7px 10px;
  }

  .lightbox-title {
    font-size: 0.82rem;
  }

  .lightbox-route {
    font-size: 0.72rem;
  }

  .footer {
    gap: 8px;
    padding-bottom: 18px;
  }

  .footer-bar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    gap: 10px;
  }

  .footer-brand,
  .footer-side,
  .rates-card {
    width: 100%;
  }

  .footer-brand .brand-logo-footer {
    width: 100%;
    justify-content: center;
    padding: 6px 16px;
  }

  .rates-card-head {
    margin-bottom: 6px;
  }

  .rates-list {
    padding: 4px 0 2px;
    display: block;
    overflow-x: hidden;
    max-width: 100%;
  }

  .footer-description,
  .footer-company,
  .footer-links,
  .rates-date {
    text-align: left;
    justify-self: stretch;
  }

  .footer-description {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .footer-company {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .footer-links a,
  .footer-policy-button {
    width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .rates-title {
    font-size: 0.84rem;
  }

  .rates-source,
  .rates-date,
  .rates-loading,
  .rate-name,
  .rate-value {
    font-size: 0.72rem;
  }

  .rate-code {
    font-size: 0.76rem;
  }

  .metric-direct-copy {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

  .metric-geo-copy {
    width: auto;
    max-width: none;
  }

  .metric-direct-copy br {
    display: none;
  }
}

@media (max-width: 420px) {
  .topbar,
  main,
  .footer,
  .hero {
    width: min(100%, var(--max-width));
    max-width: calc(var(--app-vw) - 16px);
  }

  .hero,
  .trust-compact,
  .work-steps,
  .lead,
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(1.6rem, 8.7vw, 2.1rem);
    line-height: 0.9;
  }

  .hero-text {
    font-size: 0.86rem;
  }

  .trust-head h2,
  .work-steps-head h2,
  .deliveries-head h2,
  .lead-copy h2 {
    font-size: clamp(1.2rem, 6.8vw, 1.62rem);
    line-height: 0.92;
  }

  .hero-status-line span {
    font-size: 0.8rem;
    min-height: 32px;
  }

  .deliveries-track {
    grid-auto-columns: minmax(214px, 84vw);
  }

  .delivery-photo {
    height: 172px;
  }
}

@media (max-width: 390px) {
  .topbar,
  main,
  .footer,
  .hero {
    width: min(100%, var(--max-width));
    max-width: calc(var(--app-vw) - 12px);
  }

  .topbar {
    padding: 10px 12px;
    border-radius: 22px;
  }

  .brand-logo-image {
    width: min(100%, 138px);
  }

  .topbar .brand-logo {
    max-width: 232px;
    padding: 4px 10px;
  }

  .topbar .brand-logo-image {
    width: min(100%, 200px);
  }

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

  .hero,
  .trust-compact,
  .work-steps,
  .lead,
  .privacy-panel,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .work-steps {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero-copy > .eyebrow,
  .section-head .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    max-width: 7.6ch;
    font-size: clamp(1.34rem, 7.4vw, 1.78rem);
    line-height: 0.9;
    margin-bottom: 8px;
  }

  .trust-head h2,
  .work-steps-head h2,
  .deliveries-head h2,
  .lead-copy h2 {
    font-size: clamp(1.04rem, 5.8vw, 1.36rem);
    line-height: 0.9;
    max-width: none;
    margin-bottom: 10px;
  }

  .hero-text,
  .lead-copy p,
  .trust-compact-card p,
  .work-step-card p,
  .showcase-toggle-copy span,
  .policy-note,
  .form-note,
  .footer-description {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .work-step-copy-flow {
    white-space: nowrap;
    font-size: 0.6rem;
    letter-spacing: -0.02em;
  }

  .work-step-copy-flow span {
    display: inline;
  }

  .work-step-copy-flow span + span::before {
    content: " ";
  }

  .hero-status-line {
    gap: 6px;
  }

  .hero-status-line span,
  .lead-trust-strip span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero-note,
  .hero-metrics article,
  .trust-compact-card,
  .work-step-card,
  .lead-form,
  .lead-form-head {
    padding: 10px;
    border-radius: 16px;
  }

  .work-step-card {
    padding-left: 8px;
    padding-right: 8px;
  }

  .trust-compact-card {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 5px;
  }

  .hero-note strong,
  .trust-compact-card strong,
  .work-step-card strong,
  .delivery-meta strong,
  .lead-form-head strong {
    font-size: 0.88rem;
  }

  .metric-direct-copy {
    width: auto;
    max-width: none;
    white-space: nowrap;
  }

  .metric-geo-copy {
    width: auto;
    max-width: none;
  }

  .metric-direct-copy br {
    display: none;
  }

  .hero-metrics span br {
    display: none;
  }

  .metric-geo-copy br {
    display: none;
  }

  .hero-metrics strong,
  .hero-metrics span {
    font-size: 0.76rem;
  }

  .work-step-number {
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-bottom: 10px;
    font-size: 0.62rem;
  }

  .lead-form input,
  .lead-form textarea {
    padding: 12px;
    border-radius: 14px;
  }

  .button,
  .button-submit,
  .showcase-toggle-button {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .market-ticker {
    padding: 10px 0;
  }

  .ticker-group {
    gap: 18px;
    padding-right: 18px;
  }

  .ticker-group span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .deliveries-track {
    grid-auto-columns: minmax(198px, 82vw);
    gap: 10px;
  }

  .delivery-photo {
    height: 156px;
    padding: 10px;
  }

  .delivery-photo::before {
    inset: 10px 10px auto 10px;
  }

  .delivery-meta {
    padding: 10px;
  }

  .delivery-meta span,
  .lightbox-route {
    font-size: 0.78rem;
  }

  .footer {
    gap: 6px;
    padding-bottom: 14px;
  }

  .footer-bar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 10px;
    gap: 8px;
    border-radius: 18px;
  }

  .footer-brand,
  .footer-side {
    width: 100%;
  }

  .footer-brand .brand-logo-footer {
    width: 100%;
    justify-content: center;
  }

  .rates-card {
    width: 100%;
  }

  .rates-card-head {
    gap: 8px;
  }

  .rates-list {
    overflow-x: auto;
    max-width: 100%;
  }

  .rates-title {
    font-size: 0.76rem;
  }

  .rates-source,
  .rates-date,
  .rates-loading,
  .rate-name,
  .rate-value,
  .footer-links a,
  .footer-policy-button {
    font-size: 0.68rem;
  }

  .rate-code {
    font-size: 0.7rem;
  }

  .footer-links {
    gap: 6px;
    margin-top: 2px;
  }
}

@media (max-width: 760px) {
  .footer,
  .footer-bar,
  .footer-brand,
  .footer-side,
  .rates-card,
  .footer-description,
  .footer-company,
  .footer-links {
    min-width: 0;
    max-width: 100%;
  }

  .footer {
    display: grid;
    gap: 10px;
  }

  .footer-bar {
    display: block;
    overflow: hidden;
    margin-bottom: 0;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .cookie-banner {
    width: calc(var(--app-vw) - 20px);
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-banner-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .cookie-accept {
    width: 100%;
    min-width: 0;
  }

  .brand-logo-footer {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    overflow: hidden;
  }

  .brand-logo-footer .brand-logo-image {
    width: min(100%, 220px);
    max-width: 100%;
    transform: none;
  }

  .footer-side {
    display: block;
    width: 100%;
  }

  .rates-card {
    overflow: hidden;
  }

  .rates-list {
    width: 100%;
    max-width: 100%;
  }

  .footer-description,
  .footer-company {
    padding-inline: 4px;
    overflow-wrap: anywhere;
    text-align: left;
    justify-self: stretch;
  }

  .footer-description {
    margin-top: 2px;
  }

  .footer-company {
    gap: 2px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-inline: 0;
    margin-top: 2px;
    justify-items: stretch;
  }

  .footer-links a,
  .footer-policy-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 38px;
    padding: 0 14px;
    max-width: 100%;
    border-radius: 14px;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}
