:root {
  --bg: #0d1218;
  --bg-soft: #151d25;
  --bg-card: rgba(20, 27, 36, 0.82);
  --bg-card-strong: rgba(17, 24, 32, 0.94);

  --teal: #2e7dff;
  --teal-2: #1d63d1;
  --teal-glow: rgba(46, 125, 255, 0.18);
  --teal-glow-soft: rgba(46, 125, 255, 0.08);
  --champagne: #d7ccb3;
  --champagne-soft: rgba(215, 204, 179, 0.12);

  --text: #edf3fb;
  --text-muted: #9eacbe;
  --text-dim: #647284;

  --border: rgba(96, 129, 168, 0.24);
  --border-strong: rgba(46, 125, 255, 0.34);
  --white-border: rgba(255, 255, 255, 0.08);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Outfit", sans-serif;

  --container: 1240px;
  --nav-height: 76px;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 16px 50px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(46, 125, 255, 0.20), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(215, 204, 179, 0.08), transparent 18%),
    url("../brand/fo_frame_dark.png"),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%),
    linear-gradient(180deg, #0d1218 0%, #111922 44%, #0b1015 100%);
  background-size: auto, auto, 420px auto, auto, auto;
  background-position: 18% 12%, 82% 18%, center top, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat, no-repeat;
  background-blend-mode: screen, screen, soft-light, normal, normal;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(60deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px, 72px 72px, 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.08) 0%, rgba(4, 7, 11, 0.34) 100%),
    radial-gradient(circle at center, transparent 45%, rgba(3, 6, 10, 0.36) 100%);
}

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

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

.site-wrap {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin-bottom: 2.75rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--champagne);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title span {
  color: var(--teal);
}

.section-copy {
  max-width: 740px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.45vw, 1.08rem);
  line-height: 1.75;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 14, 20, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(215, 204, 179, 0.26);
  background: radial-gradient(circle at center, rgba(46, 125, 255, 0.16), rgba(46, 125, 255, 0.04));
  box-shadow: inset 0 0 24px rgba(46, 125, 255, 0.08);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--champagne);
}

.brand-sub {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-cta {
  padding: 0.68rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text) !important;
  background: rgba(46, 125, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 20, 0.96);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* HERO */
.hero {
  padding: clamp(4rem, 9vw, 6.5rem) 0 3.5rem;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(46, 125, 255, 0.08);
  color: var(--champagne);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(46, 125, 255, 0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1.2rem;
}

.home-hero .hero-title {
  font-size: clamp(3.6rem, 9vw, 7.8rem);
  line-height: 0.9;
}

.hero-title span,
.hero-title .accent {
  color: var(--teal);
  display: block;
}

.hero-text {
  max-width: 760px;
  color: var(--text-muted);
  font-size: clamp(1.03rem, 1.7vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: #f8fbff;
  box-shadow: 0 16px 34px rgba(46, 125, 255, 0.24);
}

.btn-primary:hover {
  background: #3f8bff;
  box-shadow: 0 18px 38px rgba(46, 125, 255, 0.28);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--champagne);
  color: var(--text);
  background: rgba(215, 204, 179, 0.08);
}

/* COMMON CARDS / LAYOUT */
.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%),
    var(--bg-card);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.card-body {
  padding: 1.45rem 1.35rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.card-copy {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.footer {
  padding: 2.2rem 0 2.8rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.footer-title span {
  color: var(--teal);
}

.footer-sub {
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* INDEX-SPECIFIC */
.hero-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(46, 125, 255, 0.07);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding-top: 1rem;
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 255, 0.12);
  animation: drift 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.orb-1 { width: 560px; height: 560px; opacity: 0.7; }
.orb-2 { width: 410px; height: 410px; opacity: 0.45; animation-delay: 1.6s; }
.orb-3 { width: 260px; height: 260px; opacity: 0.25; animation-delay: 3.2s; }

@keyframes drift {
  0%, 100% { transform: scale(1); opacity: 0.26; }
  50% { transform: scale(1.03); opacity: 0.8; }
}

.hero-panel {
  position: relative;
  width: min(100%, 520px);
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    var(--bg-card-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
}

.launch-note {
  margin-top: 1.6rem;
  max-width: 680px;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(215, 204, 179, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
    rgba(20, 27, 36, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.launch-note-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.45rem;
}

.launch-note p {
  color: var(--text-muted);
  line-height: 1.75;
}

.brand-stage {
  position: relative;
  inset: auto;
  width: min(100%, 520px);
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(215, 204, 179, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%),
    rgba(11, 17, 23, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  z-index: 1;
  margin: 0 auto;
}

.brand-stage-top,
.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  justify-content: flex-start;
}

.brand-seal {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--champagne);
  background: radial-gradient(circle at center, rgba(46, 125, 255, 0.18), rgba(46, 125, 255, 0.03));
  border: 1px solid rgba(215, 204, 179, 0.22);
}

.brand-seal svg {
  width: 42px;
  height: 42px;
}

.brand-seal-image {
  overflow: hidden;
  padding: 0;
}

.brand-seal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-stage-kicker,
.brand-stage-pill,
.brand-mini-label,
.feature-kicker,
.timeline-step {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-stage-kicker {
  font-size: 0.76rem;
  color: var(--champagne);
  margin-bottom: 0.3rem;
}

.brand-stage-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 320px;
}

.brand-stage-pill {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 125, 255, 0.28);
  background: rgba(46, 125, 255, 0.10);
  color: #dce9ff;
  font-size: 0.7rem;
  white-space: nowrap;
}

.brand-stage-center {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px;
  margin: 1.25rem 0;
}

.brand-stage-center-logo {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12, 17, 25, 0.12), rgba(12, 17, 25, 0.48)),
    rgba(8, 12, 18, 0.7);
}

.brand-honeycomb {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 10, 15, 0.18), rgba(7, 10, 15, 0.54)),
    url("../brand/fo_frame_dark.png");
  background-size: cover;
  background-position: center;
  opacity: 0.68;
}

.brand-core-image-wrap {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.brand-core-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.42));
}

.brand-core-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 255, 0.18);
  box-shadow:
    inset 0 0 40px rgba(46, 125, 255, 0.08),
    0 0 60px rgba(46, 125, 255, 0.08);
}

.brand-core {
  position: relative;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.07), transparent 38%),
    linear-gradient(180deg, rgba(46, 125, 255, 0.18), rgba(15, 21, 28, 0.96));
  border: 1px solid rgba(215, 204, 179, 0.18);
}

.brand-core-small {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-core-mark {
  font-family: var(--font-display);
  font-size: 4.1rem;
  line-height: 1;
  color: #f5f9ff;
}

.brand-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-mini-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.brand-mini-label {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--champagne);
  margin-bottom: 0.55rem;
}

.brand-mini-card strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.brand-mini-card p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--white-border);
}

.window-dots {
  display: inline-flex;
  gap: 0.45rem;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.panel-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(46, 125, 255, 0.10);
  border: 1px solid var(--border);
}

.hero-panel-body {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.mock-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.mock-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 1rem;
  min-height: 128px;
}

.mock-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.mock-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.mock-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.mock-stat-item {
  border-radius: 16px;
  padding: 0.9rem 0.8rem;
  border: 1px solid rgba(46, 125, 255, 0.14);
  background: rgba(46, 125, 255, 0.08);
}

.mock-stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.mock-stat-item span {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-list {
  display: grid;
  gap: 0.7rem;
}

.mock-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}

.mock-list-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.mock-list-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.status {
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-open {
  color: #eef5ff;
  background: #2e7dff;
}

.status-warn {
  color: #251400;
  background: #ffba52;
}

.status-soft {
  color: #dce9ff;
  background: rgba(46, 125, 255, 0.12);
  border: 1px solid rgba(46, 125, 255, 0.16);
}

.strip {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(46, 125, 255, 0.08), rgba(215, 204, 179, 0.05)),
    rgba(255, 255, 255, 0.01);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.strip-item {
  text-align: center;
  padding: 0.8rem 0.5rem;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.02em;
}

.strip-item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.3rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%),
    var(--bg-card);
}

.card-link:hover .card-arrow {
  transform: translateX(4px);
  color: var(--teal);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.card-arrow {
  margin-top: 1.1rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.value-card {
  padding: 1.45rem 1.35rem;
  min-height: 100%;
}

.feature-grid,
.screenshot-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-grid-compact {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  padding: 1.45rem 1.35rem;
  min-height: 100%;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--champagne);
  font-size: 0.8rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(0, 229, 196, 0.05);
  margin-bottom: 1rem;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.value-copy {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.story-panel {
  padding: 1.6rem 1.4rem;
}

.story-panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.story-panel p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

.mini-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.mini-item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.mini-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.mini-item span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.work-feel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  padding: clamp(1.4rem, 2vw, 2rem);
}

.work-feel-copy .section-copy {
  margin-bottom: 1.4rem;
}

.work-feel-panel {
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(46, 125, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.work-timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 15, 22, 0.56);
}

.timeline-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(215, 204, 179, 0.18);
  color: var(--champagne);
  background: rgba(215, 204, 179, 0.06);
  font-size: 0.74rem;
}

.timeline-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.screenshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 10 / 16;
  object-fit: cover;
  background: #0a0f14;
}

.screenshot-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.screenshot-meta {
  padding: 1rem 1rem 1.1rem;
}

.screenshot-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
}

.screenshot-meta span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.phase {
  padding: 1.3rem 1.15rem;
  min-height: 100%;
}

.phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.phase-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.phase-badge {
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  color: var(--teal);
  background: rgba(0, 229, 196, 0.06);
}

.phase-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
}

.phase-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cta-box {
  padding: clamp(2rem, 4vw, 3rem);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-copy {
  max-width: 700px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  font-weight: 900;
}

.cta-title span {
  color: var(--champagne);
}

.cta-text {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 650px;
}

/* PRODUCT / MODULES / WHY / ROADMAP / CONTACT SPECIFIC */
.hero-panel-simple,
.summary-card,
.phase-box,
.cta-box-simple,
.info-item,
.pillar,
.phase-point,
.form-note,
.status-message,
.highlight-box {
  color: inherit;
}

.panel-grid,
.phase-points,
.info-list,
.pillars {
  display: grid;
  gap: 1rem;
}

.panel-box,
.phase-point,
.info-item,
.pillar,
.highlight-box {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.panel-box h3,
.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.panel-box p,
.highlight-box p,
.phase-point,
.info-item span,
.pillar span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.panel-stat-grid,
.summary-grid {
  display: grid;
  gap: 1rem;
}

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

.panel-stat {
  padding: 1rem 0.8rem;
  border-radius: 16px;
  background: rgba(0, 229, 196, 0.04);
  border: 1px solid rgba(0, 229, 196, 0.08);
}

.panel-stat strong {
  display: block;
  font-family: var(--font-display);
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.panel-stat span {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-kicker-number {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.mini-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.mini-point {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.summary-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    var(--bg-card);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.2rem;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  font-weight: 800;
}

.summary-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.phase-body {
  padding: 1.5rem 1.4rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.phase-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 229, 196, 0.06);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.phase-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.phase-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  font-weight: 800;
}

.phase-copy {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.input:focus,
.textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 229, 196, 0.10);
  background: rgba(255,255,255,0.04);
}

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

.form-note {
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.65;
}

.status-message {
  display: none;
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.status-message.show {
  display: block;
}

.status-success {
  background: rgba(18, 245, 214, 0.08);
  border: 1px solid rgba(18, 245, 214, 0.18);
  color: #12f5d6;
}

.status-error {
  background: rgba(255, 106, 127, 0.08);
  border: 1px solid rgba(255, 106, 127, 0.18);
  color: #ff6a7f;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .story {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    padding-top: 1rem;
  }

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

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

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

  .brand-stage {
    position: relative;
    inset: auto;
    margin: 0 auto 1.2rem;
    width: min(100%, 640px);
  }

  .work-feel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .phase-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-title {
    font-size: clamp(3.1rem, 14vw, 5.8rem);
  }

  .mock-row,
  .grid-2,
  .grid-3,
  .feature-grid,
  .feature-grid-compact,
  .roadmap,
  .strip-grid,
  .mock-stat,
  .panel-stat-grid,
  .summary-grid,
  .screenshot-grid,
  .brand-stage-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-body {
    padding: 1rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .brand-stage-top,
  .brand-lockup {
    align-items: flex-start;
  }

  .brand-stage-top {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, var(--container));
  }

  .home-hero {
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-tags {
    gap: 0.6rem;
  }

  .brand-core-ring {
    width: 180px;
    height: 180px;
  }

  .brand-core {
    width: 150px;
    height: 150px;
  }

  .brand-core-mark {
    font-size: 3.2rem;
  }

  .card-link,
  .value-card,
  .feature-card,
  .story-panel,
  .phase,
  .cta-box,
  .card-body,
  .phase-body,
  .summary-card,
  .highlight-box {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .process-step {
  position: relative;
  padding-left: 3.5rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 229, 196, 0.08);
  border: 1px solid var(--border);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-legal {
  opacity: 0.7;
}

.footer-legal:hover {
  opacity: 1;
  color: var(--teal);
}
}
/* =========================================
   GLOBAL COMING SOON OVERLAY
========================================= */

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.2rem, 12vw, 12rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  text-shadow:
    0 0 24px rgba(46, 125, 255, 0.16),
    0 0 48px rgba(215, 204, 179, 0.08);
  filter: contrast(1.08);
  user-select: none;
  white-space: nowrap;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 12000;
  width: min(520px, calc(100% - 2rem));
  border-radius: 22px;
  border: 1px solid rgba(215, 204, 179, 0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 100%),
    rgba(10, 14, 20, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.cookie-banner__inner {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1.1rem;
}

.cookie-banner__label {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
}

.cookie-banner__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner__link {
  min-width: 140px;
}

/* =========================================================
   APP PREVIEW PAGE
========================================================= */

.preview-hero {
  overflow: hidden;
}

.preview-hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.5rem;
}

.preview-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-hero-side {
  display: grid;
  gap: 1rem;
}

.preview-side-card,
.preview-side-mini,
.preview-module-point,
.preview-link-box {
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.preview-side-card {
  padding: 1.3rem 1.2rem;
}

.preview-side-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 229, 196, 0.05);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-side-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
}

.preview-side-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.preview-side-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.preview-side-mini {
  padding: 1rem;
}

.preview-side-mini strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.preview-side-mini span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.preview-module-stack {
  display: grid;
  gap: 1.25rem;
}

.preview-module {
  padding: 1.35rem;
}

.preview-module-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.preview-module-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 229, 196, 0.05);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-module-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.preview-module-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 229, 196, 0.06);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.preview-module-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 860px;
}

.preview-module-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
  margin-bottom: 1.2rem;
}

.preview-module-point {
  padding: 0.95rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.preview-shot {
  aspect-ratio: 9 / 19;
  min-height: 0;
  border-radius: 26px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
    var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.preview-shot.placeholder-shot {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.preview-shot.placeholder-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 229, 196, 0.07), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  pointer-events: none;
}

.preview-shot.placeholder-shot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px dashed rgba(0, 229, 196, 0.16);
  pointer-events: none;
}

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

/* RESPONSIVE */
@media (max-width: 1100px) {
  .preview-hero-content {
    grid-template-columns: 1fr;
  }

  /* Module-Text bleibt untereinander */
  .preview-module-points {
    grid-template-columns: 1fr;
  }

  /* 👇 WICHTIG: Screens bleiben nebeneinander */
  .preview-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .preview-side-mini-grid {
    grid-template-columns: 1fr;
  }

  .preview-module {
    padding: 1rem;
  }

  .preview-hero-content,
  .preview-link-box {
    padding: 1rem;
  }
}

/* 👇 EXTRA für Mobile */
@media (max-width: 700px) {
  .preview-gallery {
    grid-template-columns: 1fr;
  }
}

.form-feedback {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.form-error {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.08);
  border: 1px solid rgba(255, 77, 77, 0.25);
}

.form-success {
  color: #dce9ff;
  background: rgba(46, 125, 255, 0.10);
  border: 1px solid rgba(46, 125, 255, 0.25);
}
