/* Axelo homepage (v4: shared backdrop). It extends the TacticalCodeworks shared system
   without changing the live Axelo privacy route. */

.axelo-home {
  --axelo-blue: rgb(29, 132, 255);
  --axelo-cyan: rgb(83, 207, 255);
  --axelo-violet: rgb(92, 78, 255);
  background: #020308;
}

.axelo-home .backdrop {
  background:
    radial-gradient(ellipse 46vmax 34vmax at 4% 22%, rgba(30, 110, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 40vmax 30vmax at 96% 40%, rgba(30, 110, 255, 0.16), transparent 66%),
    radial-gradient(ellipse 44vmax 30vmax at 50% 108%, rgba(30, 26, 120, 0.22), transparent 68%),
    radial-gradient(ellipse 130vmax 90vmax at 50% 46%, transparent, rgba(1, 2, 6, 0.92) 84%),
    #020308;
}
@media (max-width: 700px) {
  .axelo-home .backdrop {
  background:
    radial-gradient(ellipse 78vmin 60vmin at 0% 16%, rgba(30, 110, 255, 0.16), transparent 60%),
    radial-gradient(ellipse 60vmin 44vmin at 100% 42%, rgba(30, 110, 255, 0.14), transparent 66%),
    radial-gradient(ellipse 130vmax 90vmax at 50% 46%, transparent, rgba(1, 2, 6, 0.92) 84%),
    #020308;
    }
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #020308;
  background: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.axelo-home header.site { position: fixed; left: 0; right: 0; top: 0; }
.axelo-home main { padding-top: 66px; }
.axelo-home .nav { min-height: 65px; }

.axelo-home .nav-link {
  transition: color 0.18s ease;
}

.axelo-home .nav-link:hover { color: var(--axelo-cyan); }

.axelo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: center;
  gap: clamp(46px, 7vw, 88px);
  padding-top: 56px;
  padding-bottom: 38px;
}

.axelo-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

/* Hero icon sits in the same steel rim as the page's boxes. The ring is drawn ABOVE the
   image (an <img> can't carry a pseudo-element) and masked to the outer 2px only. */
.axelo-icon-frame {
  --rim-rgb: 214, 228, 248;
  position: relative;
  display: block;
  flex: none;
  width: 82px;
  height: 82px;
  border-radius: 21px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 16px 36px rgba(0, 0, 0, 0.45);
}

.axelo-icon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(var(--rim-rgb), 0.9) 0%,
    rgba(var(--rim-rgb), 0.36) 30%,
    rgba(var(--rim-rgb), 0.2) 55%,
    rgba(var(--rim-rgb), 0.32) 80%,
    rgba(var(--rim-rgb), 0.62) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.axelo-icon {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}

.axelo-kicker,
.axelo-maker,
.axelo-mini-label {
  font-family: var(--display);
  text-transform: uppercase;
}

.axelo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.axelo-kicker svg { width: 17px; height: 17px; flex: none; margin-top: -3px; }

.axelo-maker {
  margin-top: 3px;
  color: var(--steel-3);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.axelo-home h1 {
  max-width: 8.2em;
  font-size: clamp(3rem, 6.1vw, 5.2rem);
  background: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--axelo-blue);
  filter: drop-shadow(0 8px 24px rgba(0, 106, 255, 0.18));
}

.axelo-home .lede {
  max-width: 31em;
  color: #ffffff;
}

.axelo-hero-preview {
  position: relative;
  width: min(100%, 410px);
  margin: 0 auto;
}

.axelo-hero-preview::before {
  content: "";
  position: absolute;
  inset: 10% -8% 4%;
  z-index: -1;
  border-radius: 44%;
  background: radial-gradient(ellipse, rgba(34, 123, 255, 0.38), rgba(34, 123, 255, 0.05) 52%, transparent 72%);
  filter: blur(30px);
}

.axelo-hero-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.axelo-shot-title {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--axelo-blue);
}

.axelo-hero-preview img {
  display: block;
  width: min(100%, 340px);
  height: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.55));
}

.axelo-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  border-radius: 24px;
}

.axelo-proof-strip p {
  min-height: 148px;
  padding: 28px 26px;
}

.axelo-proof-strip strong,
.axelo-proof-strip span {
  display: block;
}

.axelo-proof-strip strong {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  /* same blue gradient as the numerals and shot titles */
  background: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--axelo-blue);
}

.axelo-proof-strip span {
  color: var(--steel-2);
  font-size: 15px;
  line-height: 1.68;
}

.axelo-section { padding-top: 82px; padding-bottom: 24px; }

.axelo-section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.axelo-section-head-center {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

/* Section labels in the Axelo light blue (hero gradient mid-stop), not steel.
   30% larger than the shared site label, and without the trailing hairline. */
.axelo-home .section-tag {
  color: #39a6ff;
  font-size: 17px;
}
.axelo-home .section-tag::before {
  width: 10px;
  height: 10px;
  background: var(--axelo-blue);
}
.axelo-home .section-tag::after { display: none; }
.axelo-section-head-center .section-tag { justify-content: center; }

.axelo-section-head h2,
.axelo-feature-pair h2,
.axelo-privacy-panel h2 {
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.axelo-section-head > p:last-child,
.axelo-feature-pair article > p:last-child,
.axelo-privacy-copy > p:last-child {
  margin-top: 18px;
  color: var(--steel-2);
  font-size: 17px;
  line-height: 1.68;
}

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

.axelo-flow-card {
  min-height: 230px;
  padding: 30px 28px;
  border-radius: 24px;
  transition: transform 0.2s ease;
}

.axelo-flow-card:hover {
  --rim-rgb: 128, 186, 255;
  transform: translateY(-3px);
}

/* Step numeral: big display digits in the Axelo blue gradient (same as the shot titles) */
.axelo-numeral,
.axelo-index {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--axelo-blue);
}

.axelo-index {
  display: block;
  margin-bottom: 20px;
  font-size: 34px;
}

.axelo-flow-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.axelo-flow-card p {
  color: var(--steel-2);
  font-size: 15px;
  line-height: 1.68;
}

.axelo-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.axelo-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 30px 22px 26px;
  border-radius: 28px;
  text-align: center;
}

.axelo-shot .axelo-shot-title {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
}

.axelo-shot img {
  display: block;
  width: min(100%, 300px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
}

.axelo-shot figcaption { padding: 24px 6px 0; text-align: center; }
.axelo-shot figcaption strong,
.axelo-shot figcaption span { display: block; }

.axelo-shot figcaption strong {
  color: #ffffff;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.axelo-shot figcaption span {
  margin-top: 6px;
  color: var(--steel-3);
  font-size: 13.5px;
  line-height: 1.5;
}

.axelo-feature-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.axelo-feature-pair article {
  min-height: 320px;
  padding: 38px 36px;
  border-radius: 28px;
}

.axelo-mini-label {
  margin-bottom: 28px;
  color: var(--axelo-cyan);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.axelo-feature-pair h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }

/* Privacy panel: layout only, the box itself comes from .axelo-rim */
.axelo-privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 54px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 30px;
}

/* Axelo box: every panel/card on this page. Dark glass fill + a 2px steel edge (cool, not
   cream) lit from the top-left, drawn by a masked pseudo-element so it follows the corner
   radius exactly. --rim-rgb lets a card tint the edge (flow cards go blue on hover). */
.axelo-rim {
  --rim-rgb: 214, 228, 248;
  position: relative;
  isolation: isolate;
  border: 0;
  background: rgba(7, 10, 17, 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 30px 70px rgba(0, 0, 0, 0.42);
}

.axelo-rim::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(var(--rim-rgb), 0.9) 0%,
    rgba(var(--rim-rgb), 0.36) 30%,
    rgba(var(--rim-rgb), 0.2) 55%,
    rgba(var(--rim-rgb), 0.32) 80%,
    rgba(var(--rim-rgb), 0.62) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Privacy points: numbered rows (same 01/02/03 motif as the flow cards), spaced, no
   nested boxes and no drawn dividers inside the panel */
.axelo-privacy-list {
  list-style: none;
  counter-reset: axelo-privacy;
}

.axelo-privacy-list li {
  counter-increment: axelo-privacy;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px 0;
}

.axelo-privacy-list li:first-child { padding-top: 0; }
.axelo-privacy-list li:last-child { padding-bottom: 0; }

.axelo-privacy-list li::before {
  content: counter(axelo-privacy, decimal-leading-zero);
  grid-row: 1 / span 2;
  padding-top: 1px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #8be4ff 0%, #39a6ff 42%, #1767ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--axelo-blue);
}

.axelo-privacy-list strong,
.axelo-privacy-list span {
  display: block;
  grid-column: 2;
}

.axelo-privacy-list strong {
  padding-top: 4px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.axelo-privacy-list span {
  margin-top: 6px;
  color: var(--steel-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* .contact p (site-wide) outranks .axelo-mini-label, so restate size + colour here */
.axelo-contact .axelo-mini-label { margin-bottom: 10px; font-size: 15px; color: var(--axelo-cyan); }
.axelo-contact h2 { margin-bottom: 8px; }

@media (max-width: 900px) {
  .axelo-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    gap: 38px;
  }

  .axelo-proof-strip,
  .axelo-flow { grid-template-columns: 1fr; }

  .axelo-proof-strip p { min-height: 0; }
  .axelo-flow-card { min-height: 0; }

  .axelo-privacy-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .axelo-home .nav { gap: 16px; }
  .axelo-home .nav-right { gap: 18px; }
  .axelo-home .nav-optional { display: none; }

  .axelo-hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .axelo-hero-copy { text-align: center; }
  .axelo-lockup,
  .axelo-home .cta-row { justify-content: center; }
  .axelo-home h1,
  .axelo-home .lede { margin-inline: auto; }
  .axelo-hero-preview { width: min(100%, 330px); }

  .axelo-shots {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
  }

  .axelo-feature-pair { grid-template-columns: 1fr; }
  .axelo-feature-pair article { min-height: 0; }
}

@media (max-width: 480px) {
  .axelo-home .wordmark { font-size: 12px; letter-spacing: 0.15em; }
  .axelo-home .nav-right { gap: 13px; }
  .axelo-home .nav-link { font-size: 12.5px; }
  .axelo-icon-frame { width: 70px; height: 70px; border-radius: 18px; }
  .axelo-home h1 { font-size: clamp(2.65rem, 14vw, 3.6rem); }
  .axelo-section { padding-top: 64px; }
  .axelo-flow-card,
  .axelo-feature-pair article { padding: 28px 24px; }
  .axelo-privacy-panel { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .axelo-flow-card { transition: none; }
  .axelo-flow-card:hover { transform: none; }
}

/* App Store button: Apple glyph sits on the cap height of the uppercase label */
.axelo-home .btn .bi { width: 16px; height: 16px; margin: -3px 9px 0 0; vertical-align: middle; }

/* Reduce both gaps around the privacy panel by twenty percent. */
.axelo-section--closer-before { padding-top: 65.6px; }
.axelo-section--closer-after { padding-bottom: 19.2px; }
@media (max-width: 480px) {
  .axelo-section--closer-before { padding-top: 51.2px; }
}
