:root {
  --bg: #050606;
  --panel: #121313;
  --panel-2: #171818;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f1f1ee;
  --muted: #a3a6a4;
  --soft: #d7d8d4;
  --red: #ec1022;
  --red-dark: #850b16;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 6% 16%, rgba(135, 8, 18, 0.16), transparent 23rem),
    radial-gradient(circle at 80% 88%, rgba(255, 255, 255, 0.04), transparent 22rem),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

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

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

.container {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(4, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 56px, 1360px);
  height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 76px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.brand img {
  width: auto;
  max-width: 176px;
  max-height: 68px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 48px);
}

.primary-nav a,
.footer-grid a,
.footer-bottom a {
  color: #c8c9c7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 35px 0 32px;
}

.primary-nav a.active:not(.auth-link)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 27px;
  width: 32px;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
}

.primary-nav .auth-link {
  padding: 13px 28px;
  color: #ff4957;
  border: 1px solid rgba(236, 16, 34, 0.65);
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-button {
  position: relative;
  width: 52px;
  height: 52px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  cursor: pointer;
}

.icon-button span {
  font-size: 0;
}

.icon-button::before,
.icon-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
}

.icon-button::before {
  width: 15px;
  height: 15px;
  border: 2px solid #d7d8d4;
  border-radius: 50%;
  transform: translate(-58%, -58%);
}

.icon-button::after {
  width: 9px;
  height: 2px;
  background: #d7d8d4;
  border-radius: 999px;
  transform: translate(8%, 8%) rotate(45deg);
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(236, 16, 34, 0.17);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.6px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-small {
  min-height: 52px;
  padding-inline: 31px;
}

.button-outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.hero {
  overflow: hidden;
  background: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.section-space {
  padding: 82px 0;
}

.intro {
  padding-top: 55px;
}

.intro-grid,
.split-heading,
.verify-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  max-width: 600px;
  font-size: clamp(38px, 5vw, 70px);
}

.split-heading h2,
.brand-panel h2,
.verify-panel h2 {
  max-width: 650px;
  font-size: clamp(30px, 3.7vw, 50px);
}

p {
  margin: 0;
  color: var(--muted);
}

.lede,
.split-heading p {
  max-width: 560px;
  margin-top: 24px;
}

.intro-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.intro-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 198px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 132px;
}

.feature-card,
.product-card,
.brand-panel,
.verify-panel,
.contact-card,
.feature-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.33);
}

.feature-card {
  min-height: 172px;
  padding: 22px;
  border-radius: 18px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--red);
  background: rgba(236, 16, 34, 0.12);
  border: 1px solid rgba(236, 16, 34, 0.25);
  border-radius: 10px;
  font-size: 18px;
}

.feature-card h2 {
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 3px;
}

.feature-card p,
.product-card p,
.brand-panel p,
.verify-panel p,
.footer-brand p {
  font-size: 13px;
}

.products {
  padding-top: 62px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 22%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 40%);
}

.product-card img {
  width: calc(100% - 34px);
  margin: 59px auto 0;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: #c7c9c8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-badge span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.product-info {
  position: relative;
  z-index: 1;
  padding: 20px 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card h3 {
  margin: 7px 0 8px;
  font-size: 24px;
  letter-spacing: 4px;
}

.compound {
  color: #7d807e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.strength {
  margin-bottom: 17px;
  color: #ff3d4a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #ff3040;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.blue { --accent: #2087dd; }
.yellow { --accent: #dfc913; }
.orange { --accent: #f16f23; }
.red { --accent: #ec1022; }

.brand-grid {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) minmax(330px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.feature-image,
.brand-panel,
.verify-panel {
  border-radius: 20px;
}

.feature-image {
  overflow: hidden;
  padding: 12px;
}

.feature-image img {
  border-radius: 12px;
}

.brand-panel {
  padding: 58px 38px;
}

.brand-panel p {
  margin-top: 24px;
}

.panel-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.verify-section {
  padding-top: 20px;
  padding-bottom: 92px;
}

.verify-panel {
  align-items: center;
  padding: 42px 36px;
}

.verify-panel p {
  max-width: 760px;
  margin-top: 20px;
}

.auth-page {
  min-height: 100vh;
}

.auth-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 94px);
  padding: 96px 0 104px;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.94), rgba(5, 6, 6, 0.72)),
    url("Images/hero-banner.png") center top / cover no-repeat;
}

.auth-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 34%, rgba(236, 16, 34, 0.16), transparent 24rem),
    linear-gradient(180deg, transparent, var(--bg) 96%);
}

.auth-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.76fr);
  gap: 58px;
  align-items: center;
}

.auth-copy h1 {
  max-width: 570px;
  font-size: clamp(40px, 4.1vw, 58px);
  letter-spacing: 4px;
  overflow-wrap: break-word;
}

.auth-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.auth-proof span {
  padding: 9px 13px;
  color: #d9dbd8;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.auth-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 13, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.auth-scanline {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 16, 34, 0.95), transparent);
  box-shadow: 0 0 26px rgba(236, 16, 34, 0.55);
}

.auth-panel-header {
  margin-bottom: 24px;
}

.auth-panel-header h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.auth-panel-header p {
  margin-top: 14px;
  font-size: 13px;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #d9dbd8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  outline: none;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input::placeholder {
  color: #666b68;
}

.field input:focus {
  background: rgba(0, 0, 0, 0.58);
  border-color: rgba(236, 16, 34, 0.8);
  box-shadow: 0 0 0 3px rgba(236, 16, 34, 0.13);
}

.field input:disabled {
  cursor: wait;
  opacity: 0.7;
}

.field-hint {
  color: #767b78;
  font-size: 12px;
}

.auth-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  cursor: pointer;
}

.auth-submit:disabled {
  cursor: wait;
  opacity: 0.78;
}

.message-box {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.message-box.hidden {
  display: none;
}

.message-box.success {
  color: #e8fff1;
  background: rgba(27, 161, 82, 0.16);
  border: 1px solid rgba(61, 211, 122, 0.38);
}

.message-box.error {
  color: #ffe8ea;
  background: rgba(236, 16, 34, 0.15);
  border: 1px solid rgba(236, 16, 34, 0.42);
}

.auth-status {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.auth-status-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 16, 34, 0.9), rgba(255, 255, 255, 0.12), transparent);
}

.auth-status p {
  font-size: 12px;
}

.auth-status p + p {
  color: #7f8581;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.76)),
    url("Images/hero-banner.png") center top / cover no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 28%, rgba(236, 16, 34, 0.18), transparent 24rem),
    linear-gradient(180deg, transparent 30%, var(--bg) 100%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.contact-copy h1 {
  max-width: 640px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.contact-panel,
.company-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(14, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.contact-panel {
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(236, 16, 34, 0.13);
  border: 1px solid rgba(236, 16, 34, 0.35);
  border-radius: 12px;
  font-size: 25px;
}

.contact-row h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2.3px;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-row p,
.contact-row a {
  color: #d5d6d4;
  font-size: 21px;
  line-height: 1.65;
}

.company-section {
  padding-top: 56px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.company-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 18px;
}

.company-card h2 {
  margin-bottom: 20px;
  font-size: 27px;
  letter-spacing: 3px;
}

.company-card p:not(.eyebrow) {
  font-size: 15px;
}

.site-footer {
  padding: 56px 0 26px;
  background:
    radial-gradient(circle at 8% 14%, rgba(143, 8, 18, 0.22), transparent 17rem),
    linear-gradient(90deg, #090909, #101111 50%, #090909);
  border-top: 1px solid rgba(255, 255, 255, 0.37);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.25fr;
  gap: 62px;
}

.footer-brand img {
  width: 185px;
  padding: 15px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-grid h2 {
  margin: 0 0 20px;
  color: #777b78;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 11px;
  font-size: 10px;
  letter-spacing: 3px;
}

.contact-card {
  position: relative;
  min-height: 64px;
  padding: 13px 18px 13px 56px;
  border-radius: 12px;
  letter-spacing: 1.5px;
}

.contact-card span {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(236, 16, 34, 0.11);
  border-radius: 50%;
}

.contact-card strong {
  display: block;
  color: #777b78;
  font-size: 9px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.33);
}

.footer-bottom p,
.footer-bottom a {
  color: #8e918f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

@media (max-width: 980px) {
  .nav-shell {
    height: auto;
    min-height: 92px;
    grid-template-columns: 220px 1fr;
    padding: 10px 0;
  }

  .primary-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .primary-nav a {
    padding: 10px 0;
  }

  .primary-nav a.active::after {
    bottom: 0;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .hero img {
    min-height: 270px;
  }

  .intro-grid,
  .split-heading,
  .verify-panel,
  .brand-grid,
  .auth-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .auth-layout {
    gap: 36px;
  }

  .intro-actions {
    flex-direction: row;
  }

  .feature-grid,
  .product-grid,
  .footer-grid,
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1120px);
  }

  .nav-shell {
    min-height: auto;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    padding: 8px 0 10px;
  }

  .brand {
    width: 118px;
    height: 50px;
    padding: 5px 10px;
  }

  .brand img {
    max-width: 96px;
    max-height: 42px;
  }

  .primary-nav {
    order: 3;
    grid-column: 1 / -1;
    gap: 14px;
    padding-bottom: 2px;
  }

  .primary-nav a,
  .footer-grid a,
  .footer-bottom a {
    font-size: 9px;
    letter-spacing: 2.1px;
  }

  .primary-nav a {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .primary-nav .auth-link {
    padding: 7px 11px;
  }

  .nav-actions {
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .icon-button {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
  }

  .icon-button::before {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }

  .icon-button::after {
    width: 7px;
  }

  .button-small {
    min-height: 36px;
    width: auto;
    max-width: 158px;
    padding: 9px 14px;
    font-size: 9px;
    letter-spacing: 1.8px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero img {
    min-height: 220px;
  }

  .section-space {
    padding: 58px 0;
  }

  h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .split-heading h2,
  .brand-panel h2,
  .verify-panel h2 {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .feature-grid {
    margin-top: 58px;
  }

  .feature-grid,
  .product-grid,
  .footer-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-panel,
  .verify-panel,
  .auth-panel,
  .contact-panel,
  .company-card {
    padding: 30px 22px;
  }

  .auth-hero {
    padding: 58px 0 70px;
  }

  .contact-hero {
    padding: 58px 0 62px;
  }

  .contact-row {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .contact-row p,
  .contact-row a {
    font-size: 16px;
  }

  .auth-proof span {
    width: 100%;
    text-align: center;
  }

  .footer-bottom,
  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
  }
}
