* {
  box-sizing: border-box;
}

:root {
  --bg: #070a12;
  --bg-soft: #0d1220;
  --bg-card: rgba(15, 23, 42, 0.82);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-dark: #94a3b8;
  --accent: #8b5cf6;
  --accent-bright: #a78bfa;
  --accent-blue: #38bdf8;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 25%),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 75%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 7vw;
  background: rgba(7, 10, 18, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.site-logo {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav .nav-button {
  padding: 10px 15px;
  border: 1px solid rgba(167, 139, 250, 0.45);
  border-radius: 999px;
  color: var(--text);
  background: rgba(139, 92, 246, 0.16);
}

.section {
  position: relative;
  padding: 105px 7vw;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 910px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 26px;
  font-size: clamp(3.05rem, 7vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #6d28d9);
  color: white;
  box-shadow: 0 18px 48px rgba(139, 92, 246, 0.34);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(167, 139, 250, 0.58);
  background: rgba(30, 41, 59, 0.7);
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.35), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.22), transparent 32%);
  filter: blur(14px);
}

.report-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.report-header {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.55);
}

.report-header span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.38);
}

.report-body {
  padding: 30px;
}

.report-kicker {
  margin-bottom: 10px;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-body h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.report-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.report-item strong {
  color: var(--accent-bright);
  font-size: 0.9rem;
}

.report-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.intro-section {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

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

.feature-card,
.stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.68));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.feature-card {
  padding: 28px;
}

.feature-card p,
.split-content p,
.cta-section p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 70px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.split-content {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.56);
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--accent-bright);
  font-weight: 900;
}

.credibility-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  padding: 30px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--muted-dark);
  font-weight: 700;
}

.cta-section {
  max-width: 960px;
}

.cta-section p {
  max-width: 680px;
  font-size: 1.1rem;
}

.cta-section .button {
  margin-top: 16px;
}

.site-footer {
  padding: 28px 7vw;
  border-top: 1px solid var(--border);
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
  }

  .feature-grid,
  .credibility-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 5vw;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .section {
    padding: 78px 5vw;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.3rem);
  }

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

  .button {
    width: 100%;
  }

  .report-body {
    padding: 24px;
  }

  .report-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.hero-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.10);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.founder-section {
  border-top: 1px solid var(--border);
}

.founder-card {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(2, 6, 23, 0.68));
  box-shadow: var(--shadow);
}

.founder-photo-placeholder {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(203, 213, 225, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(167, 139, 250, 0.18), transparent 42%),
    rgba(15, 23, 42, 0.78);
}

.founder-photo-placeholder span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-content {
  max-width: 820px;
}

.founder-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-bright);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--text);
}

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

  .founder-photo-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .founder-card {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-note {
    padding: 16px;
  }
}

.page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-content {
  max-width: 1050px;
}

.service-section {
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.66));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.service-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 58px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.process-intro p {
  color: var(--muted);
  line-height: 1.7;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-step {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
}

.process-step strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.deliverable-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.deliverable-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.56);
}

.deliverable-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .service-grid,
  .process-section,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-card,
  .process-step,
  .deliverable-card {
    padding: 22px;
  }

  .page-hero {
    min-height: auto;
  }
}

.contact-hero {
  min-height: 68vh;
}

.contact-section {
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.66));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.contact-main-card {
  padding: 34px;
}

.contact-main-card p,
.contact-side-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-side-card {
  position: sticky;
  top: 112px;
  padding: 30px;
}

.email-link {
  display: inline-flex;
  margin: 8px 0 24px;
  color: var(--accent-bright);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.email-link:hover {
  color: var(--text);
}

.subject-box {
  margin: 14px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.10);
  color: var(--text);
  font-weight: 800;
}

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

  .contact-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .contact-main-card,
  .contact-side-card {
    padding: 22px;
  }
}

.form-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.form-intro-card,
.google-form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.66));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.form-intro-card {
  position: sticky;
  top: 112px;
  padding: 30px;
}

.form-intro-card p {
  color: var(--muted);
  line-height: 1.7;
}

.small-note {
  margin-top: 26px;
  font-size: 0.95rem;
}

.small-note a {
  color: var(--accent-bright);
  font-weight: 900;
  text-decoration: none;
}

.small-note a:hover {
  color: var(--text);
}

.google-form-card {
  overflow: hidden;
  padding: 16px;
}

.google-form-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 1500px;
  border: 0;
  border-radius: 18px;
  background: white;
}

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

  .form-intro-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .form-intro-card,
  .google-form-card {
    padding: 16px;
  }

  .google-form-frame {
    min-height: 1650px;
  }
}

.report-preview-section {
  border-bottom: 1px solid var(--border);
}

.sample-report-section {
  border-bottom: 1px solid var(--border);
}

.sample-report-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.sample-report-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.sample-report-top p {
  color: var(--muted);
  line-height: 1.7;
}

.sample-badge {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-report-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(226, 232, 240, 0.98));
  color: #111827;
  box-shadow: var(--shadow);
}

.sample-report-header {
  padding: 42px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 32%),
    #f8fafc;
}

.sample-report-header h3 {
  margin-bottom: 10px;
  color: #020617;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.sample-report-header p {
  max-width: 720px;
  margin-bottom: 0;
  color: #475569;
  line-height: 1.7;
}

.sample-section {
  padding: 34px 42px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.sample-section h3 {
  margin-bottom: 18px;
  color: #020617;
  font-size: 1.35rem;
}

.sample-section p {
  color: #334155;
  line-height: 1.75;
}

.sample-meta-grid,
.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sample-meta-grid div,
.glance-grid div {
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.sample-meta-grid strong,
.glance-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-meta-grid span,
.glance-grid span {
  color: #334155;
  line-height: 1.5;
}

.at-a-glance-card {
  background: rgba(139, 92, 246, 0.07);
}

.score-grid {
  display: grid;
  gap: 14px;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 84px minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.score-row strong {
  color: #020617;
}

.score-row span {
  color: #6d28d9;
  font-weight: 900;
}

.score-row p {
  margin-bottom: 0;
  color: #475569;
}

.notes-list {
  display: grid;
  gap: 18px;
}

.notes-list article {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.notes-list strong {
  display: block;
  margin-bottom: 12px;
  color: #020617;
}

.notes-list ul,
.simple-list,
.priority-list {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.notes-list li,
.simple-list li,
.priority-list li {
  margin-bottom: 8px;
}

.priority-list {
  display: grid;
  gap: 14px;
  padding-left: 22px;
}

.priority-list li {
  padding-left: 6px;
}

.priority-list strong {
  color: #020617;
}

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

.sample-two-column .sample-section {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.sample-two-column .sample-section:first-child {
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.compact-section {
  background: rgba(255, 255, 255, 0.4);
}

.final-thoughts-card {
  border-bottom: 0;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.58);
}

.final-thoughts-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .sample-report-top {
    flex-direction: column;
  }

  .sample-meta-grid,
  .glance-grid,
  .sample-two-column {
    grid-template-columns: 1fr;
  }

  .sample-two-column .sample-section:first-child {
    border-right: 0;
  }

  .score-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .sample-report-header,
  .sample-section {
    padding: 24px;
  }

  .sample-report-card {
    border-radius: 26px;
  }

  .sample-meta-grid div,
  .glance-grid div,
  .notes-list article,
  .score-row {
    padding: 16px;
  }
}

.about-hero {
  border-bottom: 1px solid var(--border);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 58px;
  align-items: center;
}

.about-hero-content {
  max-width: 940px;
}

.about-photo-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.68));
  box-shadow: var(--shadow);
}

.about-photo-placeholder {
  min-height: 440px;
  border: 0;
  border-radius: 0;
}

.about-photo-caption {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.about-photo-caption strong {
  color: var(--text);
  font-size: 1.1rem;
}

.about-photo-caption span {
  color: var(--muted-dark);
  font-weight: 700;
}

.about-story-section,
.about-values-section {
  border-bottom: 1px solid var(--border);
}

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

.about-story-card,
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.66));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.about-story-card {
  padding: 28px;
}

.about-story-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.value-card {
  padding: 26px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-caption,
  .about-story-card,
  .value-card {
    padding: 22px;
  }
}

.games-hero {
  border-bottom: 1px solid var(--border);
}

.games-section,
.dev-journey-section {
  border-bottom: 1px solid var(--border);
}

.games-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.game-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.68));
  box-shadow: var(--shadow);
}

.featured-game-card {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.7));
}

.game-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px;
}

.game-status {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.game-lessons {
  margin: 22px 0 28px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.62);
}

.game-lessons h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-lessons ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.game-card .button {
  width: fit-content;
  margin-top: auto;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 58px;
  align-items: start;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.72), rgba(15, 23, 42, 0.66));
  box-shadow: var(--shadow);
}

.journey-content p {
  color: var(--muted);
  line-height: 1.75;
}

.journey-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .games-grid,
  .journey-card {
    grid-template-columns: 1fr;
  }

  .game-card .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .game-card-content,
  .journey-card {
    padding: 22px;
  }

  .game-card,
  .journey-card {
    border-radius: 26px;
  }

  .game-lessons {
    padding: 18px;
  }
}

/* ================================
   Global brand cleanup
   D Rock Games logo-inspired theme
   ================================ */

:root {
  --bg: #000000;
  --bg-soft: #05070b;
  --bg-card: rgba(8, 13, 20, 0.88);
  --text: #f8fafc;
  --muted: #c7d0dc;
  --muted-dark: #8a96a8;
  --accent: #008fd3;
  --accent-bright: #00a9f4;
  --accent-blue: #00a9f4;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.5);
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 169, 244, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%),
    #000000;
}

/* Header / Navigation */

.site-header {
  min-height: 74px;
  padding: 14px 6vw;
  background: rgba(0, 0, 0, 0.84);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  gap: 10px;
}

.site-nav a {
  position: relative;
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-bright);
}

.site-nav .nav-button,
.site-nav .nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(0, 169, 244, 0.55);
  border-radius: 999px;
  background: rgba(0, 143, 211, 0.16);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0, 143, 211, 0.18);
}

.site-nav .nav-button:hover,
.site-nav .nav-cta:hover {
  border-color: rgba(0, 169, 244, 0.9);
  background: rgba(0, 143, 211, 0.28);
}

/* Tighter type scale */

h1 {
  font-size: clamp(2.65rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.section {
  padding: 82px 6vw;
}

.section.compact-section {
  padding-top: 68px;
  padding-bottom: 68px;
  background: transparent;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

/* Homepage cleanup */

.hero-simple {
  min-height: auto;
  display: block;
  padding-top: 110px;
  padding-bottom: 92px;
  border-bottom: 1px solid var(--border);
}

.hero-simple .hero-content {
  max-width: 960px;
}

.hero-simple h1 {
  max-width: 900px;
}

.hero-note {
  max-width: 760px;
  border-color: rgba(0, 169, 244, 0.24);
  background: rgba(0, 143, 211, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, #00a9f4, #006aa8);
  box-shadow: 0 16px 38px rgba(0, 143, 211, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, #13b9ff, #007fc7);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover {
  border-color: rgba(0, 169, 244, 0.55);
  background: rgba(0, 143, 211, 0.12);
}

.feature-grid.compact-grid {
  gap: 16px;
}

.feature-card,
.stat-card,
.founder-card {
  background:
    radial-gradient(circle at top left, rgba(0, 169, 244, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 30, 0.82), rgba(5, 8, 13, 0.78));
}

.feature-card {
  padding: 24px;
}

.feature-card p {
  margin-bottom: 0;
}

.founder-card-compact {
  display: block;
  max-width: 980px;
  padding: 30px;
}

.founder-card-compact .founder-content {
  max-width: 800px;
}

.founder-section {
  border-top: 1px solid var(--border);
}

.credibility-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.cta-section {
  padding-top: 76px;
  padding-bottom: 86px;
}

/* Mobile cleanup */

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .site-logo {
    max-width: 190px;
  }

  .site-nav {
    width: 100%;
    gap: 8px;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .hero-simple {
    padding-top: 82px;
    padding-bottom: 72px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    padding: 14px 5vw;
  }

  .site-logo {
    max-width: 170px;
  }

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

  .site-nav a {
    text-align: center;
    font-size: 0.82rem;
  }

  .site-nav .nav-button,
  .site-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .section,
  .section.compact-section {
    padding: 58px 5vw;
  }

  .hero-simple {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .hero-note {
    padding: 15px;
  }

  .feature-card,
  .stat-card,
  .founder-card-compact {
    padding: 20px;
  }
}

/* ================================
   Testimonials page
   ================================ */

.testimonials-hero {
  border-bottom: 1px solid var(--border);
}

.testimonials-section {
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(0, 169, 244, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 30, 0.86), rgba(5, 8, 13, 0.82));
  box-shadow: var(--shadow);
}

.testimonial-card-wide {
  grid-column: 1 / -1;
}

.testimonial-image-link {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #000;
}

.testimonial-image-link img {
  display: block;
  width: 100%;
  aspect-ratio: 460 / 215;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.testimonial-image-link:hover img {
  transform: scale(1.025);
  opacity: 0.9;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.testimonial-content blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.72;
}

.testimonial-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 24px;
}

.testimonial-meta strong {
  color: var(--text);
  font-size: 1.08rem;
}

.testimonial-meta span {
  color: var(--muted-dark);
  font-weight: 700;
}

.testimonial-meta a {
  width: fit-content;
  color: var(--accent-bright);
  font-weight: 900;
  text-decoration: none;
}

.testimonial-meta a:hover {
  color: var(--text);
}

.testimonial-card-wide {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.testimonial-card-wide .testimonial-image-link {
  border-right: 1px solid var(--border);
  border-bottom: 0;
}

.testimonial-card-wide .testimonial-image-link img {
  height: 100%;
  aspect-ratio: auto;
}

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

  .testimonial-card-wide {
    display: flex;
    grid-column: auto;
  }

  .testimonial-card-wide .testimonial-image-link {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .testimonial-card-wide .testimonial-image-link img {
    height: auto;
    aspect-ratio: 460 / 215;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    border-radius: 22px;
  }

  .testimonial-content {
    padding: 20px;
  }

  .testimonial-content blockquote {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

/* ================================
   Testimonial capsule cleanup
   ================================ */

@media (min-width: 981px) {
  .testimonial-image-link {
    padding: 14px;
    background:
      radial-gradient(circle at center, rgba(0, 169, 244, 0.10), transparent 44%),
      #000;
  }

  .testimonial-image-link img {
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  }
}

/* ================================
   Testimonials featured + carousel layout
   ================================ */

.featured-testimonials-section,
.testimonials-carousel-section {
  border-bottom: 1px solid var(--border);
}

.featured-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.featured-testimonial {
  height: 100%;
}

.featured-testimonial .testimonial-content blockquote {
  font-size: 0.98rem;
}

.testimonial-carousel-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.testimonial-carousel-heading h2 {
  margin-bottom: 0;
}

.testimonial-carousel-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.carousel-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 169, 244, 0.55);
  border-radius: 999px;
  background: rgba(0, 143, 211, 0.16);
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 143, 211, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 169, 244, 0.9);
  background: rgba(0, 143, 211, 0.28);
}

.testimonial-carousel {
  width: 100%;
}

.testimonial-carousel-viewport {
  overflow: hidden;
}

.testimonial-carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 260ms ease;
  will-change: transform;
}

.testimonial-carousel-card {
  flex: 0 0 calc((100% - 22px) / 2);
}

.carousel-status {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 981px) {
  .featured-testimonials-grid .testimonial-image-link,
  .testimonial-carousel-card .testimonial-image-link {
    padding: 12px;
  }

  .featured-testimonials-grid .testimonial-image-link img,
  .testimonial-carousel-card .testimonial-image-link img {
    max-height: 190px;
    object-fit: cover;
  }
}

@media (max-width: 1100px) {
  .featured-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .testimonial-carousel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-carousel-card {
    flex-basis: 100%;
  }

  .testimonial-carousel-controls {
    width: 100%;
  }

  .carousel-button {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .testimonial-carousel-track {
    gap: 16px;
  }

  .featured-testimonial .testimonial-content blockquote,
  .testimonial-carousel-card .testimonial-content blockquote {
    font-size: 0.96rem;
  }
}

/* ================================
   Testimonial image no-crop fix
   ================================ */

.testimonial-image-link img,
.featured-testimonials-grid .testimonial-image-link img,
.testimonial-carousel-card .testimonial-image-link img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 460 / 215;
  object-fit: contain;
  background: #000;
}
