:root {
  --ink: #0b1020;
  --ink-soft: #4b556d;
  --blue: #087cf0;
  --blue-deep: #0755c7;
  --violet: #8458eb;
  --violet-deep: #6540c7;
  --sky: #eaf5ff;
  --lilac: #f1ecff;
  --mint: #dff9ef;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --line: rgba(12, 21, 45, 0.1);
  --shadow: 0 24px 70px rgba(34, 53, 104, 0.13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-sm {
  padding: 78px 0;
}

.surface-soft {
  background: var(--surface-soft);
}

.surface-dark {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 134, 255, 0.28), transparent 30%),
    radial-gradient(circle at 80% 78%, rgba(139, 88, 235, 0.3), transparent 33%),
    #080d1c;
}

.surface-gradient {
  background:
    radial-gradient(circle at 20% 10%, rgba(40, 151, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(139, 88, 235, 0.14), transparent 32%),
    linear-gradient(180deg, #f9fbff, #fff);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.surface-dark .eyebrow {
  color: #a9d8ff;
}

.display {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.2rem, 7.5vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.heading {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.heading-sm {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--blue) 18%, var(--violet) 84%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.surface-dark .lead,
.surface-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.muted {
  color: var(--ink-soft);
}

.text-center {
  text-align: center;
}

.text-center .heading,
.text-center .lead {
  margin-inline: auto;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.text-center .actions {
  justify-content: center;
}

.hero-copy .actions,
.actions.text-center {
  justify-content: center;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(105deg, var(--blue), var(--violet));
  box-shadow: 0 12px 30px rgba(72, 91, 220, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(72, 91, 220, 0.38);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button-ghost:hover {
  border-color: rgba(8, 124, 240, 0.28);
  background: #fff;
}

.surface-dark .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  padding: 14px 0;
  transition: padding 200ms ease, background 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 9px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 30px rgba(27, 42, 81, 0.07);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .nav-wrap {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 45px;
  height: 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff;
}

.brand-mark img {
  width: 48px;
  height: 31px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.16rem;
  font-weight: 820;
  letter-spacing: -0.055em;
}

.brand-service {
  color: var(--blue-deep);
}

.brand-link {
  color: var(--violet-deep);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  color: #3b455c;
  font-size: 0.82rem;
  font-weight: 690;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(8, 124, 240, 0.07);
}

.nav-actions .button {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.8rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-open .menu-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 165px 0 70px;
  background:
    radial-gradient(circle at 8% 15%, rgba(13, 130, 244, 0.15), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(139, 88, 235, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f5f7fc 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  filter: blur(8px);
  opacity: 0.68;
  pointer-events: none;
}

.hero::before {
  top: 14%;
  left: -230px;
  border: 70px solid rgba(20, 134, 240, 0.12);
}

.hero::after {
  right: -220px;
  bottom: 0;
  border: 70px solid rgba(131, 80, 224, 0.13);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-copy .display,
.hero-copy .lead {
  margin-inline: auto;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 26px;
  color: #536078;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 5px rgba(78, 105, 226, 0.09);
}

.product-stage {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 76px auto -230px;
  perspective: 1400px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 50px 120px rgba(36, 54, 105, 0.23);
  transform: rotateX(3deg);
  backdrop-filter: blur(20px);
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
  background: #f5f7fb;
}

.window-top {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dce7;
}

.window-title {
  color: #8490a6;
  font-size: 0.68rem;
  font-weight: 720;
}

.dashboard {
  min-height: 570px;
  display: grid;
  grid-template-columns: 168px 1fr;
  background: #f5f7fb;
}

.dash-side {
  padding: 24px 16px;
  color: #aeb8ca;
  background: #0b1122;
}

.dash-brand {
  margin-bottom: 30px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.dash-side span {
  display: block;
  margin-bottom: 7px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 0.58rem;
  font-weight: 720;
}

.dash-side span.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(8, 124, 240, 0.7), rgba(132, 88, 235, 0.8));
}

.dash-main {
  padding: 25px;
}

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

.dash-heading strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.dash-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--violet));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-card,
.dash-panel {
  border: 1px solid rgba(12, 21, 45, 0.07);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 17px rgba(27, 42, 81, 0.04);
}

.metric-card {
  padding: 15px;
}

.metric-card small,
.dash-panel small {
  color: #8792a6;
  font-size: 0.55rem;
  font-weight: 700;
}

.metric-card b {
  display: block;
  margin: 3px 0;
  font-size: 1.18rem;
  letter-spacing: -0.05em;
}

.metric-card em {
  color: #23a36d;
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 750;
}

.dash-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.dash-panel {
  min-height: 190px;
  padding: 15px;
}

.chart {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 16px;
}

.chart i {
  flex: 1;
  min-width: 6px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #2e98ff, #8358e9);
  opacity: 0.85;
}

.chart i:nth-child(1) { height: 35%; }
.chart i:nth-child(2) { height: 64%; }
.chart i:nth-child(3) { height: 48%; }
.chart i:nth-child(4) { height: 74%; }
.chart i:nth-child(5) { height: 56%; }
.chart i:nth-child(6) { height: 90%; }
.chart i:nth-child(7) { height: 76%; }
.chart i:nth-child(8) { height: 98%; }

.schedule-list {
  margin-top: 10px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 7px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #edf0f5;
}

.schedule-row i {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--sky);
}

.schedule-row span,
.schedule-row time {
  font-size: 0.51rem;
  font-style: normal;
}

.schedule-row span {
  font-weight: 720;
}

.schedule-row time {
  color: #8c96aa;
}

.post-hero {
  padding-top: 315px;
}

.photo-story {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 16px;
  margin-top: 55px;
}

.photo-story-side {
  display: grid;
  gap: 16px;
}

.photo-card {
  min-height: 260px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  background: #e8edf5;
  box-shadow: 0 18px 50px rgba(31, 48, 97, 0.1);
}

.photo-card.large {
  min-height: 590px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-caption {
  max-width: calc(100% - 32px);
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 13, 28, 0.64);
  font-size: 0.7rem;
  font-weight: 730;
  backdrop-filter: blur(14px);
}

.product-image-frame {
  overflow: hidden;
  position: relative;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(145deg, #eaf5ff, #f1ecff);
  box-shadow: var(--shadow);
}

.product-image-frame::before {
  height: 34px;
  display: block;
  border-radius: 19px 19px 0 0;
  content: "•••";
  color: rgba(11, 16, 32, 0.22);
  padding-left: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  line-height: 30px;
}

.product-image-frame img {
  width: 100%;
  border: 1px solid rgba(12, 21, 45, 0.08);
  border-radius: 17px;
}

.product-image-frame.dark-frame {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(8, 124, 240, 0.25), rgba(132, 88, 235, 0.28));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.product-image-frame.dark-frame::before {
  color: rgba(255, 255, 255, 0.35);
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 25px 20px;
  border-top: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.feature-card {
  min-height: 300px;
  overflow: hidden;
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 15px 45px rgba(26, 42, 84, 0.06);
}

.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  grid-column: span 7;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  grid-column: span 5;
}

.feature-card:hover .card-art {
  transform: translateY(-5px) scale(1.01);
}

.feature-card h3 {
  max-width: 390px;
  margin: 17px 0 10px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.feature-card p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.card-kicker {
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-art {
  min-height: 170px;
  position: relative;
  margin-top: 27px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 25%, rgba(8, 124, 240, 0.26), transparent 28%),
    radial-gradient(circle at 80% 65%, rgba(132, 88, 235, 0.28), transparent 30%),
    #edf3fc;
  transition: transform 280ms ease;
}

.art-schedule {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  align-items: center;
  padding: 25px 18px;
}

.art-schedule i {
  height: 60%;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 14px rgba(47, 69, 121, 0.08);
}

.art-schedule i:nth-child(2) { height: 92%; background: linear-gradient(180deg, var(--blue), #60b5ff); }
.art-schedule i:nth-child(4) { height: 78%; background: linear-gradient(180deg, var(--violet), #b695ff); }

.art-profile {
  display: grid;
  place-items: center;
}

.art-profile::before {
  width: 75px;
  height: 75px;
  border: 9px solid #fff;
  border-radius: 50%;
  content: "";
  background: linear-gradient(145deg, var(--blue), var(--violet));
  box-shadow: 0 15px 35px rgba(43, 67, 131, 0.2);
}

.art-profile::after {
  width: 155px;
  height: 45px;
  position: absolute;
  bottom: 25px;
  border-radius: 15px;
  content: "";
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(43, 67, 131, 0.13);
}

.art-notes {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
}

.art-notes i {
  height: 17px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
}

.art-notes i:nth-child(2) { width: 78%; }
.art-notes i:nth-child(3) { width: 88%; }
.art-notes i:nth-child(4) { width: 56%; background: linear-gradient(90deg, var(--blue), var(--violet)); }

.art-finance {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
  padding: 22px;
}

.art-finance i {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(43, 67, 131, 0.09);
}

.art-finance i:last-child {
  background: linear-gradient(150deg, var(--blue), var(--violet));
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split.reverse > :first-child {
  order: 2;
}

.detail-list {
  display: grid;
  gap: 9px;
  margin-top: 29px;
}

.detail-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.detail-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 0.66rem;
  font-weight: 800;
}

.detail-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.detail-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.showcase-card {
  min-height: 530px;
  overflow: hidden;
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 10%, rgba(8, 124, 240, 0.18), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(132, 88, 235, 0.24), transparent 33%),
    #edf3fb;
  box-shadow: var(--shadow);
}

.showcase-card.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 10%, rgba(8, 124, 240, 0.27), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(132, 88, 235, 0.34), transparent 35%),
    #0b1122;
}

.float-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(30, 49, 98, 0.14);
  backdrop-filter: blur(16px);
}

.float-card.card-main {
  top: 70px;
  right: 24px;
  left: 24px;
  bottom: 70px;
  padding: 22px;
}

.float-card.card-mini {
  right: 8px;
  bottom: 34px;
  width: 205px;
  padding: 16px;
  transform: rotate(-3deg);
}

.float-card.card-tag {
  top: 30px;
  left: 5px;
  padding: 10px 14px;
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 780;
  transform: rotate(-5deg);
}

.mock-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.mock-title strong {
  font-size: 0.78rem;
}

.mock-title span {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: var(--mint);
}

.timeline-mini {
  display: grid;
  gap: 13px;
  padding-left: 12px;
  border-left: 1px solid #dce2ec;
}

.timeline-mini div {
  position: relative;
  padding: 12px;
  border-radius: 12px;
  background: #f7f9fc;
}

.timeline-mini div::before {
  width: 7px;
  height: 7px;
  position: absolute;
  top: 17px;
  left: -16px;
  border: 2px solid #fff;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.timeline-mini strong,
.timeline-mini small {
  display: block;
}

.timeline-mini strong {
  font-size: 0.62rem;
}

.timeline-mini small {
  margin-top: 3px;
  color: #8893a7;
  font-size: 0.52rem;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 55px;
  margin-top: 10px;
}

.mini-bars i {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--blue), var(--violet));
}

.mini-bars i:nth-child(1) { height: 40%; }
.mini-bars i:nth-child(2) { height: 70%; }
.mini-bars i:nth-child(3) { height: 52%; }
.mini-bars i:nth-child(4) { height: 88%; }
.mini-bars i:nth-child(5) { height: 68%; }

.logo-marquee {
  overflow: hidden;
  display: flex;
  margin-top: 50px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  min-width: max-content;
  display: flex;
  gap: 11px;
  animation: marquee 28s linear infinite;
}

.logo-pill {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #6d7890;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 730;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.step-grid,
.value-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 50px;
}

.step-grid,
.value-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover {
  border-color: rgba(8, 124, 240, 0.2);
  box-shadow: 0 18px 40px rgba(31, 48, 97, 0.08);
  transform: translateY(-4px);
}

.info-card .card-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 12px;
  color: var(--blue-deep);
  background: linear-gradient(145deg, var(--sky), var(--lilac));
  font-size: 0.68rem;
  font-weight: 820;
}

.info-card h3 {
  margin: 0 0 9px;
  font-size: 1.12rem;
  letter-spacing: -0.035em;
}

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

.surface-dark .info-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.surface-dark .info-card p {
  color: rgba(255, 255, 255, 0.6);
}

.surface-dark .info-card .card-number {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.quote-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.quote-card cite {
  display: block;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.cta-panel {
  overflow: hidden;
  position: relative;
  padding: clamp(45px, 8vw, 95px);
  border-radius: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(67, 179, 255, 0.7), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(183, 142, 255, 0.7), transparent 31%),
    linear-gradient(125deg, #0669dc, #7144d0);
  box-shadow: 0 30px 80px rgba(72, 78, 192, 0.25);
}

.cta-panel::after {
  width: 280px;
  height: 280px;
  position: absolute;
  right: -80px;
  bottom: -170px;
  border: 55px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-panel .heading,
.cta-panel .lead,
.cta-panel .actions {
  position: relative;
  z-index: 2;
}

.cta-panel .lead {
  color: rgba(255, 255, 255, 0.74);
}

.cta-panel .button-primary {
  color: var(--blue-deep);
  background: #fff;
}

.cta-panel .button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  overflow: hidden;
  padding: 190px 0 115px;
  background:
    radial-gradient(circle at 12% 15%, rgba(8, 124, 240, 0.14), transparent 27%),
    radial-gradient(circle at 85% 70%, rgba(132, 88, 235, 0.16), transparent 31%),
    linear-gradient(180deg, #fbfdff, #f5f7fc);
}

.page-hero .lead {
  max-width: 770px;
}

.page-hero.centered {
  text-align: center;
}

.page-hero.centered .heading,
.page-hero.centered .lead,
.page-hero.centered .actions {
  margin-inline: auto;
  justify-content: center;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 55px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.stat {
  padding: 25px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.055em;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.feature-category {
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}

.feature-category:last-child {
  border-bottom: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.shot-card {
  grid-column: span 6;
  overflow: hidden;
  position: relative;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(26, 42, 84, 0.07);
}

.shot-card.wide {
  grid-column: span 12;
}

.shot-image {
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
  aspect-ratio: 16 / 9;
}

.shot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 500ms ease;
}

.shot-card:hover .shot-image img {
  transform: scale(1.015);
}

.shot-copy {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 12px 12px;
}

.shot-copy h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.shot-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.shot-copy span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 0.57rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-category-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
  margin-bottom: 34px;
}

.feature-category-head p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.compact-card {
  min-height: 158px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}

.compact-card span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 9px;
  color: var(--blue-deep);
  background: var(--sky);
  font-size: 0.62rem;
  font-weight: 800;
}

.compact-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
}

.compact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.audience-tabs {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 30px;
  margin-top: 55px;
}

.tab-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.tab-button {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 0.86rem;
  font-weight: 760;
}

.tab-button.active {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 10px 25px rgba(31, 48, 97, 0.06);
}

.tab-panel {
  min-height: 430px;
  display: none;
  padding: clamp(28px, 6vw, 60px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 100%, rgba(149, 105, 255, 0.5), transparent 40%),
    linear-gradient(140deg, #075bc8, #172446);
}

.tab-panel.active {
  display: block;
  animation: fade-up 360ms ease both;
}

.tab-panel h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.tab-panel p {
  max-width: 580px;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.7);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 690;
}

.check-list span::before {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #102044;
  background: #fff;
  font-size: 0.64rem;
}

.price-card {
  position: relative;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}

.price-card.featured {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(154, 113, 255, 0.55), transparent 35%),
    linear-gradient(150deg, #075fcf, #17213d 80%);
  box-shadow: var(--shadow);
}

.price-card .plan {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card.featured .plan {
  color: #b8ddff;
}

.price-card h3 {
  margin: 13px 0 8px;
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.price-card p {
  min-height: 72px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.price {
  display: block;
  margin: 26px 0 22px;
  font-size: 1rem;
  font-weight: 780;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.price-card.featured .plan-list {
  border-color: rgba(255, 255, 255, 0.14);
}

.plan-list span {
  font-size: 0.76rem;
  font-weight: 650;
}

.plan-list span::before {
  margin-right: 8px;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.price-card.featured .plan-list span::before {
  color: #9dcdff;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.story-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.principles {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.principle {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.principle strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.85rem;
}

.principle span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 22px;
  margin-top: 35px;
}

.contact-detail {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

.contact-detail strong {
  margin-bottom: 4px;
  font-size: 0.76rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.form-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #fafbfe;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(8, 124, 240, 0.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 124, 240, 0.08);
}

.form-card .button {
  width: 100%;
  margin-top: 21px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
}

.form-success {
  display: none;
  padding: 34px;
  border-radius: 22px;
  color: #126741;
  background: var(--mint);
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fade-up 350ms ease both;
}

.form-success strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.security-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.security-card .card-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  font-size: 0.62rem;
  font-weight: 800;
}

.security-card h3 {
  margin: 0 0 9px;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.security-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin: 48px 0 12px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.legal h3 {
  margin: 27px 0 8px;
  font-size: 1.05rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal ul {
  padding-left: 19px;
}

.legal-meta {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.site-footer {
  padding: 80px 0 25px;
  color: rgba(255, 255, 255, 0.67);
  background: #070b17;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr);
  gap: 45px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  max-width: 350px;
  margin: 17px 0 0;
  font-size: 0.8rem;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-mark {
  background: #fff;
}

.footer-col strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.76rem;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  font-size: 0.75rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  font-size: 0.67rem;
}

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

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

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@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;
  }

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

@media (max-width: 980px) {
  .section {
    padding: 85px 0;
  }

  .nav-links,
  .nav-actions .button-ghost {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    inset: 84px 20px auto;
    display: grid;
    gap: 4px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .nav-links.open a {
    padding: 13px 15px;
  }

  .menu-toggle {
    display: grid;
  }

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

  .product-stage {
    margin-top: 55px;
  }

  .dashboard {
    min-height: 450px;
    grid-template-columns: 120px 1fr;
  }

  .dash-main {
    padding: 17px;
  }

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

  .dash-content {
    grid-template-columns: 1fr;
  }

  .dash-panel:last-child {
    display: none;
  }

  .post-hero {
    padding-top: 285px;
  }

  .trust-line,
  .stat-strip,
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }

  .photo-story {
    grid-template-columns: 1fr;
  }

  .photo-story-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card.large {
    min-height: 480px;
  }

  .photo-story-side .photo-card {
    min-height: 300px;
  }

  .split,
  .split.reverse,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .split.reverse > :first-child {
    order: initial;
  }

  .step-grid,
  .value-grid,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-category-head,
  .audience-tabs {
    grid-template-columns: 1fr;
  }

  .shot-card {
    grid-column: span 12;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 55px 0;
  }

  .heading,
  .display {
    letter-spacing: -0.06em;
  }

  .site-header {
    padding-top: 9px;
  }

  .nav-wrap {
    min-height: 54px;
    padding-left: 9px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero {
    padding: 130px 0 45px;
  }

  .product-stage {
    width: calc(100% + 70px);
    margin-left: -35px;
    margin-bottom: -140px;
  }

  .product-window {
    border-radius: 20px;
  }

  .window-top {
    height: 37px;
  }

  .dashboard {
    min-height: 350px;
    grid-template-columns: 1fr;
  }

  .dash-side {
    display: none;
  }

  .metric-card:nth-child(n+3),
  .dash-panel:last-child {
    display: none;
  }

  .post-hero {
    padding-top: 195px;
  }

  .trust-line,
  .stat-strip,
  .step-grid,
  .value-grid,
  .pricing-grid,
  .feature-grid,
  .compact-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 16px 5px;
  }

  .feature-bento {
    gap: 12px;
  }

  .feature-card:nth-child(n) {
    min-height: 270px;
    grid-column: span 12;
    padding: 24px;
    border-radius: 25px;
  }

  .feature-card p {
    font-size: 0.82rem;
  }

  .photo-story-side {
    grid-template-columns: 1fr;
  }

  .photo-card.large,
  .photo-story-side .photo-card {
    min-height: 290px;
    border-radius: 22px;
  }

  .product-image-frame {
    padding: 7px;
    border-radius: 22px;
  }

  .product-image-frame::before {
    height: 25px;
    line-height: 20px;
  }

  .product-image-frame img {
    border-radius: 12px;
  }

  .product-gallery {
    gap: 12px;
  }

  .shot-card {
    padding: 7px;
    border-radius: 21px;
  }

  .shot-image {
    border-radius: 14px;
  }

  .shot-copy {
    display: block;
    padding: 17px 9px 10px;
  }

  .shot-copy span {
    display: inline-block;
    margin-top: 12px;
  }

  .showcase-card {
    min-height: 460px;
    border-radius: 28px;
  }

  .float-card.card-main {
    top: 60px;
    right: 15px;
    left: 15px;
  }

  .float-card.card-mini {
    width: 170px;
  }

  .cta-panel {
    padding: 38px 26px;
    border-radius: 30px;
  }

  .page-hero {
    padding: 145px 0 75px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .tab-list {
    display: flex;
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .tab-button {
    min-width: max-content;
  }

  .tab-panel {
    min-height: 390px;
  }

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

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

  .form-card {
    border-radius: 24px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
  }
}
