:root {
  --bg: #f2f5fb;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --ink: #17191d;
  --ink-soft: #49505a;
  --line: #d8e1ec;
  --accent: #007c78;
  --accent-2: #0f57a1;
  --shadow: 0 20px 40px rgba(14, 31, 53, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% -10%, rgba(15, 87, 161, 0.16), transparent 45%),
    radial-gradient(circle at 0% 5%, rgba(0, 124, 120, 0.2), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(242, 245, 251, 0.88);
  border-bottom: 1px solid rgba(216, 225, 236, 0.8);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

nav {
  display: inline-flex;
  gap: 22px;
  font-weight: 600;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #d9f3f2;
  color: #0d5956;
  font-weight: 700;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero-copy p {
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
}

.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
}

.hero-art img {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: block;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--ink-soft);
  margin: 0;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.shot img {
  width: 100%;
  display: block;
  aspect-ratio: 10 / 21;
  object-fit: cover;
}

.shot figcaption {
  padding: 10px 12px;
  font-weight: 600;
}

.cta {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(120deg, #e4f4f4 0%, #e7eefc 100%);
  border: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.page {
  padding: 74px 0 60px;
}

.page-header {
  margin-bottom: 20px;
}

.page-header p {
  max-width: 70ch;
  color: var(--ink-soft);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: 1.35rem;
  margin-top: 20px;
}

.panel h2:first-child {
  margin-top: 0;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 920px) {
  .hero-grid,
  .feature-grid,
  .shots-grid {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    max-width: 320px;
  }
}

@media (max-width: 700px) {
  nav {
    gap: 12px;
    font-size: 0.94rem;
  }

  .hero {
    padding-top: 56px;
  }
}
