:root {
  color-scheme: dark;
  --ink: #f6f1ee;
  --muted: #aaa2ad;
  --night: #090b1b;
  --panel: #171527;
  --panel-soft: #20182e;
  --coral: #ed5d75;
  --pink: #f150a2;
  --violet: #9a4ed3;
  --teal: #2faaa7;
  --amber: #efa83c;
  --line: rgba(246, 241, 238, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(145, 43, 113, 0.3), transparent 32rem),
    radial-gradient(circle at 10% 52%, rgba(32, 73, 120, 0.2), transparent 34rem),
    linear-gradient(145deg, #080a19 0%, #111023 48%, #221129 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 27, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

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

.hero,
.section,
.support-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  padding: 88px 0 76px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f286a1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 620px;
  color: #cec6d0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 650;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(110deg, var(--pink), var(--violet));
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.device {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: #05060d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.device img {
  width: 100%;
  aspect-ratio: 1290 / 2796;
  border-radius: 27px;
  object-fit: cover;
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.feature-grid,
.route-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.17);
}

.card {
  padding: 27px;
}

.card p,
.support-card p,
.support-card li,
.fine-print {
  color: var(--muted);
}

.number {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.route {
  overflow: hidden;
  padding: 0;
}

.route img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top;
}

.route-copy {
  padding: 24px;
}

.route.eason {
  border-top: 3px solid var(--coral);
}

.route.junho {
  border-top: 3px solid var(--teal);
}

.route.lucien {
  border-top: 3px solid var(--amber);
}

.statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  line-height: 1.25;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.support-main {
  padding: 74px 0 92px;
}

.support-intro {
  max-width: 740px;
  margin-bottom: 48px;
}

.support-intro h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.support-grid {
  grid-template-columns: repeat(2, 1fr);
}

.support-card {
  padding: 28px;
}

.support-card ol,
.support-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.support-card li + li {
  margin-top: 8px;
}

.contact-panel {
  margin-top: 22px;
  padding: 30px;
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  background: rgba(237, 93, 117, 0.08);
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .device {
    width: min(85%, 390px);
  }

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

@media (max-width: 560px) {
  .nav-links a:not(:last-child) {
    display: none;
  }

  .hero,
  .section,
  .support-main,
  .nav,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-footer {
    flex-direction: column;
  }
}
