:root {
  --red: #ef1f2f;
  --red-dark: #b70e1b;
  --ink: #111318;
  --charcoal: #191c22;
  --soft-black: #232730;
  --white: #ffffff;
  --offwhite: #f4f4f1;
  --muted: #83858b;
  --line: rgba(17, 19, 24, 0.14);
  --max: 1280px;
  --font-display: 'Orbitron', 'M PLUS 1', sans-serif;
  --font-heading: 'M PLUS 1', sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--offwhite);
  font-family: var(--font-heading);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* Angular display lettering for the brand and interface labels. */
.brand,
.desktop-nav,
.eyebrow,
.kicker,
.section-label,
.trust-story-label,
.trust-step,
.ai-core,
.data-chip,
.btn,
.mobile-menu,
.number-card strong,
.flow-card > b,
.tech-tags,
.contact-word,
.top-button {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-feature-settings: 'palt';
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}
.site-header.scrolled {
  background: rgba(17, 19, 24, 0.92);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  transform: skew(-8deg);
}
.brand-text strong {
  color: var(--red);
  text-shadow: 0 0 18px rgba(239, 31, 47, 0.4);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.desktop-nav a {
  opacity: 0.8;
  transition: 0.2s;
}
.desktop-nav a:hover {
  opacity: 1;
  color: var(--red);
}
.desktop-nav .nav-cta {
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 11px 16px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 0;
}

.section-dark {
  background: var(--ink);
  color: white;
}
.section-light {
  background: var(--offwhite);
}
.section-red {
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 150px clamp(22px, 6vw, 92px) 100px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0 0 auto auto;
  width: 42vw;
  height: 100%;
  background: linear-gradient(180deg, rgba(239, 31, 47, 0.22), transparent 55%);
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}
.eyebrow,
.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6c7cb;
  margin-bottom: 26px;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.08);
}
.title-line,
.finale-line {
  display: block;
  white-space: nowrap;
}
.accent-line {
  color: #ff643d;
  position: relative;
  text-shadow: 0 0 28px rgba(239, 31, 47, 0.28);
}
.accent-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8d97 70%, transparent);
  box-shadow: 0 0 12px rgba(239, 31, 47, 0.55);
  transform: scaleX(0.15);
  transform-origin: left;
  animation: lineGrow 1.2s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}
.hero-lead {
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.8;
  color: #c7c8cc;
  margin: 36px 0 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 200px;
  padding: 18px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #ff3745;
  transform: translateY(-2px);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}
.btn-ghost:hover {
  border-color: #fff;
}
.btn.big {
  min-width: min(100%, 390px);
  padding: 22px 24px;
}

.hero-orbit {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 480 / 420;
  justify-self: center;
}
.orbit-ring {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}
.ring-a {
  animation: spin 18s linear infinite;
}
.ring-a::before,
.ring-b::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff643d;
  top: -5px;
  left: 50%;
  box-shadow: 0 0 28px rgba(239, 31, 47, 0.85);
}
.ring-b {
  top: 21.5%;
  left: 30%;
  width: 40%;
  border-style: dashed;
  animation: spinReverse 13s linear infinite;
}
.ai-core {
  position: absolute;
  inset: 33% 39% 43%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-content: center;
  text-align: center;
  backdrop-filter: blur(4px);
}
.ai-core span {
  font-size: clamp(9px, 1vw, 12px);
  letter-spacing: 0.12em;
  color: #aaa;
}
.ai-core strong {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--red);
}
.data-chip {
  position: absolute;
  width: 47%;
  min-width: 0;
  padding: 14px 10px;
  background: rgba(17, 19, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}
.data-chip small {
  display: block;
  font-size: clamp(7px, 0.7vw, 9px);
  color: #9ca0a8;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.data-chip b {
  font-size: clamp(12px, 1.15vw, 16px);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.data-chip p {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(9px, 0.85vw, 11px);
  color: #b8bbc3;
}
.data-inputs {
  position: absolute;
  top: 5%;
  left: 12.5%;
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.data-inputs span {
  padding: 8px 4px;
  background: #1b1e25;
  border: 1px solid #48434a;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.data-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ff784f;
  stroke-width: 1.3;
  opacity: 0.8;
}
.ai-core small {
  margin-top: 5px;
  font-family: var(--font-heading);
  font-size: 9px;
  color: #c2c4cb;
  white-space: nowrap;
}
.orbit-caption {
  position: absolute;
  top: calc(71% + 100px);
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #c2c4cb;
  margin: 8px 0 0;
}
.orbit-caption span {
  display: block;
  margin-top: 4px;
  color: #858a95;
  font-size: 9px;
}
.chip-1 {
  left: 0;
  top: 71%;
}
.chip-2 {
  right: 0;
  top: 71%;
}
.chip-3 {
  left: 10%;
  bottom: 5%;
  animation: float 4.3s 0.8s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes float {
  50% {
    transform: translateY(-9px);
  }
}
.hero-footer {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 6vw, 92px);
  right: clamp(22px, 6vw, 92px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #70747e;
  font-size: 10px;
  letter-spacing: 0.13em;
}

.trust-story {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 30px clamp(22px, 4vw, 64px) 38px;
}
.trust-story-head {
  width: min(var(--max), 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.trust-story-head p {
  margin: 0;
  color: #74777e;
  font-size: 12px;
  line-height: 1.75;
  max-width: 500px;
}
.trust-story-label {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.trust-track {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}
.trust-track::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 106px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(239, 31, 47, 0.08),
    rgba(239, 31, 47, 0.7),
    rgba(239, 31, 47, 0.08)
  );
  z-index: 0;
}
.trust-card {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 14px 16px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}
.trust-card + .trust-card {
  border-left: 0;
}
.trust-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.trust-step small {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.story-scene {
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0 -4px 12px;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #faf8f6 100%);
  border-bottom: 1px solid #efede9;
}
.story-scene svg {
  width: 100%;
  height: 150px;
  display: block;
  overflow: hidden;
}
.story-text {
  fill: #2c3038;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-anchor: middle;
}
.story-small {
  font-size: 9px;
}
.story-emphasis {
  fill: #d84725;
  font-family: var(--font-display);
  font-weight: 700;
}
.story-line {
  fill: none;
  stroke: #2c3038;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-soft {
  fill: none;
  stroke: #b8bbc1;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-red {
  fill: none;
  stroke: #e95a32;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-fill {
  fill: #fff;
  stroke: #2c3038;
  stroke-width: 1.4;
}
.story-redfill {
  fill: rgba(239, 31, 47, 0.08);
  stroke: var(--red);
  stroke-width: 1.3;
}
.story-dot {
  fill: var(--red);
}
.trust-card h3 {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.trust-card p {
  margin: 7px 0 0;
  color: #777a81;
  font-size: 10px;
  line-height: 1.6;
}
.trust-foot {
  width: min(var(--max), 100%);
  margin: 12px auto 0;
  display: flex;
  justify-content: flex-end;
  color: #94969b;
  font-size: 9px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .trust-story-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .trust-track {
    grid-template-columns: 1fr 1fr;
  }
  .trust-track::before {
    display: none;
  }
  .trust-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .trust-card:nth-child(n + 3) {
    border-top: 0;
  }
}
@media (max-width: 620px) {
  .trust-track {
    grid-template-columns: 1fr;
  }
  .trust-card + .trust-card {
    border-left: 1px solid var(--line);
    border-top: 0;
  }
  .story-scene {
    height: 165px;
  }
}

.section-label {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.section-label.light {
  border-color: rgba(255, 255, 255, 0.28);
}
.section-label span {
  color: var(--red);
}
.section-label.light span {
  color: #fff;
  opacity: 0.65;
}

.about {
  padding: 58px 0 120px;
}
.about-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}
.kicker {
  margin: 0 0 24px;
  color: var(--red);
}
.kicker.light {
  color: rgba(255, 255, 255, 0.65);
}
.about h2,
.features h2,
.screen h2,
.decision h2,
.flow h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.about h2 span,
.decision h2 span,
.contact h2 span {
  color: var(--red);
}
.about-copy {
  font-size: 16px;
  line-height: 2;
  color: #55585e;
}
.about-copy p:first-child {
  margin-top: 0;
}
.micro-note {
  margin-top: 34px;
  font-size: 11px;
  color: #8a8c92;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.features {
  padding: 58px 0 110px;
}
.features-head {
  width: min(var(--max), calc(100% - 44px));
  margin: 80px auto 60px;
}
.feature-list {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.feature-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.8fr) 1.4fr 60px;
  gap: 20px;
  align-items: center;
  min-height: 135px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}
.feature-row:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 16px;
  padding-right: 16px;
}
.feature-num {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}
.feature-name {
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 800;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.86;
}
.feature-arrow {
  font-size: 28px;
  text-align: right;
}

.screen {
  padding: 58px 0 110px;
  overflow: hidden;
}
.screen-header {
  width: min(var(--max), calc(100% - 44px));
  margin: 78px auto 30px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
}
.screen h2 span {
  color: var(--red);
}
.screen-header > p {
  width: min(440px, 100%);
  line-height: 1.9;
  color: #aaadb5;
  font-size: 14px;
}
.device-stage {
  position: relative;
  width: min(1110px, 92vw);
  height: 700px;
  margin: 58px auto 0;
  perspective: 1400px;
}
.device-stage::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 48%;
  width: 72%;
  height: 58%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 31, 47, 0.18),
    rgba(239, 31, 47, 0.03) 45%,
    transparent 70%
  );
  filter: blur(18px);
}
.device-stage::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 70%;
  height: 70px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(30px);
}
.ui-phone {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #f1f2f4 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #17191e;
  transform-style: preserve-3d;
}
.ui-phone::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.6),
    transparent 24%,
    transparent 76%,
    rgba(239, 31, 47, 0.05)
  );
}
.ui-topline {
  position: relative;
  z-index: 2;
  height: 54px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(14px);
}
.ui-topline .ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(239, 31, 47, 0.6);
}
.ui-topline b {
  font-size: 10px;
  letter-spacing: 0.16em;
}
.ui-topline small {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #9a9da5;
}
.ui-body {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.ui-eyebrow {
  margin: 0 0 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #989ba3;
}
.ui-metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 18px;
}
.ui-metric small {
  grid-column: 1/-1;
  font-size: 10px;
  color: #81848b;
  margin-bottom: 8px;
}
.ui-metric strong {
  font-size: 32px;
  letter-spacing: -0.055em;
}
.ui-metric > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}
.ui-metric.compact strong {
  font-size: 52px;
}
.ui-progress {
  height: 8px;
  overflow: hidden;
  background: #e2e4e7;
  border-radius: 999px;
  margin-bottom: 22px;
}
.ui-progress i {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef1f2f, #ff7a3d);
  animation: progressPulse 3s ease-in-out infinite;
  transform-origin: left;
}
@keyframes progressPulse {
  0%,
  100% {
    transform: scaleX(0.94);
  }
  50% {
    transform: scaleX(1);
  }
}
.ui-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}
.ui-split > div {
  padding: 14px;
  border: 1px solid #e0e2e5;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
}
.ui-split small {
  display: block;
  color: #95989f;
  font-size: 8px;
  margin-bottom: 7px;
}
.ui-split b {
  font-size: 13px;
}
.ui-chart {
  position: relative;
}
.ui-chart-line {
  height: 145px;
  margin: 0 0 22px;
  border-bottom: 1px solid #d7d9de;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 35px,
    rgba(17, 19, 24, 0.055) 35px 36px
  );
}
.ui-chart-line::after {
  content: '';
  position: absolute;
  left: 3%;
  right: 3%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, #ef1f2f 0 18%, #ff7a3d 18% 47%, #ef1f2f 47% 100%);
  clip-path: polygon(
    0 78%,
    10% 65%,
    22% 74%,
    34% 38%,
    48% 52%,
    60% 28%,
    72% 40%,
    84% 10%,
    100% 22%,
    100% 100%,
    0 100%
  );
  height: 60%;
  top: 24%;
  opacity: 0.85;
}
.ui-chart-line span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--red);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(239, 31, 47, 0.15);
  animation: chartDot 3s ease-in-out infinite;
}
.ui-chart-line span:nth-child(1) {
  left: 10%;
  top: 71%;
}
.ui-chart-line span:nth-child(2) {
  left: 27%;
  top: 62%;
  animation-delay: 0.2s;
}
.ui-chart-line span:nth-child(3) {
  left: 44%;
  top: 45%;
  animation-delay: 0.4s;
}
.ui-chart-line span:nth-child(4) {
  left: 62%;
  top: 52%;
  animation-delay: 0.6s;
}
.ui-chart-line span:nth-child(5) {
  left: 79%;
  top: 31%;
  animation-delay: 0.8s;
}
.ui-chart-line span:nth-child(6) {
  left: 94%;
  top: 19%;
  animation-delay: 1s;
}
@keyframes chartDot {
  50% {
    transform: translateY(-4px);
  }
}
.ui-hint {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: #17191e;
  color: #fff;
}
.ui-hint > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  font-style: normal;
}
.ui-hint small,
.ui-hint b {
  display: block;
}
.ui-hint small {
  font-size: 7px;
  opacity: 0.5;
  margin-bottom: 4px;
}
.ui-hint b {
  font-size: 10px;
}
.ui-greeting small {
  color: #999ca4;
  font-size: 8px;
  letter-spacing: 0.18em;
}
.ui-greeting h3 {
  margin: 10px 0 24px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.ui-focus-card {
  min-height: 92px;
  margin-bottom: 10px;
  padding: 16px 18px;
  border: 1px solid #dedfe3;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: 0.25s ease;
}
.ui-focus-card.hot {
  background: linear-gradient(135deg, #17191e, #242730);
  color: #fff;
  border-color: #30343d;
}
.ui-focus-card small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: #9b9da4;
  margin-bottom: 7px;
}
.ui-focus-card b {
  font-size: 12px;
}
.ui-focus-card > strong {
  font-size: 34px;
  letter-spacing: -0.06em;
}
.ui-focus-card > strong span {
  font-size: 10px;
  letter-spacing: 0;
  color: #9b9da4;
  margin-left: 2px;
}
.ui-focus-card.hot > strong {
  color: #ff5a42;
}
.ui-ai-note {
  margin-top: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid #dedfe3;
}
.ui-ai-note > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef1f2f, #ff853d);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
}
.ui-ai-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.7;
  color: #6d7077;
}
.ui-ai-note b {
  color: #17191e;
}
.ui-chart-bars {
  height: 210px;
  display: flex;
  gap: 9px;
  align-items: flex-end;
  padding: 16px 4px 0;
  border-bottom: 1px solid #d6d8dd;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 49px,
    rgba(17, 19, 24, 0.055) 49px 50px
  );
}
.ui-chart-bars i {
  flex: 1;
  height: var(--h);
  min-width: 10px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #ff6b43, #ef1f2f);
  transform-origin: bottom;
  animation: barBreathe 3.2s ease-in-out infinite;
}
.ui-chart-bars i:nth-child(2n) {
  animation-delay: 0.25s;
}
.ui-chart-bars i:nth-child(3n) {
  animation-delay: 0.5s;
}
@keyframes barBreathe {
  0%,
  100% {
    transform: scaleY(0.92);
  }
  50% {
    transform: scaleY(1);
  }
}
.ui-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin: 8px 0 24px;
  color: #9699a1;
  font-size: 8px;
}
.ui-risk {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e0e2e5;
}
.ui-risk small {
  display: block;
  color: var(--red);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}
.ui-risk b {
  font-size: 13px;
}
.ui-risk p {
  font-size: 9px;
  line-height: 1.65;
  color: #81848b;
  margin: 7px 0 0;
}
.ui-home {
  z-index: 3;
  width: 350px;
  height: 630px;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotateX(1deg);
  animation: uiFloatCenter 5.4s ease-in-out infinite;
}
.ui-sales,
.ui-demand {
  z-index: 2;
  width: 302px;
  height: 552px;
  top: 82px;
  opacity: 0.9;
}
.ui-sales {
  left: 5%;
  transform: rotateY(10deg) rotateZ(-5deg);
  animation: uiFloatLeft 5.9s ease-in-out infinite;
}
.ui-demand {
  right: 5%;
  transform: rotateY(-10deg) rotateZ(5deg);
  animation: uiFloatRight 6.2s 0.35s ease-in-out infinite;
}
@keyframes uiFloatCenter {
  50% {
    transform: translateX(-50%) translateY(-10px) rotateX(1deg);
  }
}
@keyframes uiFloatLeft {
  50% {
    transform: translateY(-8px) rotateY(10deg) rotateZ(-4deg);
  }
}
@keyframes uiFloatRight {
  50% {
    transform: translateY(-11px) rotateY(-10deg) rotateZ(4deg);
  }
}
.ui-caption {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #777b84;
}
.ui-caption span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.ui-caption p {
  margin: 0;
  max-width: 620px;
  text-align: right;
  font-size: 10px;
  line-height: 1.7;
}

.decision {
  padding: 58px 0 120px;
}
.decision-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.decision-copy > p:last-child {
  max-width: 620px;
  color: #686b72;
  line-height: 1.9;
}
.action-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.action-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px 70px 26px 26px;
  min-height: 150px;
}
.action-card.hot {
  border-left: 5px solid var(--red);
}
.action-card small {
  color: var(--red);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.action-card strong {
  display: block;
  font-size: 20px;
  margin: 16px 0 8px;
}
.action-card p {
  margin: 0;
  color: #7b7e84;
  font-size: 13px;
}
.action-card > span {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 44px;
  font-weight: 900;
  color: #ececee;
}

.flow {
  padding: 58px 0 120px;
  border-top: 1px solid var(--line);
}
.flow-head {
  width: min(var(--max), calc(100% - 44px));
  margin: 80px auto 40px;
}
.flow-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.flow-card {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flow-card b {
  color: var(--red);
  font-size: 13px;
}
.flow-card h3 {
  font-size: 23px;
  margin: 80px 0 15px;
}
.flow-card p {
  color: #6b6e74;
  line-height: 1.8;
  font-size: 13px;
}

.flow-story {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.flow-journey {
  position: relative;
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.flow-journey::before {
  content: '';
  position: absolute;
  left: 9%;
  right: 9%;
  top: 53px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(226, 74, 44, 0.18),
    rgba(226, 74, 44, 0.85),
    rgba(226, 74, 44, 0.18)
  );
}
.story-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.story-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 13px;
  border: 1px solid rgba(226, 74, 44, 0.28);
  border-radius: 50%;
  background: #f8f7f3;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(32, 35, 40, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}
.story-step:hover .story-icon {
  transform: translateY(-5px);
  border-color: var(--red);
}
.story-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-step small {
  display: block;
  color: #73767c;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.flow-speed {
  min-width: 190px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
}
.flow-speed span {
  display: block;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.flow-speed strong {
  display: block;
  color: #343942;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.flow-speed p {
  margin: 8px 0 0;
  color: #777a80;
  font-size: 11px;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .flow-story {
    grid-template-columns: 1fr;
  }
  .flow-speed {
    border-left: 0;
    border-top: 1px solid var(--line);
    text-align: center;
  }
}
@media (max-width: 560px) {
  .flow-journey {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 8px;
  }
  .flow-journey::before {
    display: none;
  }
  .story-icon {
    width: 62px;
    height: 62px;
  }
}

/* v8: flow story — square cards connected by lines */
.flow-story {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: stretch;
}
.flow-journey {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: center;
}
.flow-journey::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(226, 74, 44, 0.55);
  z-index: 0;
}
.story-step {
  position: relative;
  z-index: 1;
  min-height: 104px;
  padding: 14px 10px 12px;
  border: 1px solid rgba(226, 74, 44, 0.32);
  border-radius: 4px;
  background: #f8f7f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(32, 35, 40, 0.035);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.story-step:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 10px 28px rgba(32, 35, 40, 0.06);
}
.story-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: none;
}
.story-step:hover .story-icon {
  transform: none;
  border-color: transparent;
}
.story-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.story-step small {
  display: block;
  color: #73767c;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.flow-speed {
  min-width: 184px;
  padding: 18px 22px;
  border: 1px solid rgba(226, 74, 44, 0.22);
  border-radius: 4px;
  background: rgba(248, 247, 243, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 820px) {
  .flow-story {
    grid-template-columns: 1fr;
  }
  .flow-speed {
    border: 1px solid rgba(226, 74, 44, 0.22);
    text-align: center;
  }
  .flow-journey {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .flow-journey {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .flow-journey::before {
    display: none;
  }
  .story-icon {
    width: 40px;
    height: 40px;
  }
  .story-step {
    min-height: 96px;
  }
}

.contact {
  position: relative;
  min-height: 650px;
  padding: 100px clamp(22px, 6vw, 92px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(130px);
  opacity: 0.16;
  right: 8%;
  top: 14%;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.contact-copy {
  color: #a9acb3;
  max-width: 620px;
  line-height: 1.8;
  margin: 28px 0 32px;
}
.contact-word {
  position: absolute;
  right: -30px;
  bottom: -35px;
  font-size: clamp(110px, 17vw, 280px);
  font-weight: 900;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.07em;
}
.site-footer {
  min-height: 120px;
  padding: 25px clamp(22px, 6vw, 92px);
  background: #0d0f13;
  color: #6f7279;
  border-top: 1px solid #252830;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.footer-brand {
  color: #fff;
}

.mobile-menu {
  position: fixed;
  z-index: 1300;
  inset: 0;
  background: #111318;
  color: #fff;
  padding: 90px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: 0.35s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  font-size: 34px;
  font-weight: 800;
  border-bottom: 1px solid #30333a;
  padding-bottom: 18px;
}
.menu-close {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(239, 31, 47, 0.08), transparent 65%);
  transform: translate(-50%, -50%);
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero {
    align-items: start;
    padding-top: 150px;
    min-height: 900px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    width: 100%;
  }
  .hero-orbit {
    width: min(100%, 480px);
    margin-bottom: 24px;
  }
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
  .number-card:nth-child(2) {
    border-right: 0;
  }
  .number-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .about-grid,
  .decision-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .feature-row {
    grid-template-columns: 55px 0.8fr 1.2fr 35px;
  }
  .device-stage {
    height: 620px;
  }
  .ui-home {
    width: 320px;
    height: 590px;
  }
  .ui-sales,
  .ui-demand {
    width: 240px;
    height: 455px;
    top: 100px;
    opacity: 0.6;
  }
  .ui-sales {
    left: -1%;
  }
  .ui-demand {
    right: -1%;
  }
  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }
  .brand-text {
    font-size: 13px;
  }
  .hero {
    min-height: 820px;
    padding: 130px 20px 80px;
  }
  .hero h1 {
    font-size: clamp(26px, 8.5vw, 56px);
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 30px;
  }
  .mobile-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .hero-orbit {
    width: min(100%, 420px);
    margin-bottom: 70px;
  }
  .data-chip {
    padding: 10px 7px;
  }
  .data-chip b {
    font-size: 12px;
  }
  .hero-footer {
    left: 20px;
    right: 20px;
  }
  .hero-footer p {
    display: none;
  }
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
  .number-card {
    min-height: 165px;
    padding: 20px;
  }
  .number-card strong {
    font-size: clamp(34px, 9vw, 48px);
  }
  .number-card p {
    font-size: 11px;
    line-height: 1.5;
  }
  .about,
  .features,
  .screen,
  .decision,
  .flow {
    padding-top: 35px;
    padding-bottom: 80px;
  }
  .about-grid,
  .features-head,
  .screen-header,
  .decision-grid,
  .flow-head {
    margin-top: 55px;
  }
  .about h2,
  .features h2,
  .screen h2,
  .decision h2,
  .flow h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .about-copy {
    font-size: 14px;
  }
  .feature-row {
    grid-template-columns: 42px 1fr 30px;
    gap: 12px;
    padding: 20px 0;
  }
  .feature-desc {
    grid-column: 2 / 4;
    font-size: 12px;
  }
  .screen-header {
    display: block;
  }
  .screen-header > p {
    margin-top: 26px;
  }
  .device-stage {
    height: 555px;
    width: 100%;
  }
  .ui-home {
    width: 286px;
    height: 530px;
  }
  .ui-home .ui-body {
    padding: 20px;
  }
  .ui-greeting h3 {
    font-size: 23px;
  }
  .ui-focus-card {
    min-height: 82px;
    padding: 13px 15px;
  }
  .ui-focus-card > strong {
    font-size: 29px;
  }
  .ui-sales,
  .ui-demand {
    width: 190px;
    height: 350px;
    top: 120px;
    opacity: 0.28;
    pointer-events: none;
  }
  .ui-sales {
    left: -88px;
  }
  .ui-demand {
    right: -88px;
  }
  .ui-caption {
    display: block;
  }
  .ui-caption p {
    margin-top: 10px;
    text-align: left;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-card {
    min-height: 210px;
  }
  .flow-card h3 {
    margin-top: 48px;
  }
  .contact {
    min-height: 580px;
    padding: 80px 20px;
  }
  .site-footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* 2026 LP refinement: small-business value, customer voice, technical trust */
:root {
  --red: #f04424;
  --red-dark: #c92f17;
  --orange-soft: #ff6a32;
  --blue-glow: rgba(70, 130, 255, 0.12);
}

.cursor-glow {
  background: radial-gradient(
    circle,
    var(--blue-glow),
    rgba(70, 130, 255, 0.045) 32%,
    transparent 68%
  );
  mix-blend-mode: screen;
}

.voices {
  padding: 58px 0 120px;
  border-top: 1px solid var(--line);
}
.voices-head {
  width: min(var(--max), calc(100% - 44px));
  margin: 80px auto 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 80px;
  align-items: end;
}
.voices-head .kicker {
  grid-column: 1 / -1;
}
.voices-head h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.voices-head h2 span {
  color: var(--red);
}
.voices-head > p:last-child {
  margin: 0;
  color: #686b72;
  line-height: 1.9;
  max-width: 520px;
}
.voice-grid {
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.voice-card {
  position: relative;
  min-height: 285px;
  padding: 32px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.voice-card small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.voice-card h3 {
  margin: 62px 0 16px;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.voice-card p {
  max-width: 520px;
  margin: 0;
  color: #6d7077;
  font-size: 13px;
  line-height: 1.85;
}
.voice-card em {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #a3a5aa;
}

.tech {
  position: relative;
  padding: 120px 0 110px;
  overflow: hidden;
}
.tech::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--red);
  filter: blur(150px);
  opacity: 0.09;
  left: 12%;
  top: 8%;
}
.tech-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 44px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: end;
}
.tech h2 {
  margin: 0;
  font-size: clamp(26px, 4.3vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.tech-copy > p {
  margin: 0 0 28px;
  color: #aeb1b8;
  line-height: 1.95;
  font-size: 14px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c8cbd1;
  font-size: 10px;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.025);
}
.tech-formulas {
  position: absolute;
  z-index: 0;
  inset: 26px 0 auto;
  display: flex;
  width: max-content;
  opacity: 0.075;
  font:
    600 14px/1 'Orbitron',
    sans-serif;
  letter-spacing: 0.07em;
  white-space: nowrap;
  color: #68d391;
  animation: formulaDrift 34s linear infinite;
}
.tech-formulas div {
  padding-right: 80px;
}
@keyframes formulaDrift {
  to {
    transform: translateX(-50%);
  }
}

.brand-finale {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #df2638;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-finale .contact-inner {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 24px 78px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  container-type: inline-size;
}
.finale-kicker {
  display: none;
}
.brand-finale .contact-inner h2 {
  position: relative;
  margin: 0;
  padding: 0.4em 0.55em;
  font-family: 'M PLUS 1 Code', var(--font-heading);
  font-size: clamp(12px, 5cqi, 46px);
  line-height: 1.7;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-feature-settings: normal;
  transform: skewX(-4deg);
}
.brand-finale .contact-inner h2::before,
.brand-finale .contact-inner h2::after {
  content: '';
  position: absolute;
  width: 0.55em;
  height: 0.55em;
  opacity: 0.65;
  pointer-events: none;
}
.brand-finale .contact-inner h2::before {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}
.brand-finale .contact-inner h2::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.brand-finale .contact-inner h2 span {
  color: #fff;
}
.brand-finale .contact-copy,
.finale-sub,
.btn-finale {
  display: none;
}
.finale-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.finale-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.16em;
}
.finale-credit {
  position: absolute;
  right: 100px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.finale-studio-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-family: var(--font-display);
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  padding: 10px 2px 8px;
  min-width: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.finale-studio-link:hover,
.finale-studio-link:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateY(-2px);
}
.btn-studio {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.btn-studio:hover {
  background: #fff;
  color: #e83b21;
  transform: translateY(-2px);
}
.brand-finale .contact-word {
  color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 980px) {
  .voices-head,
  .tech-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .voices-head > p:last-child {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .voices {
    padding: 35px 0 80px;
  }
  .voices-head {
    margin-top: 55px;
  }
  .voices-head h2 {
    font-size: clamp(38px, 11vw, 58px);
  }
  .tech h2 {
    font-size: clamp(24px, 8vw, 54px);
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .voice-card {
    min-height: 235px;
    padding: 24px;
  }
  .voice-card h3 {
    margin-top: 46px;
  }
  .tech {
    padding: 88px 0 82px;
  }
  .brand-finale .contact-inner {
    width: min(100% - 28px, 720px);
    padding: 56px 10px 64px;
  }
  .brand-finale .contact-inner h2 {
    font-size: clamp(12px, 5cqi, 44px);
  }
  .finale-actions {
    margin-top: 24px;
  }
  .finale-credit {
    right: 84px;
    bottom: 20px;
    font-size: 9px;
    gap: 6px;
  }
  .finale-studio-link {
    font-size: 10px;
    gap: 8px;
  }
}

/* Floating TOP button */
.top-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(22, 24, 28, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease;
}
.top-button::before {
  content: '↑';
  position: absolute;
  top: 8px;
  font-size: 15px;
  color: var(--red);
}
.top-button span {
  transform: translateY(7px);
}
.top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.top-button:hover {
  background: var(--red);
}
.top-button:hover::before {
  color: #fff;
}
@media (max-width: 640px) {
  .top-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* v11: integrate journey labels inside each numbered flow card */
.flow-fast {
  width: min(var(--max), calc(100% - 44px));
  margin: -12px auto 22px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  color: #6f7278;
}
.flow-fast span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.16em;
}
.flow-fast strong {
  font-size: 24px;
  color: #343942;
  letter-spacing: -0.03em;
}
.flow-fast p {
  margin: 0;
  font-size: 11px;
}
.integrated-story .flow-card {
  position: relative;
  min-height: 330px;
  padding: 24px 28px 28px;
  overflow: visible;
}
.flow-card-visual {
  height: 92px;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
  position: relative;
  color: var(--red);
}
.flow-card-visual svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.flow-card-visual small {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #777a80;
}
.flow-card-visual::after,
.flow-card-visual::before {
  display: none;
}
.integrated-story .flow-card b {
  display: block;
  margin: 0;
  color: var(--red);
}
.integrated-story .flow-card h3 {
  margin: 54px 0 15px;
}
.integrated-story .flow-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 49px;
  left: 56px;
  right: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 74, 44, 0.18), rgba(226, 74, 44, 0.72));
  z-index: 0;
  pointer-events: none;
}
.integrated-story .flow-card:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 44px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(226, 74, 44, 0.82);
  border-right: 1.5px solid rgba(226, 74, 44, 0.82);
  transform: translateX(1px) rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
.integrated-story .flow-card > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .flow-fast {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .flow-fast p {
    width: 100%;
  }
  .integrated-story .flow-card:not(:last-child)::after,
  .integrated-story .flow-card:not(:last-child)::before {
    display: none;
  }
}
