@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700;800&family=Bebas+Neue&display=swap");

:root {
  --black: #0c0d10;
  --charcoal: #17191f;
  --red: #c81f2d;
  --red-soft: #ee3f4b;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #6b7384;
  --line: rgba(12, 13, 16, 0.12);
  --radius: 22px;
  --shadow: rgba(7, 9, 14, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "Archivo", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  background: var(--paper);
  background-image:
    radial-gradient(circle at 12% 12%, rgba(200, 31, 45, 0.09), transparent 36%),
    radial-gradient(circle at 84% 14%, rgba(23, 25, 31, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 244, 248, 0.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Crect width='180' height='180' fill='none'/%3E%3Cg opacity='0.2'%3E%3Ccircle cx='42' cy='42' r='3' fill='%23c81f2d'/%3E%3Ccircle cx='132' cy='128' r='3' fill='%2317191f'/%3E%3Cpath d='M20 88h32' stroke='%23c81f2d' stroke-width='2'/%3E%3Cpath d='M128 62h30' stroke='%2317191f' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 100% 100%, 180px 180px;
}

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

h1,
h2,
h3,
.brand-mark,
.orb-title,
.secret-note {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  font-size: 1.65rem;
  color: var(--red);
}

.brand-tag {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 0.52rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--red), var(--red-soft));
  box-shadow: 0 10px 18px rgba(200, 31, 45, 0.32);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 4.6rem 0 3.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(200, 31, 45, 0.12), transparent 40%),
    radial-gradient(circle at 78% 82%, rgba(23, 25, 31, 0.1), transparent 44%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: repeating-linear-gradient(
    90deg,
    #1f9d53 0 24px,
    #ffffff 24px 48px,
    #c81f2d 48px 72px
  );
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--red);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.1;
  color: var(--charcoal);
}

.hero h1 .accent {
  color: var(--red);
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
}

.quick-features {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.quick-features div {
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-actions {
  margin: 1.55rem 0 1.35rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.45rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.24s ease;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(120deg, var(--red), var(--red-soft));
  box-shadow: 0 16px 26px rgba(200, 31, 45, 0.32);
}

.btn.ghost {
  border: 2px solid var(--black);
  color: var(--black);
  background: rgba(255, 255, 255, 0.76);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.8rem;
}

.hero-proof div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
}

.hero-proof strong {
  display: block;
  font-size: 0.97rem;
  color: var(--charcoal);
}

.hero-proof span {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.secret-badge {
  width: min(400px, 100%);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 2px solid rgba(12, 13, 16, 0.08);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(160deg, #0a0b0e, #181b22);
  box-shadow: 0 22px 34px var(--shadow);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 1.2rem;
}

.secret-top {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
}

.secret-bottom {
  margin: 0.2rem 0 0;
  color: #f15a63;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem);
}

.secret-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 20px var(--shadow);
  color: var(--red);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.1;
  padding: 0.95rem 1.05rem;
}

.offer-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 18px 30px var(--shadow);
  padding: 1.5rem;
}

.offer-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--charcoal);
}

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

.mini-list {
  list-style: none;
  margin: 1rem 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.45rem;
  font-weight: 700;
  color: #303646;
}

.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.1rem;
  line-height: 1;
}

.cta-bar {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.86rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--red), var(--red-soft));
  box-shadow: 0 16px 26px rgba(200, 31, 45, 0.3);
}

.cta-bar:hover {
  transform: translateY(-1px);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(235, 237, 242, 0.8), rgba(246, 247, 249, 0.92));
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.82rem, 3.2vw, 2.42rem);
  color: var(--charcoal);
}

.text-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px var(--shadow);
  padding: 1.4rem;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 20px var(--shadow);
  padding: 1.4rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card h3 {
  margin-top: 0;
  color: var(--charcoal);
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 28px rgba(7, 9, 14, 0.24);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
}

.step {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 18px var(--shadow);
  padding: 1.3rem;
}

.step span {
  color: var(--red);
  font-weight: 800;
}

.step h3 {
  margin: 0.35rem 0 0.4rem;
  color: var(--charcoal);
}

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

.career-cta {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.95rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(200, 31, 45, 0.35);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(251, 232, 234, 0.95));
  padding: 1.2rem 1.35rem;
}

.career-cta p {
  margin: 0;
}

.inline-link {
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid rgba(200, 31, 45, 0.5);
}

.inline-link:hover {
  color: #a91320;
  border-bottom-color: #a91320;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 9px 16px var(--shadow);
  padding: 1.05rem;
  display: grid;
  gap: 0.86rem;
}

.contact-card strong {
  color: var(--charcoal);
}

.contact-card span {
  color: var(--muted);
}

.form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 26px var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(12, 13, 16, 0.22);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.97rem;
  background: #fff;
  color: var(--black);
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(200, 31, 45, 0.2);
  border-color: var(--red);
}

.site-footer {
  padding: 2.4rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(239, 240, 244, 0.88), rgba(247, 247, 249, 0.94));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.footer-grid strong {
  color: var(--charcoal);
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: var(--muted);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.3rem;
}

.footer-bottom {
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal {
  padding: 3.3rem 0 4rem;
}

.legal h1 {
  margin-top: 0;
  color: var(--charcoal);
}

.legal h2 {
  color: var(--red);
  margin-top: 1.8rem;
}

.legal p {
  color: #4f5a70;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    right: 4%;
    top: 74px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 20px var(--shadow);
    padding: 0.85rem 1.05rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .text-panel,
  .form,
  .offer-card {
    padding: 1.2rem;
  }

  .secret-badge {
    width: min(310px, 100%);
  }

  .career-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .card,
  .nav-cta,
  .cta-bar {
    transition: none;
  }
}
