﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf8f6;
  --surface: #ffffff;
  --surface-muted: #f8f7f6;
  --text: #333333;
  --text-soft: #666666;
  --brand: #e85a7b;
  --brand-dark: #d94565;
  --line: #e5e3e0;
  --radius: 18px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  animation: page-fade 300ms ease;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(250, 248, 246, 0.98);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font: 700 1.1rem "Sora", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font: 600 0.9rem "Inter", sans-serif;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--brand);
  transform: translateY(-1px);
  background: #fafaf8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 6rem 0 4rem;
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.1;
  text-transform: capitalize;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}

.tagline {
  margin: 1rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.hero-copy>p:last-of-type {
  color: var(--text-soft);
  max-width: 55ch;
  line-height: 1.75;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--text);
  border: 1.5px solid var(--line);
  background: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--brand);
  background: #fff;
}

.hero-image-card,
.info-card,
.feature-card,
.highlight-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-image-card {
  margin: 0;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg);
  transition: all 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.hero-image-card img {
  border-radius: calc(var(--radius) - 8px);
  width: 100%;
  object-fit: cover;
}

.section {
  padding: 4rem 0 5rem;
}

.page-main {
  min-height: calc(100vh - 170px);
  padding: 4rem 0 5rem;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.info-card {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.info-card:hover {
  border-color: #d5d0c8;
  box-shadow: var(--shadow-md);
}

.info-card p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: all 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  color: var(--brand-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--surface);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  background: #fafbf9;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-alt {
  background: linear-gradient(135deg, #1a1d24 0%, #2a3142 100%);
  color: #fff;
  border-block: 1px solid #3a4255;
}

.section-alt .section h2 {
  color: #fff;
}

.steps {
  margin: 0;
  display: grid;
  gap: 1rem;
  padding-left: 1.5rem;
}

.steps li {
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-soft);
}

.steps-dark {
  color: var(--text);
}

.steps-dark li {
  color: var(--text);
}

.highlight-card {
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 240ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

.highlight-card img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-content {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.reveal:nth-child(2) {
  transition-delay: 70ms;
}

.feature-card.reveal:nth-child(3) {
  transition-delay: 140ms;
}

.feature-card.reveal:nth-child(4) {
  transition-delay: 210ms;
}

.hero-copy.reveal {
  transition-delay: 0ms;
}

.hero-image-card.reveal {
  transition-delay: 70ms;
}

@keyframes page-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0 2.5rem;
  }

  .hero-image-card {
    order: -1;
    transform: none;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 660px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 4vw;
    gap: 0;
    display: none;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links.open {
    display: flex;
  }

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

  .section {
    padding: 2rem 0 3rem;
  }

  .page-main {
    padding: 2rem 0 3rem;
  }

  .hero {
    padding: 3rem 0 1.5rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}