:root {
  --primary: #294365;
  --accent: #ADA861;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --border-subtle: #e1e3ea;
  --text-main: #111827;
  --text-muted: #6b7280;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9fafb 0, #f5f5f7 40%, #eef0f6 100%);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Shell */

.shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 1.4rem;
}

/* Buttons */

.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-primary {
  background: var(--primary);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(41, 67, 101, 0.3);
  color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(41, 67, 101, 0.03);
}

.btn-outline {
  background: transparent;
  border-color: #e5e7eb;
  color: #f9fafb;
}

.btn-full {
  width: 100%;
}

/* Disclaimer */

#disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 14, 24, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.disclaimer-card {
  width: 100%;
  max-width: 720px;
  background: #0b1220;
  color: #f9fafb;
  border-radius: 18px;
  padding: 1.6rem 1.4rem 1.3rem;
  border: 1px solid rgba(173, 168, 97, 0.85);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.7);
}

.disclaimer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.disclaimer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-brand img {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d1d5db;
}

.disclaimer-card h1 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.disclaimer-body {
  font-size: 0.88rem;
}

.disclaimer-body p + p {
  margin-top: 0.5rem;
}

.disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-top: 0.9rem;
}

.disclaimer-check input {
  margin-top: 0.12rem;
}

.disclaimer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(245, 245, 247, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
  gap: 0.75rem;
}

.header-logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.12rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.16s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  border-radius: 999px;
  border: none;
  background: var(--accent);
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  color: #111827;
  cursor: pointer;
}

/* Hero */

.hero {
  padding-block: 2.3rem 2.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.1rem;
  align-items: center;
}

.hero-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-copy h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.hero-accent {
  color: var(--primary);
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

/* Hero slider */

.hero-slider {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #555;
}

.slider-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.slider-viewport {
  position: relative;
  height: 1.4em; /* IMPORTANT */
  overflow: hidden;
}

.slider-item {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}

.slider-item.is-active {
  opacity: 1;
  transform: translateY(0);
}


/* Hero visual */

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  background: radial-gradient(circle at top left, rgba(173, 168, 97, 0.24), #ffffff 55%);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  background: rgba(41, 67, 101, 0.06);
  border: 1px solid rgba(41, 67, 101, 0.2);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-line-block {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.hero-line-muted {
  width: 45%;
  background: rgba(41, 67, 101, 0.18);
}

.hero-meta-block {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-meta-title {
  font-size: 0.78rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.hero-meta-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding-block: 1.2rem 2.2rem;
}

.section-alt {
  padding-bottom: 2.6rem;
}

.section-head {
  margin-bottom: 1.2rem;
  max-width: 34rem;
}

.section-head h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.section-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 0.9rem 0.9rem 0.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.card h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 1.2rem;
}

.contact-info {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem 0.9rem 0.9rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field {
  margin-bottom: 0.75rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.84rem;
  font-family: inherit;
  background: #f9fafb;
}

textarea {
  resize: vertical;
  min-height: 5.3rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.checkbox input {
  margin-top: 0.15rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-block: 0.8rem 1.1rem;
}

.footer-inner {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-card {
    max-width: 100%;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 1rem;
  }
  .nav {
    display: none;
  }
  .site-header {
    padding-inline: 0;
  }
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid {
    gap: 1.6rem;
  }
  .disclaimer-card {
    padding-inline: 1rem;
  }
}
