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

:root {
  /* Modern Color Palette */
  --bg: #0a0a0f;
  --bg-alt: #0f0f1a;
  --card: rgba(20, 20, 35, 0.8);
  --surface: rgba(25, 25, 40, 0.6);
  --text: #ffffff;
  
  /* Primary Gradient Colors - Warm Orange/Amber */
  --accent-start: #f57c00;
  --accent: #ff9800;
  --accent-end: #ffb74d;
  --accent-hover: #ffcc80;
  --accent-light: rgba(245, 124, 0, 0.15);
  --accent-glow: rgba(245, 124, 0, 0.4);
  
  /* Secondary Gradient Colors - Terracotta/Amber */
  --secondary-start: #e65100;
  --secondary: #ff6f00;
  --secondary-end: #ff8f00;
  --secondary-hover: #ffb300;
  
  /* Accent Warm Orange */
  --gold: #ff6f00;
  --gold-light: #ff8f00;
  --gold-glow: rgba(255, 111, 0, 0.3);
  
  /* Panel Colors */
  --panel: rgba(30, 30, 50, 0.6);
  --panel-hover: rgba(40, 40, 60, 0.8);
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* UI Colors */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(245, 124, 0, 0.3);
  --muted: rgba(255, 255, 255, 0.6);
  --muted-light: rgba(255, 255, 255, 0.4);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 8px 24px rgba(245, 124, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(245, 124, 0, 0.3);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Scroll Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

/* Animation base states */
.animate-on-scroll {
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-duration: 0.8s;
  will-change: opacity, transform, filter;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-enabled .animate-on-scroll:not(.animated) {
  opacity: 0;
}

.js-enabled .slide-in-up:not(.animated) {
  transform: translateY(30px);
}

.js-enabled .slide-in-down:not(.animated) {
  transform: translateY(-30px);
}

.js-enabled .slide-in-left:not(.animated) {
  transform: translateX(-30px);
}

.js-enabled .slide-in-right:not(.animated) {
  transform: translateX(30px);
}

.js-enabled .blur-in:not(.animated) {
  filter: blur(12px);
  transform: scale(0.95);
}

.js-enabled .fade-in:not(.animated) {
  transform: scale(0.98);
}

.animate-on-scroll.animated {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.no-js .animate-on-scroll,
html:not(.js-enabled) .animate-on-scroll {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.fade-in {
  animation-name: fadeIn;
}

.slide-in-up {
  animation-name: slideInUp;
}

.slide-in-down {
  animation-name: slideInDown;
}

.slide-in-left {
  animation-name: slideInLeft;
}

.slide-in-right {
  animation-name: slideInRight;
}

.blur-in {
  animation-name: blurIn;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-500 {
  animation-delay: 0.5s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 183, 77, 0.1);
  border-bottom: 1px solid rgba(255, 183, 77, 0.2);
  box-shadow: 0 4px 24px rgba(255, 183, 77, 0.15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text);
  display: block;
  filter: drop-shadow(0 0 8px rgba(245, 124, 0, 0.4));
}

.logo-text {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.10em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-end) 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  transition: var(--transition);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}

.nav-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border-hover);
  color: var(--accent);
  text-decoration: none;
  background: var(--accent-light);
  transition: var(--transition);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.nav-cta:hover {
  background: rgba(245, 124, 0, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: var(--accent-hover);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  width: 100%;
  background-image: url('screen-capture.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 0rem;
  margin-bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: white;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-headline {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  color: white;
}

.hero-subheadline {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  margin: 12rem auto 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  max-width: 700px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-social-proof {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: inherit;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent) 50%, var(--accent-end) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.modern-btn:hover::before {
  left: 100%;
}

.modern-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.modern-btn svg {
  transition: transform 0.3s ease;
}

.modern-btn:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

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

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* Hero card */
.hero-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hero-card:hover .hero-card-glow {
  opacity: 1;
}

.hero-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.hero-card-body {
  padding: 0;
  overflow: hidden;
}


.hero-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 2rem;
  background: var(--bg);
  border-radius: 24px;
  color: var(--muted);
  text-align: center;
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(180deg, rgba(245, 124, 0, 0.05) 0%, rgba(10, 10, 15, 0.95) 20%, rgba(10, 10, 15, 1) 100%);
}

.section:first-of-type {
  padding-top: 6rem;
}

.section.alt {
  background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(245, 124, 0, 0.05) 20%, rgba(10, 10, 15, 0.95) 100%);
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(245, 124, 0, 0.2);
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-start), transparent);
  border-radius: 2px;
}

.section-subtitle {
  margin: 0 0 4rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.08) 0%, rgba(20, 20, 35, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(245, 124, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 124, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 280px;
  align-items: flex-start;
}

.feature:nth-child(1) {
  grid-column: span 1;
}

.feature:nth-child(2) {
  grid-column: span 1;
}

.feature:nth-child(3) {
  grid-column: span 1;
}

.feature:nth-child(4) {
  grid-column: span 1;
}

.feature:nth-child(5) {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .feature {
    grid-column: span 1 !important;
  }
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.feature::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature:hover::after {
  opacity: 1;
}

.feature:hover {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.12) 0%, rgba(25, 25, 40, 0.9) 100%);
  border-color: rgba(245, 124, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(245, 124, 0, 0.25), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: grayscale(0.2);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.15) 0%, rgba(255, 183, 77, 0.1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(245, 124, 0, 0.2);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0);
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.25) 0%, rgba(255, 183, 77, 0.15) 100%);
  border-color: rgba(245, 124, 0, 0.4);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.2);
}

.feature h3 {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.step {
  padding: 3rem;
  border-radius: 20px;
  background: rgba(20, 20, 35, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition);
  filter: grayscale(0.2);
}

.step:hover {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.12) 0%, rgba(25, 25, 40, 0.9) 100%);
  border-color: rgba(245, 124, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.step:hover .step-icon {
  transform: scale(1.15);
  filter: grayscale(0);
}

.step h3 {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Security */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.security-card {
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.08) 0%, rgba(20, 20, 35, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(245, 124, 0, 0.15);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 124, 0, 0.1);
  position: relative;
}

.security-card:hover {
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.12) 0%, rgba(25, 25, 40, 0.9) 100%);
  border-color: rgba(245, 124, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.security-card h3 {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.01em;
}

.security-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.privacy-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.privacy-link:hover {
  color: var(--accent-hover);
  border-bottom-color: var(--accent-hover);
}

/* Hero Screenshot */
.hero-screenshot {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.screenshot-container {
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 124, 0, 0.1);
  background: rgba(20, 20, 35, 0.8);
}

.product-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.screenshot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.05) 0%, rgba(20, 20, 35, 0.8) 100%);
  border-radius: 24px;
  border: 2px dashed rgba(245, 124, 0, 0.3);
  color: rgba(255, 255, 255, 0.5);
  gap: 1rem;
}

.screenshot-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}

.screenshot-placeholder p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* How It Works Visual */
.how-it-works-visual {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.process-visual {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: visible;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.05) 0%, rgba(20, 20, 35, 0.6) 100%);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 124, 0, 0.1);
}

.process-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 300px;
  min-width: 100%;
}

.process-step {
  transition: none;
}

.process-step rect {
  transition: fill 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
}

.process-step:hover rect {
  fill: rgba(245, 124, 0, 0.15);
  stroke: rgba(245, 124, 0, 0.5);
  filter: drop-shadow(0 4px 12px rgba(245, 124, 0, 0.3));
}

.process-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.process-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Fallback placeholder if no image is provided */
.visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
  max-width: 800px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.05) 0%, rgba(20, 20, 35, 0.6) 100%);
  border-radius: 20px;
  border: 2px dashed rgba(245, 124, 0, 0.2);
  color: rgba(255, 255, 255, 0.4);
  gap: 1rem;
}

.visual-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.visual-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.08) 0%, rgba(20, 20, 35, 0.85) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(245, 124, 0, 0.15);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 124, 0, 0.3);
  box-shadow: 0 8px 30px rgba(245, 124, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section .section-subtitle {
  margin: 0 auto 4rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-buttons .modern-btn {
  font-size: 1.15rem;
  padding: 1.25rem 2.5rem;
}

/* Download */
.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-primary.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-md), 0 0 30px rgba(245, 124, 0, 0.4);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-primary.large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 124, 0, 0.5);
  animation: gradient-shift 2s ease infinite;
}

/* Login/Signin Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, rgba(20, 20, 35, 0.98) 0%, rgba(10, 10, 15, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  margin: auto;
  padding: 0;
  border-radius: 24px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 124, 0, 0.2);
  position: relative;
  animation: slideDown 0.3s ease;
  border: 1px solid rgba(245, 124, 0, 0.2);
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}

.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(245, 124, 0, 0.1);
}

.modal-header h2 {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.modal-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(245, 124, 0, 0.1);
  padding: 0 2.5rem;
}

.tab-button {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  font-family: inherit;
  position: relative;
}

.tab-button:hover {
  color: rgba(255, 255, 255, 0.9);
}

.tab-button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.modal-body {
  padding: 2.5rem;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 35, 0.6);
  color: white;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(20, 20, 35, 0.8);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-link:hover {
  text-decoration: underline;
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(245, 124, 0, 0.2);
  padding: 3rem 2rem 2rem;
  background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(245, 124, 0, 0.03) 100%);
  position: relative;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.95rem;
}

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

.footer-left .logo-text {
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-fade {
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  font-family: "Playfair Display", "Cinzel", Georgia, serif;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: var(--transition);
  font-weight: 400;
}

.footer-fade:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer-right {
  display: flex;
  gap: 2.5rem;
}

.footer-right a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-right a:hover,
.footer-right a:focus-visible {
  color: var(--text);
}

.footer-copyright {
  max-width: 1400px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 124, 0, 0.1);
  text-align: center;
}

.footer-copyright p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
    padding: 6rem 1.5rem;
  }
  
  .hero-content {
    max-width: 100%;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
  .security-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-screenshot {
    padding: 3rem 1.5rem;
  }
  
  .screenshot-wrapper {
    border-radius: 16px;
  }
  
  .product-screenshot {
    border-radius: 16px;
  }
  
  .screenshot-placeholder {
    min-height: 400px;
  }
  
  .how-it-works-visual {
    margin-top: 3rem;
  }
  
  .process-visual {
    max-width: 100%;
    padding: 1.5rem;
  }
  
  .process-visual {
    padding: 1rem;
  }
  
  .process-svg {
    max-height: 250px;
  }
  
  .visual-placeholder {
    min-height: 250px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    gap: 0.75rem;
  }
  
  .nav-login {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .modal-content {
    width: 95%;
    max-width: 100%;
    margin: 1rem;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    background-attachment: scroll;
    padding: 5rem 1rem;
    min-height: 80vh;
  }
  
  .hero-content {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subheadline {
    font-size: 1rem;
  }
  
  .hero-social-proof {
    font-size: 0.85rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .nav-inner {
    padding: 1rem 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .modern-btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
