:root {
  --bg: #081018;
  --bg-soft: #0f1b27;
  --panel: rgba(16, 28, 40, 0.78);
  --panel-strong: rgba(12, 22, 32, 0.94);
  --line: rgba(125, 153, 184, 0.18);
  --line-strong: rgba(160, 183, 209, 0.34);
  --text: #f1f6fb;
  --text-muted: #a2b3c6;
  --accent: #d8a65c;
  --accent-strong: #f0ba6b;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 166, 92, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(90, 127, 171, 0.14), transparent 24%),
    linear-gradient(180deg, #071018 0%, #0b131d 45%, #081018 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(145, 169, 193, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 169, 193, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 72%);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 60;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f1f6fb;
  color: #081018;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.92), rgba(92, 147, 216, 0.92));
  box-shadow: 0 0 18px rgba(216, 166, 92, 0.32);
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(8, 16, 24, 0.82), rgba(8, 16, 24, 0.52));
  backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(160, 183, 209, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition:
    padding 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 92, 0.12), transparent);
  pointer-events: none;
}

.topbar.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(8, 16, 24, 0.9), rgba(8, 16, 24, 0.68));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-word {
  font-size: 1.28rem;
  line-height: 1;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topnav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(160, 183, 209, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.topnav a,
.footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  background: rgba(255, 255, 255, 0.04);
}

.topnav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.topnav a:hover,
.topnav a:focus-visible,
.button:hover,
.button:focus-visible {
  color: var(--text);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(216, 166, 92, 0.8);
  outline-offset: 3px;
}

.section {
  position: relative;
  padding: 72px 0;
  scroll-margin-top: 110px;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 92, 0.18), rgba(92, 147, 216, 0.18), transparent);
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 183, 209, 0.08), transparent);
  pointer-events: none;
}

.section-kicker {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.section-kicker span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.6), rgba(92, 147, 216, 0.45));
}

.section-kicker span:nth-child(1) {
  width: 46px;
}

.section-kicker span:nth-child(2) {
  width: 72px;
}

.section-kicker span:nth-child(3) {
  width: 110px;
}

.section-reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 36px;
  padding-top: 36px;
}

.hero-grid-glow {
  display: none;
}

.hero-interface-backdrop,
.section-product-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-interface-backdrop {
  inset: 10% -4% 10% 18%;
  border-radius: 36px;
  opacity: 0.52;
  filter: saturate(0.94);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0.96) 48%, transparent 100%);
}

.hero-interface-backdrop::before,
.section-product-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-interface-backdrop::before {
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 0.82) 0%, rgba(8, 16, 24, 0.4) 26%, rgba(8, 16, 24, 0.16) 54%, rgba(8, 16, 24, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 16, 24, 0.08), rgba(8, 16, 24, 0.38));
}

.section-product-backdrop::before {
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 0.52), rgba(8, 16, 24, 0.28)),
    linear-gradient(180deg, rgba(8, 16, 24, 0.12), rgba(8, 16, 24, 0.34));
}

.hero-interface-image,
.section-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section.value {
  overflow: clip;
}

.section.audience {
  overflow: clip;
}

.section-product-backdrop {
  inset: 12px -2% 12px 12%;
  border-radius: 30px;
  opacity: 0.38;
  filter: blur(0.6px) saturate(0.88);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 16%, rgba(255, 255, 255, 0.98) 40%, transparent 100%);
}

.section-product-backdrop-center {
  inset: 12px 4% 12px 4%;
  opacity: 0.24;
  filter: blur(0.8px) saturate(0.82);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 18%, rgba(255, 255, 255, 0.9) 82%, transparent 100%);
}

.section.value > *:not(.section-product-backdrop) {
  position: relative;
  z-index: 1;
}

.section.audience > *:not(.section-product-backdrop) {
  position: relative;
  z-index: 1;
}

.workflow-ribbon {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 26px;
}

.workflow-ribbon-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  align-content: stretch;
  height: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.workflow-ribbon-label {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.workflow-ribbon-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(170, 194, 218, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.workflow-ribbon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.workflow-ribbon-card p {
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 8.6ch;
  margin-top: 20px;
  font-size: clamp(2.2rem, 4.3vw, 3.6rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-lead,
.section-heading p,
.info-card p,
.feature-card p,
.timeline-card p,
.contact-panel p,
.footer p {
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 0.92rem;
}

.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(162, 179, 198, 0.84);
  font-size: 0.9rem;
}

.hero-scroll-line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.84), transparent);
}

.value-strip,
.feature-highlight,
.workflow-intro-card,
.convenience-badge-row {
  border: 1px solid rgba(160, 183, 209, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
}

.value-strip span,
.feature-highlight-tags span,
.convenience-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(170, 194, 218, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

.hero-brand-banner {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 430px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(170, 194, 218, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 50%, rgba(216, 166, 92, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(8, 15, 24, 0.82), rgba(8, 15, 24, 0.68));
  box-shadow: var(--shadow);
}

.hero-brand-banner picture {
  display: block;
}

.hero-brand-banner:hover {
  border-color: rgba(216, 166, 92, 0.18);
}

.hero-brand-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 24, 0.28));
  pointer-events: none;
}

.hero-brand-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(92, 147, 216, 0.16), transparent 26%);
  pointer-events: none;
}

.hero-brand-media {
  display: block;
  width: 100%;
  height: 184px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #0b1118;
  background: linear-gradient(135deg, var(--accent-strong), #ffe1ad);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(216, 166, 92, 0.18);
}

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

.button-ghost {
  min-height: 46px;
  padding: 0 20px;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--text-muted);
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(216, 166, 92, 0.56);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.scroll-signal {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.82;
  will-change: transform;
}

.scroll-signal-hero {
  top: 18%;
  right: 28%;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 92, 0.84), transparent);
  box-shadow: 0 0 22px rgba(216, 166, 92, 0.38);
}

.scroll-signal-workflow {
  top: 90px;
  right: 0;
  width: 220px;
  height: 220px;
  background:
    radial-gradient(circle at center, rgba(92, 147, 216, 0.1), transparent 58%),
    radial-gradient(circle at center, rgba(216, 166, 92, 0.14), transparent 72%);
  filter: blur(10px);
}

.workflow-intro-card,
.feature-highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  margin-bottom: 22px;
}

.workflow-intro-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.92), rgba(92, 147, 216, 0.2));
}

.workflow-intro-copy,
.feature-highlight-copy {
  display: grid;
  gap: 6px;
}

.workflow-intro-copy strong,
.feature-highlight-copy strong {
  font-size: 1rem;
}

.workflow-intro-copy span,
.feature-highlight-copy span {
  color: var(--text-muted);
}

.feature-highlight {
  grid-template-columns: minmax(0, 1fr) auto;
}

.feature-highlight-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.feature-highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.feature-bridge {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.feature-bridge span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(216, 166, 92, 0.16), rgba(92, 147, 216, 0.14));
}

.parallax-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  will-change: transform;
}

.parallax-orb-left {
  display: none;
}

.parallax-orb-right {
  right: -4%;
  bottom: 14%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(86, 122, 167, 0.22), rgba(86, 122, 167, 0.03) 66%, transparent 74%);
}

.hero-card,
.info-card,
.feature-card,
.timeline-card,
.bullet-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
  will-change: transform;
}

.info-card,
.feature-card,
.timeline-card,
.hero-card,
.contact-panel {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.info-card::before,
.feature-card::before,
.timeline-card::before,
.audience-summary::before,
.contact-side-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.82), rgba(92, 147, 216, 0.24));
}

.info-card:hover,
.feature-card:hover,
.timeline-card:hover,
.hero-card:hover,
.contact-panel:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(216, 166, 92, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.hero-card {
  padding: 24px;
}

.hero-card-main {
  min-height: 320px;
}

.hero-card-side {
  width: min(330px, 82%);
  justify-self: end;
  background:
    linear-gradient(180deg, rgba(216, 166, 92, 0.1), transparent 32%),
    var(--panel-strong);
}

.hero-card-head,
.mini-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(216, 166, 92, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(216, 166, 92, 0.22);
}

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

.metric-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(170, 194, 218, 0.14);
  border-radius: 22px;
  background: rgba(7, 13, 19, 0.46);
}

.metric-label,
.metric-note {
  display: block;
}

.metric-label,
.metric-note,
.mini-title {
  color: var(--text-muted);
}

.metric-card strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.link-stack {
  display: grid;
  gap: 10px;
}

.link-stack span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 194, 218, 0.12);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.8), transparent);
}

.section-heading p {
  max-width: 64ch;
}

.card-grid,
.feature-grid,
.timeline {
  display: grid;
  gap: 18px;
}

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

.info-card,
.feature-card,
.timeline-card {
  padding: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  transform: translateY(10px);
}

.feature-card-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(216, 166, 92, 0.2);
  background: rgba(216, 166, 92, 0.08);
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.info-card,
.feature-card {
  min-height: 220px;
}

.info-card h3,
.feature-card h3,
.timeline-card h3 {
  margin-bottom: 14px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.timeline-card {
  position: relative;
  min-height: 230px;
}

.timeline-card:nth-child(2),
.timeline-card:nth-child(4) {
  transform: translateY(10px);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.12), rgba(92, 147, 216, 0.22), rgba(216, 166, 92, 0.12));
  z-index: 0;
}

.timeline-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}


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

.bullet-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(170, 194, 218, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.bullet-item:hover {
  border-color: rgba(216, 166, 92, 0.2);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-2px);
}

.convenience-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  margin-bottom: 20px;
}


.convenience-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0.86;
}

.convenience-flow span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.55), rgba(92, 147, 216, 0.25));
}

.convenience-flow span:nth-child(1) {
  width: 72px;
}

.convenience-flow span:nth-child(2) {
  width: 118px;
}

.convenience-flow span:nth-child(3) {
  width: 64px;
}

.audience-rail {
  width: 100%;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.18), rgba(255, 255, 255, 0.04), rgba(92, 147, 216, 0.18));
}

.audience-summary {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(160, 183, 209, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.audience-summary-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.audience-summary strong {
  max-width: 28ch;
  font-size: 1.05rem;
  line-height: 1.3;
}

.audience-card-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(216, 166, 92, 0.12), transparent 30%),
    var(--panel-strong);
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto 28px 0 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 92, 0.16), transparent);
  pointer-events: none;
}

.contact-side {
  display: grid;
  gap: 18px;
  align-content: center;
  min-width: 320px;
  max-width: 380px;
}

.contact-side-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(170, 194, 218, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.contact-side-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.contact-side-card strong {
  font-size: 1rem;
  line-height: 1.35;
}

.contact-side-card p {
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-prelude {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-prelude span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(170, 194, 218, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(170, 194, 218, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-muted);
  font-size: 0.86rem;
}

.contact-tail {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.contact-tail span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(216, 166, 92, 0.18), rgba(92, 147, 216, 0.18));
}

.contact-tail span:nth-child(1) {
  width: 62px;
}

.contact-tail span:nth-child(2) {
  width: 110px;
}

.contact-tail span:nth-child(3) {
  width: 48px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 44px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-brand span {
  font-size: 1rem;
}

.footer-copy {
  display: grid;
  gap: 6px;
  max-width: 44ch;
}

.footer-copy p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(170, 194, 218, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.footer-year {
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(170, 194, 218, 0.12);
  background: rgba(8, 16, 24, 0.82);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(216, 166, 92, 0.28);
}

@media (max-width: 1100px) {
  .hero,
  .contact-panel,
  .card-grid-3,
  .feature-grid,
  .timeline,
  .bullet-panel,
  .workflow-ribbon {
    grid-template-columns: 1fr;
  }

  .feature-highlight,
  .workflow-intro-card {
    grid-template-columns: 1fr;
  }

  .feature-highlight-tags {
    justify-content: flex-start;
  }

  .feature-card:nth-child(2),
  .feature-card:nth-child(5),
  .timeline-card:nth-child(2),
  .timeline-card:nth-child(4) {
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-interface-backdrop {
    inset: 26% -8% 8% 2%;
    opacity: 0.3;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 28%, transparent 100%);
  }

  .hero-grid-glow {
    inset: 18% 0 18% 0;
  }

  .hero-card-side {
    width: 100%;
  }

  .topbar {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .timeline::before {
    display: none;
  }

  .footer {
    align-items: flex-start;
  }

  .contact-side {
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 1240px);
  }

  .section {
    padding: 52px 0;
    scroll-margin-top: 96px;
  }

  .brand-word {
    font-size: 1rem;
  }

  .brand-subtitle {
    display: none;
  }

  .topbar {
    gap: 14px;
    top: 6px;
  }

  .topnav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .metric-grid,
  .bullet-panel {
    grid-template-columns: 1fr;
  }

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

  .value-strip,
  .convenience-badge-row {
    padding: 16px;
  }

  .hero-brand-banner {
    max-width: 100%;
    margin-bottom: 22px;
    border-radius: 20px;
  }

  .hero-interface-backdrop {
    inset: 34% -18% 8% -14%;
    opacity: 0.2;
  }

  .section-product-backdrop {
    inset: 0;
    opacity: 0.22;
  }

  .section-product-backdrop-center {
    inset: 0;
    opacity: 0.18;
  }

  .hero-brand-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-scroll-hint {
    margin-top: 24px;
    font-size: 0.84rem;
  }

  .section-heading h2::after {
    width: 56px;
    margin-top: 14px;
  }

  .contact-proof {
    gap: 8px;
  }

  .contact-proof span,
  .contact-prelude span,
  .footer-nav a {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .hero-card,
  .info-card,
  .feature-card,
  .timeline-card,
  .bullet-panel,
  .contact-panel {
    border-radius: 22px;
  }

  .footer-nav {
    gap: 12px;
  }

  .contact-side-card {
    padding: 16px;
  }

  .parallax-orb-left {
    width: 160px;
    height: 160px;
    left: -10%;
  }

  .parallax-orb-right {
    width: 220px;
    height: 220px;
    right: -12%;
  }

  .scroll-signal-hero {
    right: 8%;
    width: 96px;
  }

  .scroll-signal-workflow {
    width: 140px;
    height: 140px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .info-card::before,
  .feature-card::before,
  .timeline-card::before,
  .audience-summary::before,
  .contact-side-card::before {
    width: 44px;
    margin-bottom: 14px;
  }
}

@media (max-width: 900px) {
  .hero {
    gap: 28px;
  }

  .hero-copy,
  .hero-visual {
    position: relative;
    z-index: 1;
  }

  .hero-visual {
    gap: 16px;
    margin-top: 6px;
  }

  .hero-card-main,
  .hero-card-side {
    justify-self: stretch;
  }

  .hero-card-side {
    margin-top: 4px;
  }
}

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

  .section-reveal,
  .hero-card,
  .info-card,
  .feature-card,
  .timeline-card,
  .contact-panel,
  .button,
  .topnav a,
  .topbar,
  .back-to-top,
  .skip-link {
    transition: none;
  }

  .hero-card:hover,
  .info-card:hover,
  .feature-card:hover,
  .timeline-card:hover,
  .contact-panel:hover,
  .button:hover,
  .button:focus-visible {
    transform: none;
    box-shadow: var(--shadow);
  }
}
