:root {
  --bg: #f7f7f5;
  --background: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.08);
  --accent: #c9a24d;
  --accent-glow: rgba(201, 162, 77, 0.4);
  --dark: #0a0a0a;
  --dark-lighter: #141414;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background: var(--dark);
  color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  cursor: default;
}

/* Custom cursor */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background 0.15s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(201, 162, 77, 0.2);
}

.custom-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--accent);
}

/* Animated gradient background */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% -10%,
      rgba(201, 162, 77, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 100%,
      rgba(201, 162, 77, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Noise texture overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  opacity: 0;
  animation: fadeDown 0.8s ease forwards;
  animation-delay: 0.2s;
  flex-shrink: 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--bg);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

.launch-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(201, 162, 77, 0.1);
  border: 1px solid rgba(201, 162, 77, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
}

.launch-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* Main content */
main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 1rem 0;
  min-height: 0;
}

.content-left {
  max-width: 520px;
}

.headline {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: var(--bg);
}

.headline-line {
  display: block;
  overflow: hidden;
}

.headline-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.headline-line:nth-child(1) span {
  animation-delay: 0.4s;
}
.headline-line:nth-child(2) span {
  animation-delay: 0.5s;
}
.headline-line:nth-child(3) span {
  animation-delay: 0.6s;
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.tagline {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

/* Email form */
.notify-section {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.1s;
}

.notify-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}

.input-wrapper {
  flex: 1;
  position: relative;
}

.notify-input {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(247, 247, 245, 0.12);
  border-radius: 8px;
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.notify-input::placeholder {
  color: var(--muted);
}

.notify-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(201, 162, 77, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.notify-input.invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.notify-input.valid {
  border-color: var(--accent);
  background: rgba(201, 162, 77, 0.05);
}

.validation-message {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font-size: 0.6875rem;
  color: #e74c3c;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.2s ease;
}

.validation-message.show {
  opacity: 1;
  transform: translateY(0);
}

.notify-button {
  padding: 1.125rem 2rem;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.notify-button:hover {
  background: #d4af5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.3);
}

.notify-button:active {
  transform: translateY(0);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

.success-message {
  display: none;
  padding: 1.25rem;
  background: rgba(201, 162, 77, 0.1);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.9375rem;
}

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

.error-message {
  display: none;
  padding: 1rem 0;
  color: #e74c3c;
  font-size: 0.875rem;
}

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

.notify-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Right side - Visual */
.content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.8s;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

/* Animated rings */
.ring {
  position: absolute;
  border: 1px solid rgba(201, 162, 77, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 75%;
  height: 75%;
  animation: ringPulse 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.ring-3 {
  width: 50%;
  height: 50%;
  animation: ringPulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

/* Center logo mark */
.center-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, #d4af5f 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 60px rgba(201, 162, 77, 0.3),
    0 0 80px rgba(201, 162, 77, 0.2);
  animation: float 6s ease-in-out infinite;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  cursor: pointer;
}

.center-mark:hover {
  animation-play-state: paused;
  transform: translate(-50%, -50%) scale(1.08) rotate(5deg);
  box-shadow:
    0 30px 80px rgba(201, 162, 77, 0.4),
    0 0 100px rgba(201, 162, 77, 0.3);
}

.center-mark:active {
  transform: translate(-50%, -50%) scale(1.02) rotate(0deg);
}

.center-mark span {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.5rem;
  color: var(--dark);
  font-weight: 600;
}

/* Orbiting service tags */
.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  animation: orbit 90s linear infinite;
}

.orbit-container:hover {
  animation-play-state: paused;
}

.service-tag {
  position: absolute;
  background: var(--dark-lighter);
  border: 1px solid rgba(247, 247, 245, 0.08);
  padding: 0.625rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--bg);
  white-space: nowrap;
  opacity: 0;
  animation: tagFadeIn 0.6s ease forwards;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: default;
}

.service-tag:hover {
  background: rgba(201, 162, 77, 0.15);
  border-color: rgba(201, 162, 77, 0.3);
}

/* Position 4 tags equally spaced (90° apart) on a circle */
.service-tag:nth-child(1) {
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0);
  animation-delay: 1.2s;
}
.service-tag:nth-child(2) {
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  animation-delay: 1.4s;
}
.service-tag:nth-child(3) {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
  animation-delay: 1.6s;
}
.service-tag:nth-child(4) {
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  animation-delay: 1.8s;
}

.service-tag .tag-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Social proof section */
.social-proof {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 247, 245, 0.06);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.4s;
}

.proof-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.proof-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.proof-number {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  color: var(--bg);
}

.proof-text {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Testimonial */
.testimonial {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(247, 247, 245, 0.06);
  border-radius: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.6s;
}

.testimonial-quote {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--bg);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.testimonial-quote::before {
  content: '"';
  color: var(--accent);
}

.testimonial-quote::after {
  content: '"';
  color: var(--accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bg);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bg);
}

.testimonial-role {
  font-size: 0.6875rem;
  color: var(--muted);
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(247, 247, 245, 0.06);
  margin-top: 2rem;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.6s;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-text {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.founder-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.founder-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #d4af5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes orbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tagFadeIn {
  from {
    opacity: 0;
    scale: 0.8;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

/* =========================
   RESPONSIVE - LARGE SCREENS
   ========================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .headline {
    font-size: 5rem;
  }

  .visual-container {
    max-width: 480px;
  }

  .center-mark {
    width: 120px;
    height: 120px;
    border-radius: 28px;
  }

  .center-mark span {
    font-size: 3rem;
    font-weight: 600;
  }
}

/* =========================
   RESPONSIVE - TABLET (max-width: 1024px)
   ========================= */
@media (max-width: 1024px) {
  .container {
    padding: 1.75rem 2rem;
  }

  main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-left {
    max-width: 100%;
    text-align: center;
  }

  .headline {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }

  .tagline {
    max-width: 500px;
    margin: 0 auto;
  }

  .notify-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .notify-form {
    max-width: 480px;
    width: 100%;
  }

  .form-note {
    text-align: center;
  }

  .content-right {
    order: -1;
  }

  .visual-container {
    max-width: 320px;
  }

  .center-mark {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .center-mark span {
    font-size: 2rem;
    font-weight: 600;
  }

  .service-tag {
    font-size: 0.6875rem;
    padding: 0.5rem 0.875rem;
  }

  .social-proof {
    text-align: center;
  }

  .proof-items {
    justify-content: center;
  }

  .testimonial {
    text-align: center;
  }

  .testimonial-author {
    justify-content: center;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

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

/* =========================
   RESPONSIVE - MOBILE (max-width: 768px)
   ========================= */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .logo {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .launch-badge {
    font-size: 0.625rem;
    padding: 0.4375rem 0.875rem;
  }

  main {
    padding: 1rem 0;
    gap: 2.5rem;
  }

  .content-left {
    text-align: center;
  }

  .headline {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: 1.25rem;
  }

  .tagline {
    font-size: 0.9375rem;
    margin: 0 auto;
    max-width: 400px;
  }

  .notify-section {
    align-items: center;
    margin-top: 2rem;
  }

  .notify-form {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 360px;
  }

  .notify-input {
    font-size: 1rem;
    padding: 1.125rem 1.25rem;
    text-align: center;
  }

  .notify-button {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
  }

  .form-note {
    text-align: center;
  }

  .visual-container {
    max-width: 260px;
  }

  .center-mark {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .center-mark span {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .orbit-container {
    display: none;
  }

  .social-proof {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }

  .proof-items {
    justify-content: center;
    gap: 1.5rem;
  }

  .proof-number {
    font-size: 1.5rem;
  }

  footer {
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .founder-note {
    display: none;
  }

  .testimonial {
    margin-top: 2rem;
    padding: 1.25rem;
    text-align: center;
  }

  .testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .testimonial-author {
    justify-content: center;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }

  .validation-message {
    bottom: -1.25rem;
    font-size: 0.625rem;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .validation-message.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================= */
@media (max-width: 480px) {
  .container {
    padding: 1.25rem;
    min-height: 100dvh;
  }

  .headline {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
  }

  .tagline {
    font-size: 0.875rem;
  }

  .notify-form {
    max-width: 100%;
  }

  .notify-input {
    padding: 1rem 1rem;
  }

  .notify-button {
    padding: 1rem 1.25rem;
  }

  .visual-container {
    max-width: 200px;
  }

  .center-mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .center-mark span {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .ring {
    border-color: rgba(201, 162, 77, 0.1);
  }

  .social-proof {
    margin-top: 2rem;
  }

  .proof-items {
    gap: 1.25rem;
  }

  .proof-number {
    font-size: 1.25rem;
  }

  .proof-text {
    font-size: 0.6875rem;
  }

  .testimonial {
    margin-top: 1.5rem;
    padding: 1rem;
  }

  .testimonial-quote {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .testimonial-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .testimonial-name {
    font-size: 0.75rem;
  }

  .testimonial-role {
    font-size: 0.625rem;
  }
}

/* =========================
   RESPONSIVE - LANDSCAPE PHONES
   ========================= */
@media (max-height: 600px) and (orientation: landscape) {
  .container {
    min-height: auto;
    padding: 1rem 2rem;
  }

  main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }

  .content-left {
    text-align: left;
  }

  .headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .tagline {
    font-size: 0.8125rem;
    margin: 0;
  }

  .notify-section {
    align-items: flex-start;
    margin-top: 1.25rem;
  }

  .notify-form {
    flex-direction: row;
  }

  .notify-button {
    width: auto;
  }

  .content-right {
    order: 0;
  }

  .visual-container {
    max-width: 180px;
  }

  .social-proof {
    display: none;
  }

  .testimonial {
    display: none;
  }

  footer {
    flex-direction: row;
    padding-top: 1rem;
  }
}

/* =========================
   TOUCH DEVICE OPTIMIZATIONS
   ========================= */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }

  .notify-button:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.3);
  }

  .notify-button:active {
    background: #d4af5f;
    transform: scale(0.98);
  }

  .footer-links a:active {
    color: var(--accent);
  }

  .center-mark:hover {
    animation-play-state: running;
    transform: translate(-50%, -50%);
    box-shadow:
      0 20px 60px rgba(201, 162, 77, 0.3),
      0 0 80px rgba(201, 162, 77, 0.2);
  }

  .center-mark:active {
    transform: translate(-50%, -50%) scale(0.95);
  }
}

/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .headline-line span,
  header,
  .tagline,
  .notify-section,
  .content-right,
  .social-proof,
  .testimonial,
  footer,
  .service-tag {
    opacity: 1;
    transform: none;
  }

  .orbit-container {
    animation: none;
  }

  .custom-cursor {
    display: none;
  }
}

/* =========================
   SAFE AREA INSETS
   ========================= */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}
