@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  --navy: #0a1628;
  --navy-light: #1a2b47;
  --electric-blue: #0080ff;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

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

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
}

.wrap {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap-narrow {
  max-width: 64rem;
}

.wrap-prose {
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .wrap,
  .wrap-narrow,
  .wrap-prose {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(255 255 255 / 80%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  height: 1rem;
  width: auto;
}

.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--gray-900);
}

.btn-outline-blue {
  padding: 0.625rem 1.25rem;
  border: 2px solid var(--electric-blue);
  border-radius: 0.5rem;
  color: var(--electric-blue);
  font-weight: 600;
  transition: background 0.15s;
}

.btn-outline-blue:hover {
  background: var(--gray-50);
}

.nav-privacy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--gray-900);
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-spacer {
  width: 6rem;
}

@media (min-width: 768px) {
  .logo {
    height: 1.5rem;
  }

  .nav-links {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("../images/hero-mesh.jpg");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(var(--electric-blue) 1px, transparent 1px),
    linear-gradient(90deg, var(--electric-blue) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: var(--electric-blue);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  transition: box-shadow 0.15s;
}

.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 20%), 0 8px 10px -6px rgb(0 0 0 / 20%);
}

.btn-ghost {
  padding: 1rem 2rem;
  border: 2px solid var(--white);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-ghost:hover {
  background: rgb(255 255 255 / 10%);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Logos */
.logos {
  padding: 4rem 1.5rem;
  background: var(--gray-50);
}

.logos-label {
  text-align: center;
  color: var(--gray-600);
  font-weight: 600;
  margin-bottom: 2rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.logo-card {
  min-width: 120px;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  background: var(--white);
  transition: box-shadow 0.15s;
}

.logo-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%);
}

.logo-card img {
  height: 3rem;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.6;
  mix-blend-mode: darken;
  transition: opacity 0.15s;
}

.logo-card:hover img {
  opacity: 1;
}

@media (min-width: 1024px) {
  .logos {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Sections */
.section {
  padding: 6rem 1.5rem;
}

.section-navy {
  background: var(--navy);
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-navy .section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-navy .section-head h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-head h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.section-navy .section-head p {
  color: var(--gray-300);
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 3rem;
  }

  .section-head h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Cards */
.grid-3,
.grid-2,
.grid-shots {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  margin-bottom: 4rem;
}

.grid-shots {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

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

.card {
  position: relative;
  background: rgb(255 255 255 / 80%);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.card:hover {
  border-color: #d1d5db;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.card-featured {
  border: 2px solid var(--electric-blue);
}

.card-featured:hover {
  border-color: var(--electric-blue);
}

.card-dark {
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  backdrop-filter: blur(4px);
}

.card-dark:hover {
  border-color: rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 10%);
  box-shadow: none;
}

.card-dark.card-featured {
  border: 2px solid var(--electric-blue);
}

.card-dark.card-featured:hover {
  border-color: var(--electric-blue);
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  transition: transform 0.3s;
}

.card:hover .icon-box {
  transform: scale(1.1);
}

.card-dark:hover .icon-box {
  transform: none;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card-dark h3 {
  color: var(--white);
}

.card p {
  color: var(--gray-600);
  line-height: 1.625;
  font-weight: 400;
}

.card-dark p {
  color: var(--gray-300);
}

.badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--electric-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%);
}

.shot {
  position: relative;
  aspect-ratio: 636 / 1331;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
  transition: transform 0.3s, box-shadow 0.3s;
}

.shot:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Footer */
.footer {
  padding: 4rem 1.5rem;
  background: var(--navy);
}

.footer-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  text-align: center;
}

.footer-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hq {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 10%);
  font-size: 0.875rem;
  color: var(--gray-300);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: background 0.15s, transform 0.15s;
}

.socials a:hover {
  background: rgb(255 255 255 / 20%);
  transform: scale(1.1);
}

.icon-fill {
  fill: #d1d5db;
}

.footer-copy {
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-copy p {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-simple .footer-copy {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
  }

  .footer-brand {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Privacy */
.privacy {
  padding: 8rem 1.5rem 4rem;
}

.privacy-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.privacy-hero svg {
  color: var(--electric-blue);
  margin: 0 auto 1.5rem;
}

.privacy-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.privacy-hero p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.policy p,
.policy li {
  color: #374151;
  line-height: 1.625;
}

.policy ul {
  margin: 1rem 0 0 1rem;
  padding-left: 1rem;
}

.policy li {
  margin: 0.5rem 0;
}

.policy .mt {
  margin-top: 1rem;
}

.mail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--electric-blue);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .privacy-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .privacy {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgb(0 0 0 / 50%);
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
  max-width: 56rem;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}

.modal-head {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-head h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.modal-close {
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #6b7280;
}

.modal-close:hover {
  background: var(--gray-100);
}

.modal-body {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}

.modal-body iframe {
  border: 0;
  max-width: 100%;
}

body.modal-open {
  overflow: hidden;
}

/* 404 */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.not-found p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}
