/* ==================================
   Flex Website - Editorial Style
   ================================== */

:root {
  /* Color Palette - Warm Spanish-inspired tones */
  --color-terracotta: #c6674e;
  --color-ochre: #d4a373;
  --color-navy: #1a2332;
  --color-cream: #faf7f2;
  --color-sage: #8a9a7b;

  /* Accent colors */
  --color-gold: #d4a373;
  --color-blue-accent: #4a7c9f;

  /* Neutrals */
  --color-text: #2a2a2a;
  --color-text-light: #5a5a5a;
  --color-border: #e8e3db;
  --color-bg-subtle: #f5f2ed;

  /* Typography */
  --font-display: 'DM Sans', -apple-system, system-ui, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Animation */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================================
   Base Styles
   ================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==================================
   Typography
   ================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: var(--space-md);
  max-width: 70ch;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

a:hover {
  color: var(--color-navy);
}

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
}

strong {
  font-weight: 600;
  color: var(--color-navy);
}

/* ==================================
   Navigation
   ================================== */

.site-nav {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  animation: slideDown 0.6s var(--ease-smooth);
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease-bounce);
  align-items: flex-start;
}

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

.logo-image {
  height: 40px;
  width: auto;
  transition: filter 0.3s var(--ease-smooth);
}

.logo:hover .logo-image {
  filter: brightness(1.1);
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  position: relative;
  transition: color 0.2s var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-terracotta);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-navy);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* ==================================
   Main Content
   ================================== */

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  min-height: calc(100vh - 400px);
}

.page-header {
  margin-bottom: var(--space-2xl);
  position: relative;
  animation: fadeInUp 0.8s var(--ease-smooth);
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

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

.header-decoration {
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-terracotta) 0%,
    var(--color-ochre) 50%,
    var(--color-sage) 100%
  );
  margin-bottom: var(--space-md);
  border-radius: 2px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-terracotta) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-light);
  font-weight: 400;
}

/* ==================================
   FAQ Table of Contents
   ================================== */

.faq-toc {
  background: var(--color-bg-subtle);
  border-left: 3px solid var(--color-terracotta);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  border-radius: 8px;
  animation: fadeInUp 0.8s var(--ease-smooth);
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.faq-toc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.faq-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-sm);
}

.faq-toc-list li {
  margin: 0;
}

.faq-toc-list a {
  display: block;
  padding: var(--space-xs) var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s var(--ease-smooth);
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-toc-list a:hover {
  background: white;
  color: var(--color-terracotta);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ==================================
   FAQ Section
   ================================== */

.faq-section {
  animation: fadeInUp 0.8s var(--ease-smooth);
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.faq-item {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  animation: fadeInUp 0.6s var(--ease-smooth);
  animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.5s; }
.faq-item:nth-child(2) { animation-delay: 0.6s; }
.faq-item:nth-child(3) { animation-delay: 0.7s; }
.faq-item:nth-child(4) { animation-delay: 0.8s; }
.faq-item:nth-child(n+5) { animation-delay: 0.9s; }

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.faq-question::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-size: 1.8rem;
  line-height: 1;
}

.faq-answer {
  padding-left: var(--space-lg);
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

.faq-answer ul {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.faq-answer li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* ==================================
   Legal Content (Terms & Privacy)
   ================================== */

.legal-content {
  animation: fadeInUp 0.8s var(--ease-smooth);
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-section ul,
.legal-section ol {
  margin-bottom: var(--space-md);
}

.legal-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.contact-info {
  background: var(--color-bg-subtle);
  padding: var(--space-md);
  border-left: 3px solid var(--color-terracotta);
  border-radius: 4px;
  font-size: 1.05rem;
}

/* ==================================
   Footer
   ================================== */

.site-footer {
  background: var(--color-navy);
  color: var(--color-cream);
  margin-top: var(--space-2xl);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  border-top: 4px solid var(--color-terracotta);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.7);
  max-width: 30ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-end;
}

.footer-links a {
  color: rgba(250, 247, 242, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s var(--ease-smooth);
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  text-align: center;
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.85rem;
}

/* ==================================
   Responsive Design
   ================================== */

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .nav-container {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .nav-links {
    gap: var(--space-md);
  }

  .content-wrapper {
    padding: var(--space-xl) var(--space-md);
  }

  .page-title {
    font-size: 2.5rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .faq-question {
    font-size: 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

/* ==================================
   Print Styles
   ================================== */

@media print {
  .site-nav,
  .site-footer {
    display: none;
  }

  .content-wrapper {
    max-width: 100%;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* ==================================
   Homepage - Hero Section
   ================================== */

.hero {
  padding: var(--space-2xl) var(--space-lg);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(26, 35, 50, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s var(--ease-smooth);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  color: white;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 50ch;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  margin-bottom: var(--space-md);
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

.btn-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-terracotta);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(198, 103, 78, 0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: white;
  color: var(--color-navy);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Animated shimmer effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 103, 78, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

/* Pulsing glow effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--color-terracotta),
    var(--color-gold),
    var(--color-terracotta)
  );
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

.btn-primary:hover {
  background: var(--color-terracotta);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(198, 103, 78, 0.4);
}

.btn-primary:hover::after {
  animation: pulse-glow 1s ease-in-out infinite;
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.2rem;
}

.apple-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeInUp 0.8s var(--ease-smooth);
  animation-delay: 0.2s;
  animation-fill-mode: both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-screenshots {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-stack {
  position: relative;
  width: 280px;
  height: 560px;
  perspective: 1000px;
}

.screenshot {
  position: absolute;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s var(--ease-smooth);
}

.screenshot-1 {
  left: -40px;
  top: 20px;
  z-index: 3;
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
}

.screenshot-2 {
  left: 20px;
  top: 0;
  z-index: 2;
  transform: rotate(2deg);
  animation: float 6s ease-in-out infinite 2s;
}

.screenshot-3 {
  right: -40px;
  top: 40px;
  z-index: 1;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite 4s;
}

.screenshot:hover {
  z-index: 10;
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

.app-preview {
  position: relative;
  height: 100%;
}

.preview-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: var(--space-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

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

.card-1 {
  width: 280px;
  top: 50px;
  left: 20px;
  animation-delay: 0s;
}

.card-2 {
  width: 180px;
  top: 300px;
  right: 40px;
  animation-delay: 1s;
}

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verb-display {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  text-align: center;
}

.conjugation-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.conj-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-bg-subtle);
  border-radius: 6px;
  font-size: 0.95rem;
}

.conj-row span:first-child {
  color: var(--color-text-light);
  font-weight: 500;
}

.conj-row span:last-child {
  color: var(--color-navy);
  font-weight: 600;
}

.stat-badge {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================================
   Features Section
   ================================== */

.features {
  padding: var(--space-2xl) var(--space-lg);
  background: white;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature {
  text-align: center;
  animation: fadeInUp 0.6s var(--ease-smooth);
  animation-fill-mode: both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.feature-desc {
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 35ch;
  margin: 0 auto;
}

/* ==================================
   CTA Section
   ================================== */

.cta-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-navy);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cta-note {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==================================
   Responsive - Homepage
   ================================== */

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

/* ==================================
   Accessibility
   ================================== */

.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;
}

*:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
