:root {
  --font-main: "Inter", sans-serif;

  /* Colors */
  --bg-color: #fff;
  --text-color: #000;
  --text-color-hover: #555;
  --button-text-color: #fff;
  --button-bg-color: #000;
  --button-bg-color-hover: #333;

  --text-color-secondary: #6e6e73;

  /* Spacing and Radius */
  --spacing: 1.5rem;
  --radius: 32px;
  --transition: 0.3s ease;

  /* Font Weights */
  --fw-small: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Fluid Font Sizes */
  --fs-h1: clamp(2.5rem, 6vw, 3.5rem);
  --fs-h2: clamp(2rem, 5vw, 2.75rem);
  --fs-h3: clamp(1.5rem, 4vw, 2rem);
  --fs-h4: clamp(1.25rem, 3vw, 1.5rem);
  --fs-h5: clamp(1.1rem, 2.6vw, 1.25rem);
  --fs-body: clamp(1rem, 2.25vw, 1.125rem);
  --fs-small: clamp(0.875rem, 2vw, 1rem);
  --fs-xsmall: clamp(0.8rem, 1.6vw, 0.9rem);
  --fs-button: clamp(0.5rem, 0.5vw, 0.5rem);
  /* --fs-button: clamp(1rem, 2vw, 1.125rem); */

  --header-height: 57px;
  --logo-height: clamp(36px, 6vw, 41px);
  --logo-height-mobile: clamp(28px, 6vw, 36px);

  --section-spacing-sides: 2rem;

  --section-padding-block: clamp(6rem, 15vh, 12rem);
  --section-gap: clamp(4rem, 10vh, 8rem);
  --hero-min-height: 100vh;

  --content-max: 900px;
  --content-pad-inline: clamp(1rem, 4vw, 2rem);
  --content-pad-top: calc(var(--header-height) + 1.25rem);

  --muted: var(--text-color-secondary);
  --rule: color-mix(in srgb, var(--text-color) 15%, transparent);
  --code-bg: color-mix(in srgb, var(--text-color) 8%, var(--bg-color));
  --kbd-bg: color-mix(in srgb, var(--text-color) 10%, var(--bg-color));

  --h1-tight: 0.95;
  --h2-tight: 1.15;

  /* minimal, scoped additions */
  --surface: color-mix(in srgb, var(--bg-color) 90%, var(--text-color) 10%);
  --shadow-soft: 0 10px 30px
    color-mix(in srgb, var(--text-color) 12%, transparent);

  html {
    scroll-behavior: smooth;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

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

.hide {
  display: none !important;
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
html,
body {
  width: 100%;
  /* max-width: 100vw; */
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
}
@media not all and (min-resolution: 0.001dpcm) {
  @media {
    html,
    body {
      width: 100%;
      max-width: 100%;
    }
  }
}

body.vsc-initialized span {
  color: var(--text-color, #000) !important;
  background-color: transparent !important;
}

span {
  color: var(--text-color, #000);
}

.container,
.wrapper,
.main-content {
  width: 100%;
  overflow-x: hidden;
}

/* Typography Elements */
h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
}

p {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
}

small {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
  color: #666;
}

.button,
button {
  font-size: var(--fs-button);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* Header */

.site-header {
  /* background: var(--bg-color); */
  background: rgba(255, 255, 255, 0.75);
  /* light translucent */
  backdrop-filter: blur(10px);
  /* subtle blur effect behind */
  -webkit-backdrop-filter: blur(10px);

  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  /* Fixes top pixel jitter */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.header-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Updates for call button styling */
@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }
  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }

  .menu-toggle,
  .mobile-call-button {
    position: relative;
    z-index: 1002; /* above the absolutely-positioned logo */
  }

  /* .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-56%);
    z-index: 1;
  } */
  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* true center */
    margin: 0; /* kill any default margins */
    white-space: nowrap; /* keep it on one line */
    z-index: 1001; /* above the header bg */
    font-size: 0.95rem; /* keep your current size */
    font-weight: var(--fw-regular);
  }
}

/* Remove text-specific styles from .logo */
/* .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
} */
.logo {
  font-weight: var(--fw-regular);
  font-size: var(--fs-h4);
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  z-index: 1001;
}

/* Core logo image styling */
/* .logo-img {
  height: var(--logo-height);
  width: auto;
  display: none;
  transition: opacity 0.3s ease;
} */

/* Theme-specific visibility */
@media (prefers-color-scheme: light) {
  .logo-img.light-mode {
    display: inline;
  }
}
@media (prefers-color-scheme: dark) {
  .logo-img.dark-mode {
    display: inline;
  }
}

/* Mobile size override */
@media (max-width: 768px) {
  .logo-img {
    height: var(--logo-height-mobile);
  }
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background-color: transparent !important;
  z-index: 99;
}

.nav-links a {
  text-decoration: none;
  font-weight: var(--fw-small);
  font-size: var(--fs-small);
  color: var(--text-color);
  transition:
    color 0.3s ease,
    transform 0.1s ease;
}

.nav-links a:active {
  /* subtle press effect */
  transform: scale(0.98);
}

.pop:hover {
  /* Example: soften color on hover */
  color: var(--text-color-hover);
  transition: color 0.3s ease;
}

/* Button */
.call-button {
  background: var(--button-bg-color);
  color: var(--button-text-color) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: var(--fw-regular);
  font-size: var(--fs-button);
  text-decoration: none;
  display: inline-block;
  transition:
    background-color 0.3s ease,
    transform 0.1s ease;
}

.call-button:hover {
  background-color: var(--button-bg-color-hover);
}

.call-button:active {
  background-color: var(--button-bg-color-hover);
}

.call-button:focus {
  outline: 2px solid var(--text-color);
  outline-offset: 4px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* Bar Styles */
.bar {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 1px;
  left: 50%;
  transform-origin: center;
  /* transition: all 0.3s; */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Initial bar positions */
.bar-top {
  top: 12px;
  transform: translateX(-50%);
}

.bar-bottom {
  bottom: 12px;
  transform: translateX(-50%);
}

/* Open state - forming the X with spring animation */
.menu-toggle.open .bar-top {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.menu-toggle.open .bar-bottom {
  bottom: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

.slogan {
  padding: 0 1rem;
}

section {
  /* padding: var(--section-padding-block) var(--section-spacing-sides); */
  padding-block: var(--section-padding-block);
  scroll-margin-top: var(--header-height);
}

/* Remove top padding for the first section only */
section:first-of-type {
  padding-top: 0;
}

.space-y-section > section + section {
  margin-top: var(--section-gap);
}

.top-section {
  margin-top: calc(
    var(--section-gap) + var(--section-padding-block)
  ) !important;
}

.bottom-section {
  margin-bottom: var(--section-gap) !important;
}

.hero-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: var(--hero-min-height);
  /* outline: 1px red dashed; */
}
.hero-section,
.hero-area {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  overflow: hidden;
}

.hero-area {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh;  <-- remove */
  min-height: var(--hero-min-height); /* 100vh minimum, can grow if needed */
  padding-block: clamp(4rem, 10vh, 8rem);
}

/* .hero-heading {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-inline: auto;

  background-image:
    linear-gradient(90deg, #ffb385, #ff8fab, #e6a8ff, #ffb385),
    url('/assets/images/ps-noise25.png');
  background-size:
    300% auto,
    300px 300px;
  background-repeat: no-repeat, repeat;
  background-position: 0% center, center;
  background-blend-mode: overlay;

  background-color: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shine 8s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
} */

@keyframes shine {
  0% {
    background-position:
      0% center,
      center;
  }
  100% {
    background-position:
      100% center,
      center;
  }
}

.hero-overlay {
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1400px, 110%); /* bigger background */
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.hero-text-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem; /* avoid text touching edges */
}

/* new hero section */
/* Hero area already has base structure */
.hero-heading {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheading {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: #555;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 0.85rem 1.75rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background-color var(--transition),
    color var(--transition);
}

/* Primary button (uses your defined button vars) */
.hero-btn.primary {
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
}

.hero-btn.primary:hover {
  background-color: var(--button-bg-color-hover);
}

/* Secondary button (inverted style) */
.hero-btn.secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.hero-btn.secondary:hover {
  background-color: var(--text-color-hover);
  color: var(--bg-color);
  border-color: var(--text-color-hover);
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subheading {
    font-size: var(--fs-small);
  }
}

.human-touch-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding-block) var(--section-spacing-sides);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  /* background: var(--bg-color); */
}

.human-touch-bg {
  position: absolute;
  left: 50%;
  top: 85%;
  width: 40%;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  /* opacity: 0.40; */
  pointer-events: none;
  /* filter: blur(0.5px) drop-shadow(0 0 30px rgba(0,0,0,0.07)); */
  z-index: 1;
  transition: opacity 0.3s;
}

.human-touch-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.human-touch-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffb385, #e6a8ff, #50b1ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.human-touch-description {
  font-size: var(--fs-h5);
  font-weight: var(--fw-regular);
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.human-touch-description.secondary {
  color: var(--text-color-secondary);
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .human-touch-section {
    padding: var(--section-padding-block) 1rem;
    min-height: 45vh;
  }
  .human-touch-title {
    font-size: clamp(1.3rem, 6vw, 2.25rem);
  }
  .human-touch-bg {
    width: 98vw;
    max-width: 98vw;
    left: 50%;
    top: 57%;
    opacity: 0.25;
  }
}

.readiness-section {
  overflow-x: hidden;
  position: relative; /* enable positioning for bg image */
  padding: var(--section-padding-block) var(--section-spacing-sides);
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  z-index: 0;
}

/* Glassy background shape */
.readiness-bg-shape {
  position: absolute;
  left: 55%; /* visually centered for accent */
  top: 50%;
  width: 720px; /* adjust as needed */
  /* max-width: 96vw; */
  min-width: 350px;
  transform: scale(1.5);
  opacity: 0.43; /* subtle accent */
  pointer-events: none; /* ignore interactions */
  z-index: 1;
  /* filter: blur(0.5px); */
  transition: opacity 0.3s;
}

/* Content always above the bg image */
.readiness-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.readiness-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.readiness-description {
  font-size: var(--fs-h5);
  font-weight: var(--fw-regular);
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.readiness-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: var(--text-color);
  min-height: 2.25rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #38e4ae 30%, #50b1ff 100%);
  display: inline-block;
  margin-right: 0.75rem;
}

@media (max-width: 900px) {
  .readiness-bg-shape {
    width: 520px;
    left: 54%;
    top: 56%;
    opacity: 0.36;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .readiness-section {
    padding: var(--section-padding-block) 1rem;
  }
  .readiness-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .readiness-content {
    max-width: 98vw;
    text-align: left;
  }
  .readiness-features {
    flex-direction: column;
    gap: 0.5rem;
  }
  .readiness-bg-shape {
    width: 340px;
    left: 52%;
    top: 59%;
    opacity: 0.22;
  }
}

@media (max-width: 600px) {
  .readiness-bg-shape {
    width: 220px;
    left: 50%;
    top: 60%;
    opacity: 0.14;
  }
}

.services-section {
  /* outline: 1px blue dashed; */
  text-align: center;
}

.services-section h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-top: 0 !important;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  max-width: 360px;
  background: var(--bg-color);
  text-align: left;
}

.service-card img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-card h3 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin: 1rem 0 0.25rem;
}

.service-card .price {
  font-weight: var(--fw-medium);
  margin-bottom: 0.75rem;
}

.service-card .description {
  font-size: var(--fs-small);
  line-height: 1.5;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /* padding: 0rem 2rem; */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  width: 500px;
}

.about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-content h2 span {
  font-weight: 400;
  display: block;
}

.about-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-color, #333);
  margin-bottom: 2rem;
}

.learn-more-button {
  display: inline-block;
  background: var(--text-color);
  color: var(--bg-color);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.learn-more-button:hover {
  background-color: #333;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-color);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  /* Reduced from 1rem */
}

.contact-form label {
  font-weight: var(--fw-medium);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form label span {
  font-weight: var(--fw-regular);
  color: #888;
  font-size: var(--fs-small);
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--text-color);
  border-radius: var(--radius);
  font-size: var(--fs-body);
  outline: none;
}

.contact-form textarea {
  border-radius: calc(var(--radius) * 0.75);
  min-height: 150px;
  resize: vertical;
}

.contact-form .full-width {
  grid-column: span 2;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-form-row .half-width {
  flex: 1 1 48%;
  /* flex-grow, flex-shrink, flex-basis */
  min-width: 140px;
}

.name-fields {
  display: flex;
  gap: 1rem;
}

.name-fields input {
  flex: 1;
  /* Equal width */
}

.contact-form button {
  background: var(--button-bg-color);
  color: var(--button-text-color);
  /* padding: 1rem 2.2rem; Increased padding */
  border-radius: 50px;
  font-size: var(--fs-body);
  /* Larger than var(--fs-button) */
  letter-spacing: 0.5px;
  font-weight: var(--fw-medium);
  border: none;
  cursor: pointer;
  align-self: flex-start;

  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.contact-form button:hover {
  background-color: var(--button-bg-color-hover);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  background-color: var(--bg-color, #fff);
  color: var(--text-color, #000);
  border-top: 1px solid #eee;
  font-size: var(--fs-body);
}

.footer-left {
  flex: 1;
  min-width: 200px;
}

.footer-left h2 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
}

.footer-left .credits {
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
}

.footer-left .credits a {
  color: inherit;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 4rem;
  flex: 2;
  justify-content: flex-end;
  min-width: 300px;
}

.footer-column h3 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.5rem;
}

.footer-column p {
  margin: 0;
  line-height: 1.5;
  font-size: var(--fs-small);
}

.phone {
  text-decoration: none;
  color: var(--text-color);
  cursor: pointer;
}

.phone:hover {
  color: var(--text-color-hover);
}
.footer-column p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--text-color-hover);
}
.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.social-icons a:link,
.social-icons a:visited,
.social-icons a:focus,
.social-icons a:active {
  color: var(--text-color); /* Or your preferred color */
  outline: none;
  box-shadow: none;
}

/* notes */
.footer-bottom {
  width: 100%;
  /* border-top: 1px solid #eee;
  margin-top: 2rem; */
  padding-top: 3rem;
  text-align: center;
}

.footer-text {
  font-size: var(--fs-xsmall);
  color: var(--text-color);
  margin: 0;
  line-height: 1.8;
}

.footer-text a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --section-padding-block: clamp(4rem, 12vh, 8rem);
    --section-gap: clamp(2rem, 8vh, 4rem);
  }

  /* #services {
        scroll-margin-top: calc(var(--header-height) + (1 * var(--section-gap) / 5));
    } */

  /* #about {
        scroll-margin-top: calc(var(--header-height) + (1 * var(--section-gap) / 5));
    }

    #contact {
        scroll-margin-top: calc(var(--header-height) - (0 * var(--section-gap) / 5));
    } */

  body.menu-open .site-header {
    background: var(--bg-color) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    height: 100vh;

    /* background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); */
    background: var(--bg-color) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0;
    /* remove padding that could offset */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-links a {
    font-size: var(--fs-h2);
    margin: 0.75rem 0;
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    /* padding: 0rem 1rem;
        padding-top: 8rem; */
    gap: 6rem;
    /* tighter space between image and content */
    flex-direction: column;
    align-items: center;
  }

  .site-footer {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .footer-right {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding-block: clamp(3rem, 10vh, 6rem);
    --section-gap: clamp(1.5rem, 6vh, 3rem);
  }

  .contact-section {
    gap: 0rem;
  }

  .contact-form-row {
    flex-direction: column;
  }

  .contact-form-row .half-width {
    flex: 1 1 100%;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #000;
    --text-color: #fff;
    --text-color-hover: #aaa;
    --button-text-color: #000;
    --button-bg-color: #fff;
    --button-bg-color-hover: #f0f0f0;
  }

  .site-header {
    background: rgba(0, 0, 0, 0.65);
  }
}

/* ——— Privacy page wrapper ——— */
.policy {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--content-pad-inline);
  padding-top: var(--content-pad-top);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

/* Meta line */
.policy-meta {
  color: var(--muted);
  margin: 0.5rem 0 2rem;
  font-size: var(--fs-small);
}

/* Headings */
.policy h1 {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: var(--h1-tight);
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  font-weight: var(--fw-bold);
}
.policy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: var(--h2-tight);
  margin: 2.25rem 0 0.75rem;
  font-weight: var(--fw-semibold);
}
.policy h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.25rem);
  margin: 1.75rem 0 0.5rem;
  font-weight: var(--fw-semibold);
}

/* Copy */
.policy p {
  margin: 0 0 1rem;
  max-width: 75ch;
}

/* Lists */
.policy ul,
.policy ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
}
.policy li {
  margin: 0.35rem 0;
}
.policy li::marker {
  color: var(--text-color-hover);
}

/* Rules & details */
.policy-rule {
  height: 1px;
  border: 0;
  background: var(--rule);
  margin: 2rem 0;
}
.policy-details {
  border: 1px solid var(--rule);
  border-radius: calc(var(--radius) / 2);
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, var(--bg-color) 90%, var(--text-color) 10%);
}
.policy-details summary {
  cursor: pointer;
  font-weight: var(--fw-medium);
  list-style: none;
}
.policy-details summary::-webkit-details-marker {
  display: none;
}

/* Links */
.policy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.policy a:hover {
  color: var(--text-color-hover);
}

/* Code / kbd */
.policy code {
  background: var(--code-bg);
  padding: 0.15rem 0.35rem;
  border-radius: 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}
.policy kbd {
  background: var(--kbd-bg);
  border: 1px solid var(--rule);
  border-bottom-width: 2px;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

/* Print */
@media print {
  .policy {
    padding: 0;
    color: #000;
  }
  .site-header,
  .site-footer {
    display: none !important;
  }
}

/* ——— Products list ——— */
.products-list {
  padding: var(--section-padding-block) var(--section-spacing-sides);
}

.product-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-row + .product-row {
  margin-top: var(--section-gap);
}

/* stack on mobile */
@media (max-width: 980px) {
  .product-row {
    grid-template-columns: 1fr;
  }
}

/* Copy side */
.product-heading {
  margin-bottom: 0.75rem;
}

.product-title {
  font-size: var(--fs-h2);
  line-height: var(--h2-tight);
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4ch;
  margin-left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: var(--fs-xsmall);
  font-weight: var(--fw-medium);
  border: 1px solid var(--rule);
  vertical-align: middle;
}
.product-badge.live {
  background: color-mix(in srgb, var(--text-color) 8%, transparent);
}
.product-badge.soon {
  background: color-mix(in srgb, var(--text-color) 4%, transparent);
}

.product-tagline {
  font-size: var(--fs-h5);
  color: var(--text-color-secondary);
  margin: 0.25rem 0 1rem;
}

.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.product-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0;
  font-size: var(--fs-body);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Visual side */
.product-visual {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.product-hero-img {
  width: 100%;
  border-radius: calc(var(--radius) * 0.75);
  display: block;
  box-shadow: var(--shadow-soft);
}

.product-hero-fallback {
  aspect-ratio: 16/10;
  border-radius: calc(var(--radius) * 0.75);
  background: radial-gradient(
    1200px 600px at 60% 30%,
    color-mix(in srgb, #50b1ff 18%, transparent) 0%,
    color-mix(in srgb, #e6a8ff 22%, transparent) 40%,
    transparent 70%
  );
  box-shadow: var(--shadow-soft);
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.screenshot-strip img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) / 2);
  border: 1px solid var(--rule);
}

/* Closing */
.products-closing {
  padding: var(--section-padding-block) var(--section-spacing-sides);
}
.closing-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-wrap h3 {
  font-size: var(--fs-h3);
  margin: 0 0 0.25rem;
}
.closing-copy {
  color: var(--text-color-secondary);
  margin: 0 0 1rem;
}

/* Services bullets (reuses your dot + typography) */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0;
  font-size: var(--fs-small);
}

/* Keep values section simple and non-scrollable */
.about-values {
  overflow: visible;
}

/* Native, clean bullets */
.values-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}
.values-list li {
  margin: 0.35rem 0;
}

/* Make .about-content center-aligned like hero text */
.about-content.centered {
  max-width: 800px; /* same width as story section */
  margin: 0 auto;
  text-align: center;
}

/* Center list but keep bullets aligned nicely */
.centered .values-list {
  display: inline-block;
  text-align: left;
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}
.centered .values-list li {
  margin: 0.35rem 0;
}
