:root {
  color-scheme: dark;
  --bg: #030503;
  --panel: #09110c;
  --panel-2: #101b14;
  --text: #f6fff8;
  --muted: #b5c5bb;
  --green: #00e682;
  --lime: #c8ff00;
  --gold: #ffcc2e;
  --border: rgba(255, 255, 255, .13);
  --shadow: rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(200, 255, 0, .18), transparent 34rem),
    radial-gradient(circle at 8% 18%, rgba(0, 230, 130, .18), transparent 28rem),
    linear-gradient(180deg, #030503 0%, #071009 54%, #030503 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.rtl {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header,
footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
  font-size: 20px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  background: #050805;
  box-shadow: 0 14px 34px rgba(200, 255, 0, .16);
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
footer a {
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--green);
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 34px 0 68px;
}

.rtl .hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(200, 255, 0, .35);
  border-radius: 18px;
  background: #050805;
  box-shadow: 0 34px 100px var(--shadow), 0 0 44px rgba(200, 255, 0, .16);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.hero-logo {
  width: min(220px, 58vw);
  display: block;
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 32px rgba(200, 255, 0, .2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.rtl .eyebrow {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.lead,
.spotlight p,
.features p,
.legal p {
  color: var(--muted);
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 18px;
}

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

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
}

.primary {
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: #041006;
  box-shadow: 0 18px 42px rgba(0, 230, 130, .2);
}

.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(300px, .64fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 27, 20, .94), rgba(8, 16, 10, .88));
}

.spotlight h2,
.legal h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
}

.spotlight img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 64px var(--shadow);
}

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

.features article,
.legal {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(13, 21, 16, .88);
}

.features article {
  padding: 24px;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal {
  max-width: 880px;
  padding: 34px;
  margin-top: 32px;
  margin-bottom: 56px;
}

.legal h2 {
  margin-top: 30px;
}

.legal section {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.mail {
  color: var(--green);
  font-weight: 950;
}

.contact-page {
  padding: 28px 0 56px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: center;
  margin: 24px 0 22px;
  padding: 34px;
  border: 1px solid rgba(200, 255, 0, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 20%, rgba(200, 255, 0, .16), transparent 18rem),
    linear-gradient(135deg, rgba(16, 27, 20, .94), rgba(8, 16, 10, .9));
}

.contact-hero h1 {
  margin: 0;
}

.contact-hero img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px var(--shadow);
}

.contact-email {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-email a {
  color: var(--green);
  font-weight: 950;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  gap: 18px;
  align-items: start;
}

.contact-form,
.contact-info {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(13, 21, 16, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.contact-form {
  padding: 24px;
}

.contact-info {
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  color: var(--text);
  font: inherit;
  font-weight: 650;
  outline: none;
  padding: 13px 14px;
}

.contact-form select option {
  background: #09110c;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 230, 130, .72);
  box-shadow: 0 0 0 3px rgba(0, 230, 130, .14);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .rtl .hero,
  .spotlight {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

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

  .contact-hero,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero img {
    width: 150px;
  }
}
