* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #07131c;
  color: #ffffff;
}

header {
  width: 100%;
  padding: 22px 8%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 8%;
}

.hero {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.hero p {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: #b7c4cc;
}

.brand-accent {
  color: #d4af37;
}

footer {
  padding: 24px 8%;
  text-align: center;
  font-size: 14px;
  color: #82919a;
}
.site-header {
  width: 100%;
  padding: 0 8%;
  background: rgba(7, 19, 28, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: #b7c4cc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #d4af37;
}

@media (max-width: 700px) {
  .nav-container {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero-description {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.7;
  color: #b7c4cc;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-block;
  padding: 14px 24px;
  background: #d4af37;
  color: #07131c;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.primary-button:hover {
  background: #e2c15b;
  transform: translateY(-2px);
}

.coming-soon {
  color: #b7c4cc;
  font-size: 15px;
}
.hero-logo {
  display: block;
  width: min(260px, 65vw);
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
}
.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.hero-branding {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-layout .hero-logo {
  width: min(360px, 100%);
  margin: 0;
}

.hero-layout .hero-content {
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.hero-layout .hero-description {
  margin-left: 0;
  margin-right: 0;
}

.hero-layout .hero-actions {
  justify-content: flex-start;
}

@media (max-width: 800px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-layout .hero-logo {
    width: min(260px, 65vw);
  }

  .hero-layout .hero-content {
    text-align: center;
  }

  .hero-layout .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-layout .hero-actions {
    justify-content: center;
  }
}
.features-section {
  padding: 100px 8%;
  background: #0b1a24;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.section-intro {
  max-width: 720px;
  margin: 20px 0 48px;
  color: #b7c4cc;
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px;
  background: #07131c;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}

.feature-card h3 {
  margin: 0 0 16px;
  color: #d4af37;
  font-size: 21px;
}

.feature-card p {
  margin: 0;
  color: #b7c4cc;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.offline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4af37;
}
.contact-section {
  padding: 100px 8%;
  background: #0b1a24;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.contact-copy {
  max-width: 600px;
  margin: 20px 0 0;
  color: #b7c4cc;
  font-size: 18px;
  line-height: 1.7;
}

.contact-card {
  padding: 32px;
  background: #07131c;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
}

.contact-label {
  display: block;
  margin-bottom: 12px;
  color: #82919a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact-card a {
  color: #d4af37;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group label {
  color: #b7c4cc;
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 13px 14px;
  background: #0b1a24;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-button {
  border: 0;
  cursor: pointer;
  align-self: flex-start;
}

.contact-email {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}