:root {
  --blue: #135fe8;
  --blue-2: #1f76ff;
  --blue-3: #0a3fb9;
  --ink: #071326;
  --muted: #64748b;
  --soft: #eef5ff;
  --line: rgba(19, 95, 232, 0.16);
  --glass: rgba(255, 255, 255, 0.74);
  --white: #ffffff;
  --danger: #ef4444;
  --success: #21c47b;
  --shadow: 0 30px 90px rgba(7, 19, 38, 0.12);
  --shadow-blue: 0 22px 70px rgba(19, 95, 232, 0.28);
  --radius: 30px;
  --font:
    "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(31, 118, 255, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(19, 95, 232, 0.14),
      transparent 34rem
    ),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}

.cursor-orb {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(19, 95, 232, 0.16), transparent 68%);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.js .cursor-orb {
  opacity: 1;
}

.site-header {
  position: fixed;
  inset: 18px clamp(14px, 4vw, 60px) auto;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  position: relative;
  width: 52px;
  height: 38px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), #74a7ff);
  box-shadow: var(--shadow-blue);
  opacity: 0.16;
}
.brand-mark span {
  position: absolute;
  width: 30px;
  height: 18px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  transform: rotate(-28deg);
}
.brand-mark span:last-child {
  transform: rotate(28deg);
  margin-right: 18px;
  border-color: #7fb0ff;
}
.brand-copy {
  display: grid;
  line-height: 1.3;
}
.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 900;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 0.94rem;
  font-weight: 700;
}
.main-nav a {
  color: #25324a;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ghost-link {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.9rem;
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: var(--shadow-blue);
  font-weight: 900;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pill-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(19, 95, 232, 0.34);
}
.pill-button.small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: var(--soft);
  padding: 13px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 99px;
  margin: 4px 0;
}
.mobile-menu {
  display: none;
}

.rail-nav {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: grid;
  gap: 16px;
}
.rail-nav a {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(19, 95, 232, 0.16);
  border: 1px solid rgba(19, 95, 232, 0.18);
  transition: 0.25s ease;
}
.rail-nav a.is-active {
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(19, 95, 232, 0.1);
}
.rail-nav span {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  transition: 0.2s ease;
}
.rail-nav a:hover span {
  opacity: 1;
}
body.is-on-contact .rail-nav a {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

body.is-on-contact .rail-nav a.is-active {
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.16);
}

body.is-on-contact .rail-nav span {
  color: #fff;
}

body.is-on-contact .scroll-progress {
  background: rgba(255, 255, 255, 0.16);
}

body.is-on-contact .scroll-progress span {
  background: linear-gradient(90deg, #fff, #bcd4ff);
}
.story-canvas {
  direction: ltr;
  display: flex;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.story-canvas::-webkit-scrollbar {
  display: none;
}
.panel {
  direction: rtl;
  position: relative;
  flex: 0 0 100vw;
  min-height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 128px clamp(24px, 6vw, 110px) 64px;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(19, 95, 232, 0.14) 1.2px, transparent 1.2px),
    linear-gradient(
      135deg,
      transparent 48%,
      rgba(19, 95, 232, 0.06) 49%,
      transparent 51%
    );
  background-size:
    28px 28px,
    120px 120px;
  mask-image:
    radial-gradient(circle at 18% 18%, #000, transparent 38%),
    radial-gradient(circle at 80% 72%, #000, transparent 34%);
  opacity: 0.55;
}
.panel-grid,
.panel-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
}
.panel-grid {
  display: grid;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: 1fr 1fr;
}
.panel-inner.wide {
  width: min(1280px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
h1,
h3,
p {
  margin-top: 0;
  text-align: justify;
}
h2 {
  font-size: clamp(1.4rem, 1.5vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
  font-weight: 750;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  margin-bottom: 22px;
  font-weight: 850;
}
h1 span {
  color: var(--blue);
  display: block;
}
h2 {
  font-size: clamp(2rem, 4.1vw, 4.6rem);
  line-height: 1.16;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  font-weight: 950;
}
h3 {
  letter-spacing: -0.04em;
}
.lead,
.section-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 2.05;
  max-width: 660px;
}
.centered {
  text-align: center;
  margin-inline: auto 0;
  display: grid;
  justify-items: center;
}
.centered p {
  margin-inline: auto;
}

.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.play-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #25324a;
}
.play-button span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(15, 23, 42, 0.1);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-meta div {
  min-width: 118px;
  padding: 15px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 95, 232, 0.12);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}
.hero-meta strong {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 950;
}
.hero-meta small {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(19, 95, 232, 0.14);
  animation: float 7s ease-in-out infinite;
}
.orbit-one {
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(19, 95, 232, 0.2), transparent 62%);
}
.orbit-two {
  width: 310px;
  height: 310px;
  animation-delay: -2s;
  border-color: rgba(19, 95, 232, 0.28);
}
.dashboard-shell {
  width: min(560px, 94%);
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.25s ease;
}
.window-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  direction: ltr;
}
.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd5e1;
}
.window-bar span:nth-child(1) {
  background: #fb7185;
}
.window-bar span:nth-child(2) {
  background: #fbbf24;
}
.window-bar span:nth-child(3) {
  background: #34d399;
}
.window-bar b {
  margin-left: auto;
  font-size: 0.84rem;
}
.dashboard-content {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.insight-card,
.chart-card,
.tasks-card,
.ai-chip {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(19, 95, 232, 0.1);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}
.balance-card {
  padding: 22px;
  grid-column: span 1;
}
.balance-card small {
  color: var(--muted);
  display: block;
}
.balance-card strong {
  display: block;
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: 1.35rem;
}
.balance-card button {
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}
.chart-card {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  min-height: 158px;
  padding: 18px;
}
.chart-card span {
  width: 28px;
  height: var(--h);
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}
.tasks-card {
  grid-column: span 2;
  padding: 20px;
}
.tasks-card b {
  display: block;
  margin-bottom: 14px;
}
.tasks-card p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--muted);
}
.tasks-card i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
}
.ai-chip {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #071326, #102957);
  color: #fff;
}
.ai-chip span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  color: #9fc2ff;
  font-weight: 950;
}
.ai-chip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.floating-note {
  position: absolute;
  z-index: 3;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  border-radius: 20px;
  padding: 16px 20px;
  font-weight: 950;
  animation: float 6s ease-in-out infinite;
}
.note-a {
  top: 98px;
  right: 20px;
}
.note-b {
  bottom: 120px;
  left: 30px;
  background: #071326;
  animation-delay: -2s;
}

.split-grid {
  grid-template-columns: 0.88fr 1.12fr;
}
.stacked-cards {
  display: grid;
  gap: 18px;
  transform: rotate(-2deg);
}
.glass-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.glass-card:nth-child(2) {
  transform: translateX(-42px);
}
.glass-card span {
  color: var(--blue);
  font-weight: 950;
  font-size: 1.9rem;
}
.glass-card h3 {
  margin: 10px 0;
  font-size: 1.45rem;
}
.glass-card p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.glass-card.accent {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}
.glass-card.accent span,
.glass-card.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.solution-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.product-frame {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.product-frame::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 42% 58% 64% 36%;
  background: linear-gradient(
    135deg,
    rgba(19, 95, 232, 0.16),
    rgba(255, 255, 255, 0.2)
  );
  animation: morph 9s ease-in-out infinite;
}
.phone-mockup {
  position: relative;
  width: 250px;
  height: 500px;
  border-radius: 46px;
  padding: 12px;
  background: #0d1930;
  box-shadow: 0 36px 100px rgba(7, 19, 38, 0.22);
  z-index: 2;
  transform: rotate(-7deg);
}
.phone-screen {
  height: 100%;
  border-radius: 35px;
  background: #f7fbff;
  padding: 28px 16px;
  overflow: hidden;
}
.screen-top {
  width: 86px;
  height: 21px;
  border-radius: 99px;
  background: #0d1930;
  margin: -18px auto 22px;
}
.mini-message {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 16px;
  margin-bottom: 11px;
  font-size: 0.78rem;
  color: #fff;
  background: var(--blue);
}
.mini-message.ai {
  margin-right: auto;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.mini-chart {
  height: 130px;
  border-radius: 24px;
  margin: 24px 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(19, 95, 232, 0.09)),
    repeating-linear-gradient(
      90deg,
      rgba(19, 95, 232, 0.14) 0 8px,
      transparent 8px 28px
    );
}
.mini-row {
  height: 14px;
  width: 100%;
  border-radius: 99px;
  background: #dbeafe;
  margin-bottom: 12px;
}
.mini-row.short {
  width: 68%;
}
.floating-ui {
  position: absolute;
  z-index: 3;
  padding: 16px 20px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.ui-a {
  top: 100px;
  left: 36px;
}
.ui-b {
  right: 48px;
  bottom: 150px;
  color: var(--blue);
}
.ui-c {
  left: 120px;
  bottom: 72px;
}
.tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  margin: 26px 0 16px;
}
.tab {
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}
.tab.is-active {
  color: #fff;
  background: var(--blue);
}
.tab-panels {
  min-height: 96px;
}
.tab-panel {
  display: none;
  color: var(--muted);
  line-height: 2;
  margin: 0;
  max-width: 640px;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.35s ease both;
}

.services-panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    rgba(238, 245, 255, 0.66)
  );
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  /* margin-top: 10px; */
}
.feature-card {
  min-height: 248px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: #fff;
}
.feature-card svg {
  width: 42px;
  height: 42px;
  color: var(--blue);
  stroke-width: 2.2;
  margin-bottom: 26px;
}
.feature-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

.process-grid {
  grid-template-columns: 0.84fr 1.16fr;
}
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 18% 50% 18% auto;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--blue), transparent);
  opacity: 0.4;
}
.timeline article {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 950;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.timeline h3 {
  margin-bottom: 10px;
}
.timeline p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.pricing-panel {
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  /* margin-top: 44px; */
}
.price-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -80px;
  left: -80px;
  border-radius: 50%;
  background: rgba(19, 95, 232, 0.08);
}
.price-card.featured {
  background: linear-gradient(160deg, var(--blue), #0f47c9);
  color: #fff;
  transform: translateY(-14px);
  box-shadow: var(--shadow-blue);
}
.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}
.plan-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: var(--soft);
  color: var(--blue);
  margin-bottom: 26px;
}
.price-card.featured .plan-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.plan-icon svg {
  width: 40px;
  height: 40px;
}
.price-card h3 {
  font-size: 1.46rem;
  margin-bottom: 10px;
}
.price-card p {
  color: var(--muted);
  line-height: 1.8;
}
.price-card strong {
  display: block;
  margin: 24px 0;
  font-size: 1.4rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.price-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 950;
  margin-left: 8px;
}
.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.price-card.featured a {
  background: #fff;
  color: var(--blue);
}
.badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.voices-grid {
  grid-template-columns: 0.92fr 1.08fr;
}
.testimonial-card {
  min-height: 520px;
  padding: 40px;
  border-radius: 36px;
  background: #071326;
  color: #fff;
  box-shadow: 0 28px 90px rgba(7, 19, 38, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(19, 95, 232, 0.38);
  filter: blur(30px);
  top: -80px;
  left: -80px;
}

.quote-mark {
  position: relative;
  font-size: 6rem;
  line-height: 0.5;
  color: #86b5ff;
  margin-bottom: 22px;
}

.testimonial-card h2 {
  position: relative;
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 22px;
}

.testimonial-text {
  position: relative;
  min-height: 126px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 2;
  font-size: 1.02rem;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.customer-carousel.is-changing .testimonial-text,
.customer-carousel.is-changing .author {
  opacity: 0;
  transform: translateY(12px);
}

.author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.customer-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #88b5ff);
  color: #135fe8;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.customer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 9px;
  background: #fff;
}

.author strong,
.author small {
  display: block;
}

.author strong {
  font-size: 1.05rem;
}

.author small {
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
}

.testimonial-dots {
  position: relative;
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.testimonial-dots button.is-active {
  width: 28px;
  background: #fff;
}

@media (min-width: 961px) and (max-height: 860px) {
  .testimonial-card {
    min-height: 430px;
    padding: 32px;
  }

  .testimonial-text {
    min-height: 96px;
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .quote-mark {
    font-size: 4.6rem;
    margin-bottom: 14px;
  }

  .testimonial-card h2 {
    margin-bottom: 14px;
  }

  .author {
    margin-top: 20px;
  }

  .testimonial-dots {
    margin-top: 22px;
  }
}
.release-roadmap {
  position: relative;
  padding: 28px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(19, 95, 232, 0.15),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(247, 251, 255, 0.74)
    );
  border: 1px solid rgba(210, 225, 245, 0.9);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.release-roadmap::before {
  content: "";
  position: absolute;
  top: 116px;
  right: 50%;
  width: 2px;
  height: calc(100% - 150px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(19, 95, 232, 0.55),
    transparent
  );
  transform: translateX(50%);
}

.roadmap-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.roadmap-head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 950;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.roadmap-head span::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.roadmap-head strong {
  display: block;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.35;
  color: var(--ink);
}

.roadmap-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.release-roadmap article {
  position: relative;
  min-height: 128px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 225, 245, 0.92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.release-roadmap article:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 95, 232, 0.32);
  box-shadow: 0 22px 56px rgba(19, 95, 232, 0.11);
}

.release-roadmap article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(19, 95, 232, 0.09);
}

.release-roadmap time {
  display: inline-flex;
  color: var(--blue);
  font-weight: 950;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.release-roadmap h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  color: var(--ink);
}

.release-roadmap p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9rem;
}

@media (min-width: 961px) and (max-height: 860px) {
  .release-roadmap {
    padding: 22px;
    border-radius: 32px;
  }

  .roadmap-head {
    margin-bottom: 16px;
  }

  .roadmap-head strong {
    font-size: 1.55rem;
  }

  .roadmap-items {
    gap: 10px;
  }

  .release-roadmap article {
    min-height: 106px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .release-roadmap h3 {
    font-size: 0.96rem;
    margin-bottom: 5px;
  }

  .release-roadmap p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .release-roadmap time {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
}

@media (max-width: 960px) {
  .roadmap-items {
    grid-template-columns: 1fr;
  }

  .release-roadmap::before {
    display: none;
  }
}

.contact-panel {
  background: linear-gradient(135deg, #061126, #09296b 52%, #135fe8);
  color: #fff;
}
.contact-panel::before {
  opacity: 0.24;
}
.contact-grid {
  grid-template-columns: 0.86fr 1.14fr;
}
.contact-copy .eyebrow {
  color: #fff;
  font-size: 20px;
  line-height: 1.22;
}
.contact-copy h2 {
  color: #fff;
  font-size: 48px;
  line-height: 1.42;
}
.contact-copy p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  font-size: 20px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.contact-list svg {
  width: 22px;
  height: 22px;
  color: #9ec2ff;
}
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}
.contact-form label:nth-child(3),
.contact-form label:nth-child(4),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 95, 232, 0.16);
  background: #f8fbff;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(19, 95, 232, 0.1);
}
.form-note {
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}
.form-note.is-success {
  color: var(--success);
  font-weight: 900;
}
.form-note.is-error {
  color: var(--danger);
  font-weight: 900;
}

.scroll-progress {
  position: fixed;
  inset: auto clamp(18px, 4vw, 60px) 18px;
  height: 7px;
  border-radius: 999px;
  background: rgba(19, 95, 232, 0.12);
  z-index: 45;
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #7fb0ff);
  transition: width 0.18s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}
.delay-3 {
  transition-delay: 0.32s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes morph {
  0%,
  100% {
    border-radius: 42% 58% 64% 36%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 62% 38% 44% 56%;
    transform: rotate(8deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .ghost-link {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    z-index: 39;
    top: 104px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 16px;
    font-weight: 900;
    color: #25324a;
  }
  .mobile-menu a:hover {
    background: var(--soft);
    color: var(--blue);
  }
}

@media (max-width: 960px) {
  body {
    overflow-x: hidden;
  }
  .site-header {
    inset: 12px 12px auto;
    height: 66px;
  }
  .brand-copy small {
    display: none;
  }
  .rail-nav,
  .scroll-progress {
    display: none;
  }
  .story-canvas {
    display: block;
    height: auto;
    overflow: visible;
    direction: rtl;
    scroll-snap-type: none;
  }
  .panel {
    min-height: auto;
    padding: 112px 18px 56px;
    display: block;
    overflow: visible;
  }
  .panel-grid,
  .hero-grid,
  .split-grid,
  .solution-grid,
  .process-grid,
  .voices-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .product-frame {
    min-height: 520px;
  }
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    display: none;
  }
  .glass-card:nth-child(2) {
    transform: none;
  }
  .stacked-cards {
    transform: none;
  }
  .release-roadmap article {
    width: 100%;
  }
  .release-roadmap article:nth-child(3) {
    margin-right: 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }
}

@media (max-width: 560px) {
  .header-actions .pill-button {
    display: none;
  }
  .brand-mark {
    width: 46px;
    height: 34px;
  }
  .panel {
    padding-inline: 14px;
  }
  .dashboard-content {
    grid-template-columns: 1fr;
  }
  .tasks-card,
  .ai-chip {
    grid-column: span 1;
  }
  .hero-visual {
    min-height: 460px;
  }
  .dashboard-shell {
    transform: none;
  }
  .floating-note,
  .floating-ui {
    position: relative;
    inset: auto;
    margin: 10px auto;
    width: max-content;
    max-width: 92%;
  }
  .product-frame {
    min-height: auto;
    padding: 40px 0;
  }
  .phone-mockup {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.process-panel h2 {
  font-size: clamp(1.7rem, 3.1vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.services-panel .section-heading h2 {
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.035em;
}
