:root {
  --bg: #f6f6f2;
  --section: #ffffff;
  --text: #242424;
  --muted: #4a4a4a;
  --muted-soft: #737373;
  --border: #dedede;
  --border-dark: #c9c9c9;
  --black: #1f1f1f;
  --black-hover: #000000;
  --card: #ffffff;
  --soft: #f1f1ef;
  --blue: #7f8cff;
  --blue-soft: rgba(127, 140, 255, 0.18);
  --red-soft: #fae7e7;
  --red: #d94a4f;
  --radius: 7px;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.055);
  --shadow-card: 0 8px 22px rgba(0, 0, 0, 0.045);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

/* Wider whole site */
.container {
  width: min(1360px, calc(100% - 28px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 46px;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  animation: navDrop 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: top 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* When scrolled, only move upward. No width change. */
.site-header.scrolled {
  top: 10px;
}

.navbar {
  width: min(1180px, calc(100% - 36px));
  height: 64px;
  margin: 0 auto;
  padding: 0 12px 0 14px;
  border-radius: var(--radius);
  background: #fbfbf8;
  border: none;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.15),
    0 6px 14px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  position: relative;
}

/* Same width while scrolled */
.site-header.scrolled .navbar {
  width: min(1180px, calc(100% - 36px));
  background: #ffffff;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.16),
    0 7px 16px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -16px;
  height: 20px;
  background: rgba(0, 0, 0, 0.14);
  filter: blur(18px);
  border-radius: 999px;
  z-index: -1;
}

.logo,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.logo {
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.nav-links {
  gap: 34px;
  color: var(--text);
  font-size: 15px;
}

.nav-links a {
  color: #202020;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-actions {
  gap: 12px;
}

.shop-btn {
  width: 43px;
  height: 43px;
  background: #f0f0ec;
  border: none;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.shop-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--black);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-btn:hover {
  background: #e7e7e2;
  transform: translateY(-2px);
}

.account-btn {
  padding: 12px 18px;
  border-radius: var(--radius);
  background: #181818;
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.account-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* Hero */

.hero-section {
  padding: 24px 0 70px;
}

/* Wider dashboard/hero box */
.hero-box {
  min-height: 470px;
  border: none;
  border-radius: var(--radius);
  background:
    linear-gradient(
      90deg,
      rgba(223, 228, 255, 0.82),
      rgba(143, 156, 255, 0.62)
    ),
    #f8f8f5;
  box-shadow:
    0 16px 38px rgba(65, 78, 160, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7) inset;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  padding: 138px 86px 58px;
  position: relative;
  overflow: hidden;
  animation: heroIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-box::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 82px 82px;
  pointer-events: none;
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #202020;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-content h1 {
  max-width: 690px;
  color: #202020;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 950;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 620px;
  color: #343434;
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-form {
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
}

.hero-form input[type="email"] {
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  padding: 0 15px;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.hero-form input[type="email"]:focus {
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.055);
  transform: translateY(-1px);
}

.hero-form input::placeholder {
  color: #a1a1a1;
}

.confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #343434;
}

.confirm input {
  margin-top: 4px;
  accent-color: var(--black);
}

.hero-form button,
.main-btn {
  width: fit-content;
  border: none;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-form button:hover,
.main-btn:hover {
  background: var(--black-hover);
  transform: translateY(-2px);
}

.hero-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* Hero preview / dashboard */

.hero-preview {
  display: grid;
  place-items: center;
}

/* Dashboard wider */
.preview-card {
  width: 440px;
  max-width: 100%;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 36px rgba(50, 60, 130, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  animation: previewFloat 5.5s ease-in-out infinite;
  transform-origin: center;
}

/* Dashboard dots/topbar */
.preview-top {
  height: 44px;
  background: #f3f3f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
}

.preview-top span {
  display: block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 999px;
  background: #ff5f57;
  animation: dotPulse 2.2s ease-in-out infinite;
}

.preview-top span:nth-child(2) {
  background: #febc2e;
  animation-delay: 0.2s;
}

.preview-top span:nth-child(3) {
  background: #28c840;
  animation-delay: 0.4s;
}

.preview-body {
  padding: 22px;
}

.preview-body p {
  color: var(--muted-soft);
  font-size: 13px;
}

.preview-body strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 7px 0 15px;
}

.progress {
  height: 8px;
  border-radius: var(--radius);
  background: #e5e7eb;
  overflow: hidden;
  margin-bottom: 17px;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--black);
  animation: progressFill 1.25s ease-out 0.55s forwards;
}

.preview-row {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.065);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  opacity: 0;
  animation: rowIn 0.55s ease forwards;
}

.preview-row b {
  color: var(--text);
}

.preview-row:nth-of-type(1) {
  animation-delay: 0.55s;
}

.preview-row:nth-of-type(2) {
  animation-delay: 0.68s;
}

.preview-row:nth-of-type(3) {
  animation-delay: 0.81s;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.45);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
  margin-bottom: 18px;
}

.section-heading p {
  color: #555;
  font-size: 16px;
}

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

.info-card,
.requirement-card {
  min-height: 202px;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.info-card:hover,
.requirement-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.icon-box {
  width: 68px;
  height: 68px;
  border-radius: var(--radius);
  background: #eeeeea;
  border: none;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.icon-box svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card:hover .icon-box,
.requirement-card:hover .icon-box {
  animation: iconPop 0.38s ease both;
}

.info-card h3,
.requirement-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.info-card p,
.requirement-card p {
  color: var(--muted);
  font-size: 15px;
}

.center-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.text-link:hover {
  color: #000;
}

/* Education split */

.education-section {
  padding-top: 82px;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.visual-panel {
  height: 315px;
  border: none;
  border-radius: var(--radius);
  background:
    linear-gradient(
      135deg,
      rgba(255, 226, 226, 0.9),
      rgba(255, 240, 240, 0.86)
    ),
    #fff1f1;
  box-shadow:
    0 10px 26px rgba(180, 80, 80, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  overflow: hidden;
}

.visual-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 45%, rgba(229, 72, 77, 0.25), transparent 34%),
    repeating-linear-gradient(
      170deg,
      rgba(229, 72, 77, 0.08) 0,
      rgba(229, 72, 77, 0.08) 1px,
      transparent 1px,
      transparent 13px
    );
  animation: patternMove 12s linear infinite;
}

.visual-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(229, 72, 77, 0.35) 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  mask-image: radial-gradient(circle at 45% 45%, black 0 35%, transparent 66%);
}

.visual-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: shieldFloat 4.5s ease-in-out infinite;
}

.visual-icon svg {
  width: 86px;
  height: 86px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-content {
  color: var(--muted);
  font-size: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.split-content p {
  margin-bottom: 24px;
}

/* Download stats */

.download-box {
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.download-box h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 950;
  margin-bottom: 14px;
}

.download-box p {
  color: var(--muted);
}

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

.stats div {
  border: none;
  border-radius: var(--radius);
  background: #f4f4f1;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.035);
}

.stats strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
  transition: transform 0.25s ease;
}

.stats div:hover strong {
  transform: translateY(-2px);
}

.stats span {
  color: var(--muted-soft);
  font-size: 13px;
}

/* FAQ */

.faq {
  width: min(860px, 100%);
  margin: 0 auto;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 26px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.faq details {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}

.faq details:hover {
  background: rgba(0, 0, 0, 0.018);
}

.faq details:last-child {
  border-bottom: none;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq p {
  color: var(--muted);
  margin-top: 12px;
  animation: faqOpen 0.28s ease both;
}

/* Footer */

.footer {
  padding: 34px 0 24px;
  background: #ffffff;
  border-top: none;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.055);
}

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

.footer h4 {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 15px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 28px;
  text-align: center;
  color: var(--muted-soft);
  font-size: 14px;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 0.06s;
}

.delay-2 {
  transition-delay: 0.12s;
}

.delay-3 {
  transition-delay: 0.18s;
}

/* Animations */

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-text,
.hero-content .hero-form {
  animation: textRise 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content .eyebrow {
  animation-delay: 0.08s;
}

.hero-content h1 {
  animation-delay: 0.16s;
}

.hero-content .hero-text {
  animation-delay: 0.24s;
}

.hero-content .hero-form {
  animation-delay: 0.32s;
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes previewFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 92%;
  }
}

@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconPop {
  0% {
    transform: scale(1) rotate(0);
  }

  45% {
    transform: scale(1.08) rotate(-2deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes shieldFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes patternMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(18px);
  }
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .hero-box {
    padding-left: 56px;
    padding-right: 56px;
  }

  .preview-card {
    width: 400px;
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 28px, 1360px);
  }

  .site-header {
    top: 38px;
  }

  .site-header.scrolled {
    top: 8px;
  }

  .navbar,
  .site-header.scrolled .navbar {
    width: calc(100% - 36px);
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-box {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 126px 34px 44px;
  }

  .hero-preview {
    display: none;
  }

  .split-row,
  .download-box {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1360px);
  }

  .hero-section {
    padding-top: 12px;
  }

  .site-header {
    top: 28px;
  }

  .site-header.scrolled {
    top: 8px;
  }

  .navbar,
  .site-header.scrolled .navbar {
    width: calc(100% - 20px);
    height: 60px;
  }

  .logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 35px;
    height: 35px;
  }

  .shop-btn {
    display: none;
  }

  .account-btn {
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero-box {
    padding: 112px 20px 34px;
  }

  .eyebrow {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-form button,
  .main-btn {
    width: 100%;
    text-align: center;
  }

  .center-actions {
    flex-direction: column;
    gap: 16px;
  }

  .visual-panel {
    height: 240px;
  }

  .split-content {
    padding: 22px;
  }

  .faq {
    padding: 8px 18px;
  }

  .faq summary {
    font-size: 18px;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* --------------------------------------------------
   Dotted halftone pattern behind floating dashboard
   Similar to the IDA/hex-rays style
-------------------------------------------------- */

.hero-preview {
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Big dotted shape behind the floating dashboard card */
.hero-preview::before {
  content: "";
  position: absolute;
width: 650px;
height: 500px;
  right: -95px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 1.45px, transparent 1.7px);
  background-size: 10px 10px;

  opacity: 0.95;

  /* Makes it fade like the screenshot */
  mask-image:
    radial-gradient(
      ellipse at 54% 50%,
      black 0%,
      black 47%,
      rgba(0, 0, 0, 0.65) 58%,
      transparent 74%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse at 54% 50%,
      black 0%,
      black 47%,
      rgba(0, 0, 0, 0.65) 58%,
      transparent 74%
    );
}

/* Extra vertical dotted stripe texture, like in your image */
.hero-preview::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 390px;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0 2px,
      transparent 2px 8px
    );

  opacity: 0.55;

  mask-image:
    radial-gradient(
      ellipse at 50% 50%,
      black 0%,
      black 38%,
      transparent 70%
    );
  -webkit-mask-image:
    radial-gradient(
      ellipse at 50% 50%,
      black 0%,
      black 38%,
      transparent 70%
    );
}

/* Keep the floating window above the dots */
.preview-card {
  position: relative;
  z-index: 2;
}

/* Optional: make the floating window slightly wider */
.preview-card {
  width: 465px;
}

/* Optional: add subtle dots inside the floating dashboard too */
.preview-card::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -35px;
  width: 210px;
  height: 180px;
  z-index: 0;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(127, 140, 255, 0.18) 1.2px, transparent 1.5px);
  background-size: 9px 9px;

  mask-image:
    radial-gradient(circle at center, black 0%, transparent 72%);
  -webkit-mask-image:
    radial-gradient(circle at center, black 0%, transparent 72%);
}

.preview-top,
.preview-body {
  position: relative;
  z-index: 1;
}

/* Responsive: hide/reduce dots when preview disappears */
@media (max-width: 960px) {
  .hero-preview::before,
  .hero-preview::after,
  .preview-card::before {
    display: none;
  }
}
