@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Space+Grotesk:wght@400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --sr-bg: #05070b;
  --sr-bg-elevated: #0b0f17;
  --sr-bg-soft: #101522;
  --sr-accent: #7af5b8;
  --sr-accent-soft: rgba(122, 245, 184, 0.18);
  --sr-accent-strong: #30ff94;
  --sr-accent-alt: #7dd9ff;
  --sr-text: #f4f6fb;
  --sr-text-soft: #9ca6c5;
  --sr-border-subtle: rgba(255, 255, 255, 0.06);
  --sr-radius-lg: 24px;
  --sr-radius-md: 18px;
  --sr-radius-pill: 999px;
  --sr-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --sr-shadow-glow: 0 0 60px rgba(122, 245, 184, 0.5);
  --sr-grid-size: 18px;
  --sr-font-body: "Space Grotesk", "Inter", "Segoe UI", system-ui, sans-serif;
  --sr-font-display: "Playfair Display", "Times New Roman", serif;
  --sr-duration-fast: 180ms;
  --sr-duration-medium: 420ms;
  --sr-duration-slow: 900ms;
  --sr-stagger-step: 80ms;
  --sr-ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --sr-ease-emphasis: cubic-bezier(0.76, 0, 0.24, 1);
  --sr-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sr-orbit-spin {
  from {
    transform: rotate(0deg) scale(1);
    opacity: 0.95;
  }
  60% {
    opacity: 0.55;
  }
  to {
    transform: rotate(360deg) scale(1);
    opacity: 0.95;
  }
}

@keyframes sr-core-breathe {
  0% {
    transform: scale(0.98);
    filter: saturate(0.9);
  }
  50% {
    transform: scale(1.04);
    filter: saturate(1.2);
  }
  100% {
    transform: scale(0.98);
    filter: saturate(0.9);
  }
}

@keyframes sr-float-y {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sr-glint {
  from {
    transform: translateX(-120%) skewX(-15deg);
    opacity: 0;
  }
  50% {
    opacity: 0.65;
  }
  to {
    transform: translateX(180%) skewX(-15deg);
    opacity: 0;
  }
}

@keyframes sr-grid-pan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 120px 120px, -120px -120px;
  }
}

@keyframes sr-shimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--sr-font-body);
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sr-hero h1,
.sr-section h2 {
  font-family: var(--sr-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.theme-dark {
  background: radial-gradient(circle at top, #1b2342 0, #05070b 58%);
  color: var(--sr-text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.theme-dark::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto;
  height: 420px;
  background: radial-gradient(circle at 20% 40%, rgba(48, 255, 148, 0.15), transparent 60%),
    radial-gradient(circle at 70% 10%, rgba(125, 217, 255, 0.18), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.4;
  filter: blur(0);
  pointer-events: none;
  z-index: 0;
  animation: sr-float-y 18s ease-in-out infinite;
}

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

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 24px 80px;
  position: relative;
  z-index: 1;
}

/* Header */
.sr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
      to bottom,
      rgba(5, 7, 11, 0.95),
      rgba(5, 7, 11, 0.82),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sr-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.sr-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sr-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: conic-gradient(
    from 210deg,
    #30ff94,
    #7dd9ff,
    #b58cff,
    #30ff94
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #02040a;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6),
    0 0 32px rgba(122, 245, 184, 0.65);
}

.sr-logo-text {
  font-size: 15px;
  text-transform: uppercase;
}

.sr-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
}

.sr-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  color: var(--sr-text-soft);
}

.sr-nav a.is-active {
  color: var(--sr-text);
  border-color: var(--sr-accent);
}

.sr-nav a:hover {
  color: var(--sr-text);
}

.sr-cta-main {
  margin-left: 18px;
  padding: 8px 16px;
  border-radius: var(--sr-radius-pill);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #30ff94, #7dd9ff);
  color: #02040a;
  font-weight: 600;
  box-shadow: var(--sr-shadow-glow);
}

/* Hero */
.sr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}

.sr-hero-media {
  order: -1;
}

.sr-hero-media-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--sr-shadow-soft);
  isolation: isolate;
  transform: translateZ(0);
  transition: box-shadow var(--sr-duration-medium) var(--sr-ease-emphasis);
}

.sr-hero-media-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48, 255, 148, 0.12), transparent 35%),
    linear-gradient(315deg, rgba(181, 140, 255, 0.15), transparent 45%);
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity var(--sr-duration-medium) var(--sr-ease-out);
  pointer-events: none;
}

.sr-hero-media:hover .sr-hero-media-inner {
  box-shadow: 0 25px 70px rgba(10, 14, 28, 0.85);
}

.sr-hero-media:hover .sr-hero-media-inner::after {
  opacity: 1;
}

.sr-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transform: scale(1.02);
  transition: transform var(--sr-duration-slow) var(--sr-ease-emphasis),
    filter var(--sr-duration-slow) var(--sr-ease-out);
  will-change: transform;
}

.sr-hero-media:hover .sr-hero-image {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.sr-hero-orbit {
  position: relative;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.sr-hero-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 217, 255, 0.25);
  inset: 16%;
  animation: sr-orbit-spin 28s linear infinite;
}

.sr-hero-orbit-ring.ring-2 {
  inset: 8%;
  border-color: rgba(48, 255, 148, 0.3);
  animation-duration: 32s;
  animation-direction: reverse;
}

.sr-hero-orbit-ring.ring-3 {
  inset: 0%;
  border-color: rgba(181, 140, 255, 0.28);
  animation-duration: 38s;
}

.sr-hero-orbit-core {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  overflow: hidden;
}

.sr-hero-core-gradient {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(48, 255, 148, 0.7),
      transparent
    ),
    radial-gradient(circle at 75% 30%, rgba(125, 217, 255, 0.8), transparent),
    radial-gradient(circle at 50% 80%, rgba(181, 140, 255, 0.75), transparent);
  animation: sr-core-breathe 16s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(122, 245, 184, 0.35));
}

.sr-hero-core-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(3, 9, 26, 0.38) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(3, 9, 26, 0.38) 1px,
      transparent 1px
    );
  background-size: var(--sr-grid-size) var(--sr-grid-size);
  mix-blend-mode: soft-light;
  animation: sr-grid-pan 32s linear infinite;
}

.sr-hero-copy h1 {
  font-size: clamp(32px, 4vw, 40px);
  margin-bottom: 16px;
}

.sr-hero-copy p {
  color: var(--sr-text-soft);
  max-width: 460px;
  line-height: 1.6;
}

.sr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.sr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--sr-radius-pill);
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  position: relative;
  gap: 6px;
  overflow: hidden;
  letter-spacing: 0.05em;
  transform: translate3d(var(--sr-btn-translate-x, 0), var(--sr-btn-translate-y, 0), 0);
  transition: transform var(--sr-duration-medium) var(--sr-ease-emphasis),
    box-shadow var(--sr-duration-medium) var(--sr-ease-out),
    border-color var(--sr-duration-fast) linear;
  will-change: transform;
}

.sr-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0, transparent 60%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  transition: transform var(--sr-duration-slow) var(--sr-ease-out);
  pointer-events: none;
}

.sr-btn-primary {
  background: linear-gradient(90deg, #30ff94, #7dd9ff);
  color: #02040a;
  box-shadow: var(--sr-shadow-glow);
  background-size: 220% 220%;
  transition: background-position var(--sr-duration-slow) var(--sr-ease-out);
}

.sr-btn-ghost {
  background: rgba(15, 25, 40, 0.85);
  border-color: rgba(125, 217, 255, 0.4);
  color: #e2e7ff;
  box-shadow: 0 0 0 1px rgba(125, 217, 255, 0.2);
  transition: box-shadow var(--sr-duration-medium) var(--sr-ease-out),
    border-color var(--sr-duration-fast) linear;
}

.sr-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(125, 217, 255, 0.4),
    0 0 0 10px rgba(125, 217, 255, 0.15);
}

.sr-btn:hover::after {
  transform: translateX(160%);
}

.sr-btn-primary:hover {
  background-position: 100% 40%;
}

.sr-btn-ghost:hover {
  border-color: rgba(125, 217, 255, 0.8);
  box-shadow: 0 12px 30px rgba(9, 16, 32, 0.8),
    0 0 25px rgba(125, 217, 255, 0.3);
}

.sr-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sr-meta-chip {
  padding: 8px 12px;
  border-radius: var(--sr-radius-pill);
  border: 1px solid var(--sr-border-subtle);
  background: rgba(10, 16, 27, 0.9);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.sr-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sr-text-soft);
}

.sr-meta-value {
  font-size: 13px;
}

/* Sections */
.sr-section {
  margin-top: 72px;
}

.sr-section-header {
  max-width: 640px;
}

.sr-section-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.sr-section-header p {
  color: var(--sr-text-soft);
}

.sr-section-grid .sr-card-grid {
  margin-top: 28px;
}

.sr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.sr-card {
  background: radial-gradient(circle at 0 0, #252f4f 0, #0b0f17 55%);
  border-radius: var(--sr-radius-lg);
  border: 1px solid var(--sr-border-subtle);
  box-shadow: var(--sr-shadow-soft);
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--sr-duration-medium) var(--sr-ease-out),
    box-shadow var(--sr-duration-medium) var(--sr-ease-out),
    border-color var(--sr-duration-fast) linear;
  position: relative;
  will-change: transform;
}

.sr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8);
  border-color: rgba(122, 245, 184, 0.6);
}

.sr-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--sr-radius-lg) - 2px);
  background: linear-gradient(135deg, rgba(48, 255, 148, 0.14), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(125, 217, 255, 0.28), transparent 60%);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--sr-duration-medium) var(--sr-ease-out),
    transform var(--sr-duration-slow) var(--sr-ease-emphasis);
  pointer-events: none;
}

.sr-card:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sr-card-body {
  padding: 18px 18px 20px;
}

.sr-card-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.sr-card-body p {
  margin: 0;
  color: var(--sr-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* Figure panels: abstract, non‑infringing visuals */
.sr-figure {
  position: relative;
  overflow: hidden;
}

.sr-figure-panel {
  height: 160px;
}

.sr-figure-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity var(--sr-duration-medium) var(--sr-ease-out),
    transform var(--sr-duration-slow) var(--sr-ease-emphasis);
  will-change: opacity, transform;
}

.sr-card:hover .sr-figure-layer {
  opacity: 0.9;
}

.sr-figure-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.sr-card:hover .sr-figure-img {
  transform: scale(1.06);
}

.sr-figure-gradient {
  background: radial-gradient(circle at 20% 10%, #30ff94, transparent 55%),
    radial-gradient(circle at 80% 20%, #7dd9ff, transparent 52%),
    radial-gradient(circle at 50% 85%, #b58cff, transparent 55%),
    radial-gradient(circle at 50% 50%, #05070b, #05070b 60%, transparent 75%);
  animation: sr-core-breathe 18s ease-in-out infinite;
}

.sr-figure-diagonal {
  background-image: linear-gradient(
      135deg,
      rgba(5, 9, 25, 0.9) 25%,
      transparent 25%,
      transparent 50%,
      rgba(5, 9, 25, 0.9) 50%,
      rgba(5, 9, 25, 0.9) 75%,
      transparent 75%,
      transparent
    );
  background-size: 40px 40px;
  mix-blend-mode: soft-light;
}

.sr-figure-pixels {
  background-image: radial-gradient(
    circle at 10% 20%,
    rgba(255, 255, 255, 0.25) 0,
    transparent 45%
  );
  mix-blend-mode: screen;
}

.sr-figure-rings {
  background-image: radial-gradient(circle at 50% 50%, transparent 0 40%,
      rgba(122, 245, 184, 0.3) 41%,
      transparent 44%,
      transparent 52%,
      rgba(125, 217, 255, 0.35) 53%,
      transparent 56%);
}

.sr-figure-grid {
  background-image: linear-gradient(
      rgba(15, 25, 40, 0.85) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 25, 40, 0.85) 1px,
      transparent 1px
    );
  background-size: 20px 20px;
  mix-blend-mode: soft-light;
  animation: sr-grid-pan 20s linear infinite;
}

.sr-figure-noise {
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 2px
    );
  mix-blend-mode: overlay;
}

.sr-figure-orbits::before,
.sr-figure-orbits::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(122, 245, 184, 0.55);
  inset: 25% 10%;
  animation: sr-orbit-spin 24s linear infinite;
}

.sr-figure-orbits::after {
  inset: 10% 25%;
  border-color: rgba(125, 217, 255, 0.6);
  animation-duration: 30s;
  animation-direction: reverse;
}

/* Additional figure variants for technology page */
.sr-figure-systems .sr-figure-lines {
  background-image: linear-gradient(
      120deg,
      transparent 0 20%,
      rgba(122, 245, 184, 0.45) 20% 22%,
      transparent 22% 55%,
      rgba(125, 217, 255, 0.5) 55% 57%,
      transparent 57%
    );
}

.sr-figure-systems .sr-figure-nodes::before,
.sr-figure-systems .sr-figure-nodes::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #02040a;
  box-shadow: 0 0 18px rgba(122, 245, 184, 0.75);
}

.sr-figure-systems .sr-figure-nodes::before {
  top: 28%;
  left: 22%;
}

.sr-figure-systems .sr-figure-nodes::after {
  bottom: 24%;
  right: 26%;
}

.sr-figure-insights .sr-figure-bars {
  background-image: linear-gradient(
      180deg,
      transparent 0 45%,
      rgba(125, 217, 255, 0.9) 45% 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 35%,
      rgba(48, 255, 148, 0.9) 35% 100%
    );
  background-size: 16px 80px, 10px 60px;
  background-position: 30% 40%, 65% 55%;
  background-repeat: no-repeat;
}

.sr-figure-insights .sr-figure-dots::before,
.sr-figure-insights .sr-figure-dots::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.sr-figure-insights .sr-figure-dots::before {
  top: 20%;
  left: 65%;
}

.sr-figure-insights .sr-figure-dots::after {
  top: 42%;
  left: 48%;
}

.sr-figure-tools .sr-figure-blocks {
  background-image: linear-gradient(
      90deg,
      rgba(5, 9, 25, 0.8) 0 18%,
      rgba(125, 217, 255, 0.5) 18% 36%,
      rgba(5, 9, 25, 0.8) 36% 54%,
      rgba(48, 255, 148, 0.5) 54% 72%,
      rgba(5, 9, 25, 0.8) 72% 100%
    );
}

.sr-figure-tools .sr-figure-rails {
  background-image: linear-gradient(
    180deg,
    rgba(181, 140, 255, 0.7) 1px,
    transparent 1px
  );
  background-size: 100% 20px;
  opacity: 0.8;
}

/* Highlight section */
.sr-section-highlight {
  margin-top: 72px;
}

.sr-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.sr-section-inner-stacked {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sr-highlight-copy h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.sr-highlight-copy p {
  color: var(--sr-text-soft);
}

.sr-bullet-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.sr-bullet-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sr-bullet-list h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.sr-bullet-list p {
  margin: 0;
  color: var(--sr-text-soft);
}

.sr-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #30ff94);
  box-shadow: 0 0 18px rgba(48, 255, 148, 0.9);
}

.sr-highlight-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1.4fr 1fr;
  gap: 12px;
}

.sr-highlight-tile {
  border-radius: var(--sr-radius-md);
  overflow: hidden;
  background: #05070b;
  border: 1px solid var(--sr-border-subtle);
  box-shadow: var(--sr-shadow-soft);
}

.tile-large {
  grid-row: 1 / span 2;
}

.tile-vertical {
  grid-row: 1 / span 1;
}

.tile-horizontal {
  grid-row: 2 / span 1;
}

.sr-highlight-visual {
  width: 100%;
  height: 100%;
}

.sr-highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.sr-highlight-tile:hover .sr-highlight-img {
  transform: scale(1.06);
}

.sr-visual-constellation {
  background:
    radial-gradient(circle at 10% 20%, rgba(122, 245, 184, 0.9) 0, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(125, 217, 255, 0.9) 0, transparent 55%),
    radial-gradient(circle at 45% 80%, rgba(181, 140, 255, 0.9) 0, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(7, 9, 20, 0.7), #05070b);
  position: relative;
}

.sr-visual-constellation::before,
.sr-visual-constellation::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.sr-visual-constellation::after {
  inset: 30%;
  border-style: solid;
  border-color: rgba(122, 245, 184, 0.55);
}

.sr-visual-pulse {
  background: radial-gradient(circle at 50% 0, #7dd9ff, transparent 70%),
    radial-gradient(circle at 50% 100%, #30ff94, transparent 70%),
    linear-gradient(180deg, #05070b, #05070b);
}

.sr-visual-stream {
  background-image: linear-gradient(
    120deg,
    rgba(48, 255, 148, 0.7),
    rgba(125, 217, 255, 0.7),
    rgba(181, 140, 255, 0.7)
  );
  background-size: 220% 100%;
  animation: sr-shimmer 14s linear infinite;
}

/* Horizontal cards */
.sr-card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.sr-card-horizontal {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
}

.sr-figure-strip {
  min-height: 140px;
  background: radial-gradient(circle at 0 0, #252f4f 0, #05070b 55%);
}

.sr-strip-frame {
  position: absolute;
  inset: 14%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sr-strip-track {
  position: absolute;
  inset: 40% 6%;
  border-radius: 999px;
  border: 1px solid rgba(122, 245, 184, 0.7);
}

.sr-strip-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(125, 217, 255, 0.7),
    transparent 60%
  );
  mix-blend-mode: screen;
}

.sr-map-layer {
  position: absolute;
  inset: 0;
}

.sr-map-grid {
  background-image: linear-gradient(
      rgba(14, 20, 35, 0.82) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(14, 20, 35, 0.82) 1px,
      transparent 1px
    );
  background-size: 22px 22px;
}

.sr-map-path {
  background-image: radial-gradient(circle at 10% 70%, transparent 0 69%,
      rgba(122, 245, 184, 0.8) 70% 72%, transparent 73%),
    linear-gradient(
      60deg,
      transparent 0 30%,
      rgba(125, 217, 255, 0.7) 30% 31%,
      transparent 31% 60%,
      rgba(122, 245, 184, 0.7) 60% 61%,
      transparent 61%
    );
}

.sr-map-points::before,
.sr-map-points::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
}

.sr-map-points::before {
  top: 24%;
  left: 20%;
}

.sr-map-points::after {
  bottom: 22%;
  right: 18%;
}

.sr-lab-layer {
  position: absolute;
  inset: 0;
}

.sr-lab-nodes::before,
.sr-lab-nodes::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #02040a;
  box-shadow: 0 0 26px rgba(125, 217, 255, 0.8);
}

.sr-lab-nodes::before {
  top: 24%;
  left: 32%;
}

.sr-lab-nodes::after {
  bottom: 20%;
  right: 30%;
}

.sr-lab-links {
  background-image: linear-gradient(
    120deg,
    rgba(125, 217, 255, 0.7),
    rgba(181, 140, 255, 0.7)
  );
  background-size: 200% 100%;
  background-position: 0 0;
  mask-image: linear-gradient(
    120deg,
    transparent 0 20%,
    #000 20% 80%,
    transparent 80%
  );
}

.sr-lab-core {
  background: radial-gradient(circle at 50% 40%, #30ff94, transparent 60%);
}

/* CTA section */
.sr-section-cta {
  margin-top: 72px;
}

.sr-cta-copy p {
  color: var(--sr-text-soft);
  max-width: 420px;
}

.sr-cta-visual {
  display: flex;
  justify-content: flex-end;
}

.sr-cta-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}

.sr-cta-point {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--sr-border-subtle);
  background: rgba(9, 13, 24, 0.9);
  box-shadow: inset 0 0 24px rgba(122, 245, 184, 0.08);
}

.sr-cta-point h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.sr-cta-point p {
  margin: 0;
  color: var(--sr-text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.sr-cta-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sr-cta-tile {
  border-radius: 20px;
  border: 1px solid var(--sr-border-subtle);
  padding: 16px;
  background: radial-gradient(circle at 0% 0%, rgba(125, 217, 255, 0.4), transparent 70%),
      rgba(7, 9, 20, 0.95);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
}

.sr-cta-tile strong {
  font-size: 24px;
  letter-spacing: 0.06em;
}

.sr-cta-tile small {
  color: var(--sr-text-soft);
  font-size: 12px;
}

.sr-cta-tile a {
  color: var(--sr-accent-alt);
  font-size: 14px;
}

.sr-cta-tile.highlight {
  border-color: rgba(122, 245, 184, 0.5);
  box-shadow: 0 0 32px rgba(122, 245, 184, 0.2);
}

.sr-cta-tile-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--sr-text-soft);
}

.sr-cta-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
}

.sr-cta-step {
  border-radius: 18px;
  border: 1px solid var(--sr-border-subtle);
  padding: 18px;
  background: linear-gradient(135deg, rgba(7, 9, 20, 0.95), rgba(12, 18, 36, 0.9));
  position: relative;
}

.sr-cta-step::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px dashed rgba(125, 217, 255, 0.2);
  pointer-events: none;
}

.sr-cta-step-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sr-accent-alt);
  margin-bottom: 8px;
}

.sr-cta-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.sr-cta-step p {
  margin: 0;
  color: var(--sr-text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.sr-cta-note {
  font-size: 12px;
  color: var(--sr-text-soft);
}

.sr-cta-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sr-cta-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sr-cta-matrix-card {
  border-radius: 18px;
  border: 1px solid var(--sr-border-subtle);
  padding: 16px;
  background: radial-gradient(circle at 80% 0%, rgba(48, 255, 148, 0.35), transparent 70%),
      rgba(7, 9, 20, 0.95);
  box-shadow: var(--sr-shadow-soft);
}

.sr-cta-matrix-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.sr-cta-matrix-card p,
.sr-cta-matrix-card small {
  margin: 0;
  color: var(--sr-text-soft);
  font-size: 13px;
}

.sr-cta-orbit {
  position: relative;
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(125, 217, 255, 0.9),
    #05070b
  );
  box-shadow: var(--sr-shadow-soft);
}

.sr-cta-ring {
  position: absolute;
  inset: 15%;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
}

.sr-cta-ring.ring-b {
  inset: 30%;
  border-style: solid;
  border-color: rgba(48, 255, 148, 0.75);
}

.sr-cta-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.sr-cta-node.node-1 {
  top: 22%;
  left: 18%;
}

.sr-cta-node.node-2 {
  top: 48%;
  right: 14%;
}

.sr-cta-node.node-3 {
  bottom: 18%;
  left: 40%;
}

/* Page hero shared */
.sr-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 32px;
}

.sr-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--sr-accent-alt);
  margin-bottom: 8px;
}

.sr-page-hero-copy h1 {
  font-size: clamp(30px, 3.6vw, 36px);
  margin: 0 0 12px;
}

.sr-page-hero-copy p {
  color: var(--sr-text-soft);
  max-width: 520px;
  line-height: 1.6;
}

.sr-page-hero-visual {
  justify-self: stretch;
}

.sr-hero-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1.1fr;
  gap: 10px;
}

.sr-hero-mosaic-tile {
  border-radius: 18px;
  background: #05070b;
  border: 1px solid var(--sr-border-subtle);
  box-shadow: var(--sr-shadow-soft);
}

.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-a {
  background: radial-gradient(circle at 10% 0, #7dd9ff, transparent 55%),
    radial-gradient(circle at 90% 40%, #30ff94, transparent 60%), #05070b;
}

.mosaic-b {
  background: conic-gradient(
    from 210deg,
    rgba(48, 255, 148, 0.7),
    rgba(125, 217, 255, 0.7),
    rgba(181, 140, 255, 0.7),
    rgba(48, 255, 148, 0.7)
  );
}

.mosaic-c {
  background-image: linear-gradient(
      rgba(11, 15, 23, 0.9) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(11, 15, 23, 0.9) 1px, transparent 1px);
  background-size: 18px 18px;
}

.mosaic-d {
  background: radial-gradient(circle at 50% 0, #b58cff, transparent 60%),
    linear-gradient(180deg, #05070b, #05070b);
}

/* Experiences detail layouts */
.sr-section-detail .sr-section-header {
  margin-bottom: 20px;
}

.sr-section-detail .sr-section-header p {
  max-width: 560px;
}

.sr-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

.sr-detail-visual {
  order: -1;
}

.sr-section-alt .sr-detail-visual {
  order: 1;
}

.sr-detail-copy h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.sr-detail-copy p {
  color: var(--sr-text-soft);
}

.sr-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.sr-pill-card {
  padding: 14px 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--sr-border-subtle);
  background: radial-gradient(circle at 0 0, #252f4f 0, #0b0f17 60%);
  font-size: 13px;
  color: var(--sr-text-soft);
}

.sr-pill-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--sr-text);
}

.sr-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.sr-checklist li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
  color: var(--sr-text-soft);
  font-size: 14px;
}

.sr-check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(122, 245, 184, 0.9);
  box-shadow: 0 0 12px rgba(122, 245, 184, 0.8);
  position: relative;
  flex-shrink: 0;
}

.sr-check::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, #30ff94, #7dd9ff);
}

.sr-two-col-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.sr-dot-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  color: var(--sr-text-soft);
  font-size: 14px;
}

.sr-dot-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.sr-dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sr-accent);
}

/* Custom abstract “image” compositions for experiences */
.sr-cinema-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0, #7dd9ff, #05070b 68%);
  box-shadow: var(--sr-shadow-soft);
}

.sr-cinema-screen {
  position: absolute;
  inset: 14% 10% 46%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sr-cinema-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(125, 217, 255, 0.9),
      rgba(181, 140, 255, 0.9)
    ),
    radial-gradient(circle at 10% 10%, rgba(48, 255, 148, 0.8), transparent);
}

.sr-cinema-rays {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    60deg,
    rgba(5, 7, 11, 0.3),
    rgba(5, 7, 11, 0.9)
  );
  mix-blend-mode: soft-light;
}

.sr-cinema-crowd {
  position: absolute;
  inset: 55% 0 0;
  background: radial-gradient(circle at 50% -40%, transparent 0 60%,
      rgba(5, 7, 11, 0.95) 60% 100%);
}

.sr-cinema-lights {
  position: absolute;
  inset: 32% 4% auto;
  height: 26%;
  background:
    radial-gradient(circle at 5% 0, rgba(122, 245, 184, 0.8), transparent 65%),
    radial-gradient(circle at 95% 0, rgba(181, 140, 255, 0.8), transparent 65%);
  mix-blend-mode: screen;
}

.sr-cinema-floor {
  position: absolute;
  inset: 58% -20% -10%;
  background: radial-gradient(circle at 50% -20%, rgba(0, 0, 0, 0) 0 60%,
      rgba(0, 0, 0, 0.95) 60% 100%);
}

.sr-journey-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #30ff94, transparent 65%),
    radial-gradient(circle at 100% 100%, #7dd9ff, transparent 70%), #05070b;
  box-shadow: var(--sr-shadow-soft);
}

.sr-journey-layer.layer-grid {
  background-image: linear-gradient(
      rgba(12, 18, 30, 0.88) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(12, 18, 30, 0.88) 1px,
      transparent 1px
    );
  background-size: 22px 22px;
}

.sr-journey-layer.layer-path {
  background-image: linear-gradient(
      120deg,
      transparent 0 18%,
      rgba(125, 217, 255, 0.9) 18% 20%,
      transparent 20% 45%,
      rgba(48, 255, 148, 0.9) 45% 47%,
      transparent 47% 72%,
      rgba(181, 140, 255, 0.9) 72% 74%,
      transparent 74%
    );
}

.sr-journey-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.95);
}

.sr-journey-node.node-1 {
  top: 20%;
  left: 18%;
}

.sr-journey-node.node-2 {
  top: 42%;
  left: 52%;
}

.sr-journey-node.node-3 {
  top: 65%;
  left: 38%;
}

.sr-journey-node.node-4 {
  bottom: 16%;
  right: 18%;
}

.sr-lab-space {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 0, #7dd9ff, transparent 65%),
    radial-gradient(circle at 80% 20%, #b58cff, transparent 70%), #05070b;
  box-shadow: var(--sr-shadow-soft);
}

.sr-lab-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(10, 14, 26, 0.9) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 14, 26, 0.9) 1px,
      transparent 1px
    );
  background-size: 18px 18px;
}

.sr-lab-panel {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: radial-gradient(circle at 0 0, rgba(125, 217, 255, 0.9), #05070b);
}

.sr-lab-panel.panel-a {
  inset: 10% 54% 46% 6%;
}

.sr-lab-panel.panel-b {
  inset: 32% 8% 32% 48%;
  background: radial-gradient(circle at 100% 0, rgba(181, 140, 255, 0.9),
      #05070b);
}

.sr-lab-panel.panel-c {
  inset: 58% 38% 8% 14%;
  background: radial-gradient(circle at 50% 0, rgba(48, 255, 148, 0.9),
      #05070b);
}

.sr-lab-orbit {
  position: absolute;
  inset: 24% 20%;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.sr-lab-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.95);
}

.lab-node-1 {
  top: 26%;
  left: 34%;
}

.lab-node-2 {
  top: 52%;
  right: 22%;
}

.lab-node-3 {
  bottom: 22%;
  left: 26%;
}

/* Technology diagrams */
.sr-platform-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #7dd9ff, transparent 65%),
    radial-gradient(circle at 100% 100%, #30ff94, transparent 70%), #05070b;
  box-shadow: var(--sr-shadow-soft);
}

.sr-platform-stripe {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 16%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.sr-platform-stripe.stripe-top {
  top: 20%;
  background: radial-gradient(circle at 10% 50%, rgba(125, 217, 255, 0.9),
      transparent 80%);
}

.sr-platform-stripe.stripe-middle {
  top: 42%;
  background: radial-gradient(circle at 90% 50%, rgba(48, 255, 148, 0.9),
      transparent 80%);
}

.sr-platform-stripe.stripe-bottom {
  top: 64%;
  background: radial-gradient(circle at 50% 50%, rgba(181, 140, 255, 0.9),
      transparent 80%);
}

.sr-platform-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}

.sr-platform-node.node-left {
  left: 16%;
  top: 50%;
}

.sr-platform-node.node-right {
  right: 16%;
  top: 50%;
}

.sr-platform-core {
  position: absolute;
  inset: 32% 36%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.9),
      transparent 70%);
}

.sr-section-diagram .sr-section-inner {
  align-items: stretch;
}

.sr-diagram-copy p {
  color: var(--sr-text-soft);
}

.sr-stack-diagram {
  position: relative;
  width: 100%;
  border-radius: 24px;
  padding: 24px;
  background: radial-gradient(circle at 0 0, #7dd9ff, transparent 65%),
    radial-gradient(circle at 100% 100%, #30ff94, transparent 70%), #05070b;
  box-shadow: var(--sr-shadow-soft);
}

.sr-stack-layer {
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  margin-bottom: 10px;
}

.sr-stack-layer.layer-video {
  background: rgba(10, 15, 26, 0.95);
}

.sr-stack-layer.layer-seereels {
  background: linear-gradient(90deg, #30ff94, #7dd9ff);
  color: #02040a;
  font-weight: 600;
}

.sr-stack-layer.layer-surfaces {
  background: rgba(13, 18, 32, 0.95);
}

.sr-stack-links {
  position: absolute;
  inset: 24px auto 24px 52%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sr-stack-link {
  width: 2px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7dd9ff, #30ff94);
}

/* Columns */
.sr-section-columns .sr-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.sr-section-columns p {
  color: var(--sr-text-soft);
}

/* Contact */
.sr-section-contact {
  margin-top: 72px;
}

.sr-contact-copy p {
  color: var(--sr-text-soft);
}

.sr-contact-meta {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--sr-border-subtle);
  background: radial-gradient(circle at 0 0, #252f4f 0, #0b0f17 65%);
  font-size: 14px;
}

.sr-contact-form {
  margin-top: 8px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--sr-border-subtle);
  background: rgba(7, 10, 20, 0.96);
  box-shadow: var(--sr-shadow-soft);
}

.sr-field-group {
  margin-bottom: 14px;
}

.sr-field-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.sr-field-group input,
.sr-field-group select,
.sr-field-group textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 7, 16, 0.96);
  color: var(--sr-text);
  font-size: 13px;
}

.sr-field-group input::placeholder,
.sr-field-group textarea::placeholder {
  color: rgba(156, 166, 197, 0.8);
}

.sr-form-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--sr-text-soft);
}

/* Links */
.sr-link {
  display: inline-flex;
  margin-top: 8px;
  font-size: 13px;
  color: var(--sr-accent-alt);
}

/* Footer */
.sr-footer {
  margin-top: 120px;
  padding: 0 16px;
  position: relative;
  background: radial-gradient(circle at 20% -30%, rgba(120, 160, 255, 0.25), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(74, 255, 205, 0.18), transparent 55%),
    #020308;
  color: var(--sr-text);
  overflow: hidden;
}

.sr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.8;
}

.sr-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(130, 198, 255, 0.18), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.sr-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 0 84px;
  display: flex;
  justify-content: center;
}

.sr-footer-lockup {
  width: 100%;
  padding: 32px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 10px 120px rgba(82, 163, 255, 0.18);
}

.sr-footer-domain {
  flex-shrink: 0;
  font-size: 32px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-decoration: none;
  color: #f7f7f7;
}

.sr-footer-divider {
  flex: 1;
  height: 1px;
  min-width: 72px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
  display: block;
}

.sr-footer-address {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.sr-footer-email {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--sr-accent);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sr-footer-email::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--sr-radius-pill);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0;
  animation: sr-glint 3.6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.sr-footer-email:hover {
  color: var(--sr-accent-strong);
}

@media (max-width: 720px) {
  .sr-footer {
    margin-top: 72px;
  }

  .sr-footer-inner {
    padding: 56px 0 68px;
  }

  .sr-footer-lockup {
    flex-direction: column;
    text-align: center;
    padding: 28px;
    gap: 18px;
  }

  .sr-footer-domain {
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .sr-footer-divider {
    width: 100%;
    min-width: 0;
    height: 1px;
    opacity: 0.4;
  }
}

/* Reveal on scroll */
.sr-reveal {
  --sr-reveal-delay: 0s;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity var(--sr-duration-slow) var(--sr-ease-emphasis),
    transform var(--sr-duration-slow) var(--sr-ease-emphasis),
    filter var(--sr-duration-medium) var(--sr-ease-out);
  transition-delay: var(--sr-reveal-delay, 0s);
}

.sr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Tilt hover */
.sr-tilt {
  transform-style: preserve-3d;
  transition: transform var(--sr-duration-medium) var(--sr-ease-emphasis);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  will-change: transform;
}

/* Responsiveness */
@media (max-width: 960px) {
  main {
    padding-top: 96px;
  }

  .sr-header-inner {
    gap: 16px;
  }

  .sr-nav {
    display: none;
  }

  .sr-hero,
  .sr-section-inner,
  .sr-page-hero,
  .sr-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-cta-points,
  .sr-cta-matrix,
  .sr-cta-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-hero-media {
    order: -1;
  }

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

  .sr-card-horizontal {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-section-columns .sr-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-pill-grid,
  .sr-two-col-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sr-detail-visual {
    order: -1 !important;
  }

  .sr-footer-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 16px;
  }

  .sr-header-inner {
    padding-inline: 16px;
  }

  .sr-cta-main {
    margin-left: auto;
    font-size: 11px;
    padding-inline: 12px;
  }

  .sr-section {
    margin-top: 56px;
  }

  .sr-footer-inner {
    gap: 32px;
    padding: 48px 20px 40px;
  }

  .sr-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sr-footer-name {
    letter-spacing: 0.42em;
  }

  .sr-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .sr-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


