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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
  color: #111111;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111111;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.35s ease-out;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 67, 54, 0.3);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:active {
  transform: translateY(-2px);
}
.btn-primary-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn-primary-large {
  padding: 1.125rem 2.75rem;
  font-size: 1.125rem;
}
.btn-primary.btn-white {
  color: white;
}

.btn-secondary {
  background: white;
  color: rgb(255, 67, 54);
  border: 2px solid rgb(255, 67, 54);
  padding: 0.875rem 2rem;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease-out;
  text-align: center;
}
.btn-secondary:hover {
  background: rgba(255, 67, 54, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 67, 54, 0.15);
  border-color: rgb(255, 67, 54);
}
.btn-secondary:active {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #111111;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.35s ease-out;
}
.btn-outline:hover {
  border-color: rgb(255, 67, 54);
  color: rgb(255, 67, 54);
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.05);
}

.nav {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.99);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease-out;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.25s ease-out;
}
.nav .logo-link:hover .logo-text {
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav .logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.nav .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  transition: all 0.25s ease-out;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: all 0.25s ease-out;
}
.nav-links a:hover:not(:last-child) {
  color: rgb(255, 67, 54);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #111111;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}

.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #fff3e0 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 67, 54, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  animation: slideInUp 0.8s ease-out;
}
.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideInUp 0.8s ease-out 0.1s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.trust-badge {
  display: flex;
  gap: 2rem;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInUp 0.8s ease-out 0.3s both;
}
@media (max-width: 768px) {
  .trust-badge {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.trust-badge span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 67, 54, 0.08);
  border-radius: 20px;
  border-left: 2px solid rgb(255, 67, 54);
  transition: all 0.25s ease-out;
}
.trust-badge span:hover {
  background: rgba(255, 67, 54, 0.12);
  transform: translateX(4px);
}

/* ============================================
   3D Card Preview
   ============================================ */
.hero-visual {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.card-3d-preview {
  display: block;
  width: 380px;
  height: 240px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .card-3d-preview {
    width: 320px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .card-3d-preview {
    width: 280px;
    height: 175px;
  }
}

.card-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 1.5rem;
  box-shadow: 0 25px 60px -12px rgba(255, 67, 54, 0.3), 0 0 60px -15px rgba(59, 130, 246, 0.2);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Only flip when hovering over the container, NOT when mouse moves over the inner element */
.card-3d-preview:hover .card-3d-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  top: 0;
  left: 0;
}

.card-front {
  background: linear-gradient(135deg, #ff4336 0%, #ff7043 50%, #3b82f6 100%);
  transform: rotateY(0deg);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: 1.5rem;
}
.card-front .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 100%;
  animation: rotate 8s linear infinite;
}
.card-front .card-content {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.5rem;
}
.card-front .card-chip {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.card-front .card-brand {
  font-size: 0.7rem;
  opacity: 0.9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.card-front .card-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0.25rem 0;
}
.card-front .card-title {
  font-size: 0.8rem;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.card-back {
  background: #0f172a;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-back .card-content {
  text-align: center;
}
.card-back .qr-placeholder {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 0.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-back .qr-dot-pattern {
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 8px 8px;
}
.card-back .tap-text {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.rotation-hint {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 768px) {
  .rotation-hint {
    bottom: -1.5rem;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 67, 54, 0.1);
  color: rgb(255, 67, 54);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 67, 54, 0.2);
  animation: fadeInScale 0.6s ease-out;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #111111 0%, rgb(255, 67, 54) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInScale 0.6s ease-out 0.1s both;
}

.section-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInScale 0.6s ease-out 0.2s both;
}

.features {
  padding: 6rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 12px;
  transition: all 0.35s ease-out;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
  border-color: rgb(255, 67, 54);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}
.feature-card .feature-icon {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  display: inline-block;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #111111;
  font-weight: 800;
}
.feature-card p {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
}

.configurator-highlight {
  padding: 6rem 0;
  background: #f0f7ff;
}

.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .configurator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.configurator-content h2 {
  font-size: 2rem;
  margin: 1rem 0 1.5rem;
}
@media (max-width: 768px) {
  .configurator-content h2 {
    font-size: 1.75rem;
  }
}
.configurator-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.configurator-features {
  list-style: none;
  margin-bottom: 2rem;
}
.configurator-features li {
  padding: 0.5rem 0;
  color: #4b5563;
}

.configurator-visual {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.configurator-visual::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 67, 54, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.configurator-visual .config-preview-placeholder {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 67, 54, 0.1);
}
.configurator-visual .config-steps .step {
  padding: 1rem;
  color: #64748b;
  border-left: 4px solid rgb(255, 67, 54);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease-out;
  background: rgba(255, 67, 54, 0.05);
  border-radius: 8px;
  padding-left: 1rem;
}
.configurator-visual .config-steps .step:hover {
  background: rgba(255, 67, 54, 0.1);
  transform: translateX(4px);
}
.configurator-visual .config-steps .step:last-child {
  margin-bottom: 0;
}

.privacy-highlight {
  padding: 6rem 0;
  background: white;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.privacy-visual {
  text-align: center;
  position: relative;
}
.privacy-visual .device-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.privacy-visual .local-badge {
  display: inline-block;
  background: #1b8a2e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.privacy-content h2 {
  font-size: 2rem;
  margin: 1rem 0 1rem;
}
@media (max-width: 768px) {
  .privacy-content h2 {
    font-size: 1.75rem;
  }
}
.privacy-content > p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.privacy-comparison {
  background: #f0f7ff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.privacy-comparison .comparison-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.privacy-comparison .comparison-item:last-child {
  border-bottom: none;
}
.privacy-comparison .comparison-item strong {
  display: block;
  margin-bottom: 0.25rem;
}
.privacy-comparison .comparison-item span {
  font-size: 0.875rem;
  color: #4b5563;
}

.privacy-note {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

.pricing {
  padding: 6rem 0;
  background: #f0f7ff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease-out;
  position: relative;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 67, 54, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card.popular {
  border: 2px solid rgb(255, 67, 54);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(255, 67, 54, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 67, 54, 0.03) 100%);
}
@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
  }
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px -10px rgba(255, 67, 54, 0.35);
}
@media (max-width: 768px) {
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
}
.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
}
.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cta-section {
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  padding: 6rem 0;
  text-align: center;
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
}
.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.cta-section .btn-primary {
  background: white;
  color: rgb(255, 67, 54);
}
.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
}

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #050a15 100%);
  color: #64748b;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 67, 54, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgb(255, 67, 54), #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-column a {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  transition: all 0.25s ease-out;
  position: relative;
}
.footer-column a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(255, 67, 54);
  transition: width 0.3s ease;
}
.footer-column a:hover {
  color: rgb(255, 67, 54);
}
.footer-column a:hover::before {
  width: 100%;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.iframe-container {
  position: absolute;
  right: -40px;
  transform: translateX(40px);
}
.iframe-container .iframe-3d {
  width: 788px; /* Keep original dimensions */
  height: auto;
  aspect-ratio: 788/450; /* Maintains proportions */
  scale: 0.75;
}

:focus-visible {
  outline: 2px solid rgb(255, 67, 54);
  outline-offset: 2px;
}

a:focus-visible {
  border-radius: 8px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f7ff;
}

::-webkit-scrollbar-thumb {
  background: rgb(255, 67, 54);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d63829;
}

::selection {
  background: rgb(255, 67, 54);
  color: white;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) rotateY(-30deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 67, 54, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 67, 54, 0.4);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=styles.css.map */
