:root {
  --primary-coral: #ff7f50;
  --secondary-coral: #ff6347;
  --accent-pink: #ff2e63;
  --bg-light: #fff5f2;
  --surface-light: #ffffff;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --indigo-deep: #1a1a2e;
  --indigo-soft: #16213e;
  --white: #ffffff;
  --black: #000000;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 35px rgba(255, 127, 80, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 12px;
  --container-width: 1280px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #1a1a2e;
    --surface-light: #16213e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --indigo-deep: #0f0f1b;
    --white: #f8f9fa;
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 40px rgba(255, 46, 99, 0.15);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--indigo-deep);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (prefers-color-scheme: dark) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--white);
  }
}
h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  position: relative;
  padding-bottom: 1rem;
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-coral);
  border-radius: 2px;
}
h3 {
  font-size: 1.75rem;
  color: var(--primary-coral);
}
p {
  margin-bottom: 1.5rem;
  max-width: 75ch;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}
header {
  background-color: var(--surface-light);
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
@media (prefers-color-scheme: dark) {
  header.scrolled {
    background-color: rgba(22, 33, 62, 0.95);
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  background: linear-gradient(
    to right,
    var(--primary-coral),
    var(--accent-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-coral);
  transition: var(--transition);
}
nav a:hover {
  color: var(--primary-coral);
}
nav a:hover::after {
  width: 100%;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.burger span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-coral);
  border-radius: 3px;
  transition: var(--transition);
}
main {
  padding-top: 120px;
}
.hero {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(
    circle at top right,
    rgba(255, 127, 80, 0.1),
    transparent
  );
}
.hero p {
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  color: var(--text-muted);
}
section {
  padding: 6rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-header {
  margin-bottom: 4rem;
  max-width: 800px;
}
.section-header svg {
  margin-bottom: 1rem;
  width: 48px;
  height: 48px;
  color: var(--primary-coral);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--surface-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(255, 127, 80, 0.05);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-coral);
}
.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
article {
  background: var(--surface-light);
  padding: 4rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
article h3 {
  border-left: 5px solid var(--primary-coral);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
article ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
article ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-coral);
  font-weight: bold;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 3rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-light);
}
table th {
  background-color: var(--primary-coral);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding: 1.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}
@media (prefers-color-scheme: dark) {
  table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
table tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background-color: rgba(255, 127, 80, 0.03);
}
aside {
  background: linear-gradient(135deg, var(--primary-coral), var(--accent-pink));
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}
aside h4 {
  color: var(--white);
  margin-bottom: 1rem;
}
aside p {
  margin-bottom: 0;
  opacity: 0.9;
}
.disclaimer-box {
  background-color: rgba(0, 0, 0, 0.02);
  border: 2px dashed var(--text-muted);
  padding: 3rem;
  margin: 6rem 0;
  border-radius: var(--border-radius);
}
@media (prefers-color-scheme: dark) {
  .disclaimer-box {
    background-color: rgba(255, 255, 255, 0.02);
  }
}
.disclaimer-box h3 {
  color: var(--text-main);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.disclaimer-box p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}
footer {
  background-color: var(--indigo-deep);
  color: var(--white);
  padding: 6rem 0 3rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}
.footer-links a:hover {
  opacity: 1;
  color: var(--primary-coral);
  padding-left: 5px;
}
.copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.5;
}
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-coral),
    transparent
  );
  margin: 4rem 0;
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--surface-light);
    padding: 100px 2rem;
    transition: 0.5s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    right: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  article,
  .card {
    padding: 2rem;
  }
  header .container {
    padding: 0 1.5rem;
  }
  h1 {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  main {
    padding-top: 100px;
  }
  .hero {
    padding: 4rem 0;
  }
  h2 {
    font-size: 1.8rem;
  }
  table {
    display: block;
    overflow-x: auto;
  }
  .disclaimer-box {
    padding: 1.5rem;
  }
}
::selection {
  background: var(--primary-coral);
  color: var(--white);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-coral);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-coral);
}
.animate-slide-in {
  animation: slideIn 1s ease forwards;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 1.5s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.text-highlight {
  color: var(--primary-coral);
  font-weight: 700;
}
.italic-detail {
  font-style: italic;
  color: var(--text-muted);
  font-family: "Playfair Display", serif;
}
.spacer-sm {
  height: 1rem;
}
.spacer-md {
  height: 3rem;
}
.spacer-lg {
  height: 6rem;
}
.border-accent {
  border: 1px solid var(--primary-coral);
}
.bg-coral-soft {
  background-color: rgba(255, 127, 80, 0.05);
}
.shadow-strong {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.rounded-full {
  border-radius: 9999px;
}
.uppercase-tracking {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}
.opacity-80 {
  opacity: 0.8;
}
.font-serif {
  font-family: "Playfair Display", serif;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-full {
  width: 100%;
}
.m-auto {
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.p-relative {
  position: relative;
}
.d-block {
  display: block;
}
.overflow-hidden {
  overflow: hidden;
}
.cursor-pointer {
  cursor: pointer;
}
.transition-slow {
  transition: all 0.8s ease;
}
.z-max {
  z-index: 9999;
}
.line-height-tight {
  line-height: 1.1;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.m-0 {
  margin: 0;
}
.mt-4 {
  margin-top: 1rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.weight-300 {
  font-weight: 300;
}
.weight-900 {
  font-weight: 900;
}
.color-coral {
  color: var(--primary-coral);
}
.color-indigo {
  color: var(--indigo-deep);
}
.bg-white {
  background: var(--white);
}
.no-select {
  user-select: none;
}
.pointer-events-none {
  pointer-events: none;
}
.transform-scale:hover {
  transform: scale(1.02);
}
.blur-load {
  filter: blur(5px);
}
.unblur {
  filter: blur(0);
  transition: filter 0.5s;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 600px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.article-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-coral);
  margin-bottom: 0.5rem;
  display: block;
}
.list-check li::before {
  content: "✓";
}
.list-bullet li::before {
  content: "•";
}
.section-pattern {
  background-image: radial-gradient(
    var(--primary-coral) 0.5px,
    transparent 0.5px
  );
  background-size: 20px 20px;
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.content-reveal {
  overflow: hidden;
  position: relative;
}
.content-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-coral);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.content-reveal.active::after {
  transform: translateX(101%);
}
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sticky-top {
  position: sticky;
  top: 100px;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.bg-indigo {
  background-color: var(--indigo-deep);
}
.text-white {
  color: var(--white);
}
.h-auto {
  height: auto;
}
.max-w-600 {
  max-width: 600px;
}
.border-none {
  border: none;
}
.outline-none {
  outline: none;
}
.transition-cubic {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hover-rotate:hover {
  transform: rotate(3deg);
}
.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dark-glass {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.shadow-indigo {
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.2);
}
.card-large {
  padding: 4rem;
  grid-column: span 2;
}
@media (max-width: 900px) {
  .card-large {
    grid-column: span 1;
    padding: 2rem;
  }
}
.floating {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 127, 80, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 127, 80, 0);
  }
}
.text-gradient {
  background: linear-gradient(45deg, var(--primary-coral), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.border-b-coral {
  border-bottom: 2px solid var(--primary-coral);
}
.mt-auto {
  margin-top: auto;
}
.p-0 {
  padding: 0;
}
.visible-mobile {
  display: none;
}
@media (max-width: 768px) {
  .visible-mobile {
    display: block;
  }
  .hidden-mobile {
    display: none;
  }
}
