/* Base layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #050609;
  color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #f3ff4b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1,
h2,
h3 {
  font-family: "Anton", system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0;
}

p {
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #a0a4b8;
  margin-bottom: 0.75rem;
}

.accent {
  color: #f3ff4b;
}

.section {
  padding: 3.5rem 0;
}

.section-dark {
  background: radial-gradient(circle at top left, #161821 0, #050609 55%);
}

.section-cta {
  background: linear-gradient(135deg, #f3ff4b 0, #ff3645 100%);
  color: #050609;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: #c0c3d2;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(5, 6, 9, 0.98), rgba(5, 6, 9, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #fff;
}

.logo-mark {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #c0c3d2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c0c3d2;
}

.nav-link.active,
.nav-link:hover {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 1.1rem;
  background: #ffffff;
  border-radius: 999px;
}

.header-cta {
  display: inline-flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f3ff4b 0, #ff3645 100%);
  color: #050609;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.26);
  color: #f5f5f5;
  background: rgba(5, 6, 9, 0.7);
}

.btn-outline:hover {
  border-color: #f3ff4b;
  color: #f3ff4b;
  text-decoration: none;
}

.btn-lg {
  padding-inline: 2.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  align-items: stretch;
  overflow: hidden;
  background: radial-gradient(circle at top right, #111424 0, #050609 55%);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 6, 9, 0.95) 0%,
    rgba(5, 6, 9, 0.9) 45%,
    rgba(5, 6, 9, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  padding: 4.5rem 1.25rem 3.5rem;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 640px;
  color: #c0c3d2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-badges li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 255, 75, 0.4);
  background: rgba(5, 6, 9, 0.85);
  color: #e4e7f5;
}

/* Feature grid */
.section-grid .section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: radial-gradient(circle at top, #181b27 0, #070811 60%);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6);
}

.feature-card-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.feature-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.object-cover {
  object-fit: cover;
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 9, 0.5) 0%,
    rgba(5, 6, 9, 0.85) 100%
  );
  pointer-events: none;
}

.feature-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.feature-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: bold;
}

.feature-body p {
  color: #c0c3d2;
  font-size: 0.9rem;
}

/* Newsletter */
.newsletter-inner {
  max-width: 640px;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 6, 9, 0.8);
  color: #f5f5f5;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #777c93;
}

.form-helper {
  font-size: 0.8rem;
  color: #c0c3d2;
  margin-top: 0.75rem;
}

.form-legal {
  font-size: 0.75rem;
  color: #a0a4b8;
  margin-top: 0.35rem;
}

.form-legal a {
  color: #f3ff4b;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: radial-gradient(circle at top right, #181b27 0, #050609 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.page-subtitle {
  max-width: 640px;
  color: #c0c3d2;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.about-grid article p {
  color: #c0c3d2;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top, #181b27 0, #050609 65%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-note {
  font-size: 0.85rem;
  color: #a0a4b8;
}

.contact-form {
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: #05070f;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.field-group {
  margin-bottom: 1rem;
}

.field-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a0a4b8;
  margin-bottom: 0.45rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #05070f;
  color: #f5f5f5;
  font-size: 0.9rem;
}

.field-group textarea {
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #777c93;
}

/* Legal pages */
.legal {
  background: #050609;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  color: #c0c3d2;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

/* CTA */
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-inner p {
  color: #222428;
}

/* Footer */
.site-footer {
  background: #050609;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.75rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  font-size: 0.85rem;
}

.footer-logo {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-note {
  color: #c0c3d2;
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

.footer-contact h3,
.footer-links h3 {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #e4e7f5;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 2rem;
  padding-top: 0.9rem;
  font-size: 0.78rem;
  color: #a0a4b8;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  background: #18181b;
  border-left: 4px solid #dc2626;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.95rem 1.25rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cookie-banner-content {
  flex: 1;
  min-width: 0;
}

.cookie-banner-heading {
  font-family: "Anton", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-style: italic;
  font-size: 0.82rem;
  margin: 0 0 0.2rem;
  color: #ffffff;
}

.cookie-banner-brand {
  color: #dc2626;
  font-style: normal;
}

.cookie-banner-body {
  margin: 0;
  font-size: 0.84rem;
  color: #e5e7eb;
}

.cookie-banner-body a {
  color: #f3ff4b;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-banner-button {
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}

.cookie-btn-decline {
  border-color: #4b5563;
  color: #e5e7eb;
  background: transparent;
}

.cookie-btn-decline:hover {
  border-color: #e5e7eb;
  color: #ffffff;
}

.cookie-btn-accept {
  background: #dc2626;
  color: #f9fafb;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

.cookie-btn-accept:hover {
  background: #b91c1c;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    display: none;
  }

  .cookie-banner-inner {
    padding-inline: 1.1rem;
  }

  .cookie-banner-actions {
    margin-top: 0.35rem;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 80vh;
  }

  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(5, 6, 9, 0.98) 0%,
      rgba(5, 6, 9, 0.92) 55%,
      rgba(5, 6, 9, 0.8) 100%
    );
  }

  .header-inner {
    padding-inline: 1.1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.9rem 1.1rem;
    background: rgba(5, 6, 9, 0.98);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.75);
    min-width: 170px;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.12s ease, transform 0.12s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    padding-top: 2.25rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form .form-row {
    flex-direction: column;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

