﻿:root {
  --ink: #ecf3ff;
  --muted: #b5c0d4;
  --accent: #ff9966;
  --accent-2: #ffd166;
  --accent-3: #5cc2ff;
  --bg: #0b1426;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 40px rgba(7, 12, 26, 0.45);
  --header-bg: linear-gradient(120deg, rgba(9, 18, 38, 0.96), rgba(14, 34, 64, 0.92));
  --page-bg: linear-gradient(160deg, #081226 0%, #0b1834 45%, #0f2547 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  background: var(--page-bg);
}

.page-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 15% 10%, rgba(92, 194, 255, 0.18), transparent 60%),
    radial-gradient(50% 50% at 85% 0%, rgba(255, 153, 102, 0.12), transparent 60%),
    radial-gradient(50% 50% at 70% 85%, rgba(120, 140, 255, 0.18), transparent 60%);
  z-index: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 6vw, 80px);
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b1426;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.header-title {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.header-tagline {
  font-size: 12px;
  color: var(--muted);
}

.header-nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
}

.header-cta {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 70px;
  padding: 0 clamp(20px, 6vw, 80px) 100px;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 80px);
  min-height: clamp(420px, 70vh, 800px);
  border-radius: 28px;
  background:
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 38, 0.88), rgba(8, 18, 38, 0.7));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.05;
  margin: 0 auto 18px;
  display: inline-block;
  text-align: center;
}

.hero-content h1 span {
  display: inline-block;
  color: var(--accent);
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.text-nowrap {
  white-space: nowrap;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(92, 194, 255, 0.18), rgba(255, 153, 102, 0.16));
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.cta-content p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-section {
  display: grid;
  gap: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.services-grid article {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.services-grid h3 {
  margin: 0 0 10px;
}

.services-grid p {
  margin: 0;
  color: var(--muted);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  margin: 0 0 14px;
  color: var(--accent-3);
  white-space: nowrap;
}

.hero-lead {
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.9;
  font-size: clamp(18px, 2.4vw, 26px);
  max-width: 960px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  font-size: 18px;
}

.button.button--primary {
  background: var(--accent);
  color: #0b1426;
  box-shadow: var(--shadow);
}

.button.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.section-header h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin: 0 0 14px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 clamp(20px, 6vw, 80px) 40px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 960px) {
  .header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
    text-align: center;
  }
}

