.ish-page {
  --bg: #080911;
  --fg: #f4f5ff;
  --muted: #a5a8be;
  --line: rgba(160, 165, 255, .18);
  --panel: rgba(23, 25, 44, .72);
  --panel-2: rgba(35, 39, 70, .72);
  --primary: #6268ff;
  --glow: #b8a7ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  color: var(--fg);
  background: var(--bg);
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  overflow: clip;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ish-page * {
  box-sizing: border-box;
}

.ish-page a {
  color: inherit;
  text-decoration: none;
}

.ish-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.ish-nav {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(8, 9, 17, .64);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}

.ish-nav.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 9, 17, .86);
}

.ish-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ish-brand b,
.ish-page h1 span,
.ish-page h2 span,
.ish-page .ish-kicker,
.ish-page .ish-stars {
  color: var(--glow);
}

.ish-logo-dot {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--glow));
  box-shadow: 0 0 40px rgba(98, 104, 255, .55);
}

.ish-logo-dot span {
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: var(--bg);
}

.ish-nav nav {
  display: flex;
  gap: 8px;
}

.ish-nav nav a {
  color: var(--muted);
  padding: 8px 10px;
  font-size: 14px;
  transition: color .2s ease;
}

.ish-nav nav a:hover {
  color: var(--fg);
}

.ish-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
}

.ish-pill-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 50px rgba(98, 104, 255, .45);
}

.ish-pill-ghost {
  border: 1px solid var(--line);
  background: rgba(23, 25, 44, .5);
}

.ish-hero,
.ish-services,
.ish-testimonials,
.ish-contact {
  position: relative;
  padding: 110px 0;
}

.ish-hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
}

.ish-bg-grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 55% at 50% 30%, #000 25%, transparent 78%);
}

.ish-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  background: rgba(98, 104, 255, .34);
}

.ish-glow-hero {
  width: 640px;
  height: 640px;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
}

.ish-page h1,
.ish-page h2,
.ish-page h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.02em;
}

.ish-page h1 {
  max-width: 980px;
  margin: 22px auto 0;
  font-size: clamp(3.4rem, 7.2vw, 7.2rem);
  line-height: .98;
  background: linear-gradient(135deg, #fff, var(--glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ish-page h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 1.04;
}

.ish-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.ish-kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .26em;
  font-weight: 800;
}

.ish-lead,
.ish-muted {
  color: var(--muted);
  line-height: 1.7;
}

.ish-lead {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.ish-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.ish-scroll-note {
  margin-top: 56px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

[data-ish-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

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

.ish-moment {
  position: relative;
  height: 320vh;
  background: var(--bg);
}

.ish-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ish-laptop-section .ish-sticky::before,
.ish-word-section .ish-sticky::before,
.ish-stack-section .ish-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.ish-laptop-wrap {
  width: min(760px, 88vw);
  margin: clamp(18px, 4vh, 42px) auto 0;
  perspective: 1600px;
}

.ish-laptop-base {
  position: relative;
  width: 88%;
  height: 13px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(#353a66, #15172a);
  box-shadow: var(--shadow);
}

.ish-laptop-base span {
  position: absolute;
  width: 96px;
  height: 2px;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  background: rgba(255,255,255,.18);
}

.ish-laptop-lid {
  transform-origin: bottom center;
  transform-style: preserve-3d;
  transform: rotateX(-100deg);
  will-change: transform;
}

.ish-laptop-screen {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(112px, .8fr);
  gap: 14px;
  width: 88%;
  aspect-ratio: 16 / 10;
  margin: 0 auto;
  padding: clamp(12px, 1.7vw, 20px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px 20px 6px 6px;
  background: rgba(23, 25, 44, .92);
  box-shadow: 0 0 0 1px rgba(184,167,255,.18), 0 0 70px rgba(98,104,255,.36);
  opacity: 0;
}

.ish-laptop-lip {
  width: 78%;
  height: 5px;
  margin: 4px auto 0;
  border-radius: 0 0 8px 8px;
  background: #1b1e35;
}

.ish-chart-card,
.ish-metric-list div,
.ish-card,
.ish-case-card,
.ish-form {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.ish-chart-card {
  padding: 14px;
  border-radius: 12px;
}

.ish-chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.ish-chart-head b {
  color: var(--glow);
}

.ish-chart-card svg {
  width: 100%;
  height: calc(100% - 18px);
  margin-top: 12px;
}

.ish-chart-card path {
  fill: rgba(98,104,255,.22);
}

.ish-chart-card polyline {
  fill: none;
  stroke: var(--glow);
  stroke-width: 2.5;
}

.ish-metric-list {
  display: grid;
  gap: 12px;
}

.ish-metric-list div {
  border-radius: 12px;
  padding: 12px;
}

.ish-metric-list small,
.ish-case-results span,
.ish-stats span,
.ish-footer p {
  color: var(--muted);
}

.ish-metric-list strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.ish-laptop-caption {
  max-width: 620px;
  margin: 28px auto 0;
  opacity: 0;
}

.ish-service-grid,
.ish-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.ish-card {
  border-radius: 18px;
  padding: 26px;
}

.ish-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(98,104,255,.35), rgba(184,167,255,.18));
  color: var(--glow);
  font-weight: 900;
}

.ish-card h3 {
  margin-top: 18px;
  font-size: 22px;
}

.ish-card p {
  color: var(--muted);
  line-height: 1.65;
}

.ish-phone-grid,
.ish-contact-grid,
.ish-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ish-phone {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 44px;
  background: #15172a;
  box-shadow: var(--shadow), 0 0 65px rgba(98,104,255,.35);
  transform: scale(.85) rotateY(-25deg);
  transform-style: preserve-3d;
  will-change: transform;
}

.ish-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 96px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--bg);
  z-index: 2;
}

.ish-phone-screen {
  height: 100%;
  padding: 48px 14px 14px;
  border-radius: 34px;
  background: linear-gradient(#202445, #0b0c16);
  overflow: hidden;
}

.ish-phone-screen > small {
  display: block;
  text-align: center;
  color: var(--muted);
}

.ish-notification {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(23,25,44,.9);
  opacity: 0;
  transform: translateY(18px);
}

.ish-notification div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.ish-notification p {
  margin: 6px 0 0;
  font-size: 14px;
}

.ish-stats {
  border-block: 1px solid var(--line);
  background: rgba(23,25,44,.35);
  padding: 56px 0;
}

.ish-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.ish-stats strong {
  display: block;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  background: linear-gradient(135deg, #fff, var(--glow));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.ish-word-copy {
  position: relative;
  text-align: center;
  z-index: 1;
}

.ish-word-stage {
  position: relative;
  width: min(96vw, 1200px);
  height: clamp(170px, 24vw, 340px);
  margin-top: 24px;
}

.ish-word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(4.5rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--glow));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  will-change: transform, opacity;
}

.ish-testimonials blockquote {
  margin: 18px 0;
  font-size: 20px;
  line-height: 1.45;
}

.ish-testimonials figcaption {
  display: grid;
  gap: 4px;
}

.ish-testimonials figcaption span {
  color: var(--muted);
}

.ish-stack {
  position: relative;
  height: 420px;
  margin-top: 54px;
}

.ish-case-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: 300px;
  min-height: 250px;
  padding: 24px;
  border-radius: 18px;
  text-align: left;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(-50%) translateY(60px);
  will-change: transform, opacity;
}

.ish-case-card h3 {
  margin-top: 8px;
  font-size: 22px;
}

.ish-case-card > p:not(.ish-kicker) {
  color: var(--muted);
  line-height: 1.55;
}

.ish-case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.ish-case-results div {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  background: rgba(8,9,17,.5);
}

.ish-case-results strong,
.ish-case-results span {
  display: block;
}

.ish-case-results span {
  font-size: 10px;
}

.ish-contact {
  background: radial-gradient(circle at 50% 0%, rgba(98,104,255,.28), transparent 58%), var(--bg);
}

.ish-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 18px;
}

.ish-form input,
.ish-form select,
.ish-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8,9,17,.58);
  color: var(--fg);
  padding: 13px 14px;
}

.ish-form textarea {
  resize: vertical;
}

.ish-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.ish-footer-grid > div:last-child {
  display: grid;
  gap: 10px;
  justify-items: end;
}

@media (max-width: 860px) {
  .ish-nav nav,
  .ish-nav > .ish-pill {
    display: none;
  }

  .ish-hero,
  .ish-services,
  .ish-testimonials,
  .ish-contact {
    padding: 80px 0;
  }

  .ish-service-grid,
  .ish-testimonial-grid,
  .ish-phone-grid,
  .ish-contact-grid,
  .ish-footer-grid {
    grid-template-columns: 1fr;
  }

  .ish-laptop-screen {
    grid-template-columns: 1fr;
  }

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

  .ish-phone {
    width: 250px;
    height: 500px;
  }

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

  .ish-stack {
    height: 520px;
  }

  .ish-case-card {
    width: min(300px, 86vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-ish-reveal],
  .ish-word,
  .ish-case-card,
  .ish-notification,
  .ish-phone,
  .ish-laptop-lid,
  .ish-laptop-screen,
  .ish-laptop-caption {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
