:root {
  --bg: #050505;
  --panel: #111111;
  --panel-soft: #151515;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(218, 162, 32, 0.38);
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.68);
  --gold: #d7a32b;
  --gold-bright: #f3c65b;
  --red: #ff3b30;
  --green: #39d98a;
  --radius: 16px;
  --max: 1120px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 68% 10%, rgba(215, 163, 43, 0.1), transparent 30%),
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.025), transparent 24%),
    #050505;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
}

body::before {
  inset: 0;
  background: radial-gradient(circle at 54% 22%, rgba(215, 163, 43, 0.1), transparent 34%);
}

body::after {
  right: -80px;
  top: 120px;
  width: 420px;
  height: 780px;
  border-top: 1px solid rgba(215, 163, 43, 0.12);
  border-right: 1px solid rgba(215, 163, 43, 0.08);
  transform: skewY(-12deg);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(var(--max), calc(100vw - 56px));
  min-height: 76px;
  margin: 0 auto;
  padding: 18px 0 8px;
  display: grid;
  grid-template-columns: 286px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  width: max-content;
}

.brand img {
  width: 258px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(215, 163, 43, 0.16));
}

.brand-signature {
  width: 205px;
  margin-top: -8px;
  margin-right: 6px;
  color: var(--gold-bright);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
  text-align: right;
}

.brand-signature span {
  color: #ffffff;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.brand-signature:hover,
.brand-signature:focus-visible {
  color: #ffd86d;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: rgba(245, 242, 234, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.button::after {
  content: ">";
  font-size: 0.95em;
  transform: translateY(-1px);
}

.button-primary {
  color: #120b00;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 15px 42px rgba(215, 163, 43, 0.22);
}

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

.button-header {
  min-height: 42px;
  padding-inline: 18px;
}

.hero-section {
  position: relative;
  width: min(var(--max), calc(100vw - 56px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.02fr;
  align-items: start;
  gap: 16px;
  padding: 42px 0 72px;
  overflow: hidden;
  border-bottom: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 8% 26% 0 36%;
  z-index: -1;
  background: radial-gradient(circle at 58% 45%, rgba(215, 163, 43, 0.1), transparent 46%);
  opacity: 0.9;
}

.hero-backdrop {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 500px;
  padding-top: 56px;
}

.eyebrow {
  display: none;
}

h1 {
  margin: 0 0 14px;
  font-size: 2.72rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-highlight {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1.05;
}

.hero-lead,
.section-heading p,
.info-card p,
.capability-card p,
.result-card p,
.application-card p,
.security-card p,
.cta-copy p,
.timeline p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.section-surface .section-heading p,
.section-surface .capability-card p,
.section-surface .result-card p,
.section-surface .security-card p,
.section-surface .fine-print {
  color: rgba(23, 19, 13, 0.72);
}

.section-surface h2,
.section-surface h3,
.section-surface strong {
  color: #17130d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  min-height: 635px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual::before {
  display: none;
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -12%;
  width: min(705px, 84vw);
  max-width: none;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.62));
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.82) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.82) 86%, transparent 100%);
}

.metric-card {
  position: absolute;
  z-index: 3;
  width: 205px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.metric-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 38px;
  border-bottom: 2px solid rgba(215, 163, 43, 0.58);
  background:
    linear-gradient(135deg, transparent 0 20%, rgba(215, 163, 43, 0.18) 20.4% 22%, transparent 22.4% 42%, rgba(215, 163, 43, 0.2) 42.4% 44%, transparent 44.4% 64%, rgba(215, 163, 43, 0.25) 64.4% 66%, transparent 66.4%);
}

.metric-card span {
  display: block;
  color: rgba(245, 242, 234, 0.76);
  font-size: 0.74rem;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin: 9px 0 5px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.68rem;
  line-height: 1;
}

.metric-card small {
  display: block;
  max-width: 125px;
  color: rgba(245, 242, 234, 0.56);
  font-size: 0.72rem;
  line-height: 1.35;
}

.metric-card-top {
  top: 68px;
  right: -4px;
}

.metric-card-side {
  top: 258px;
  right: -4px;
}

.metric-card-bottom {
  left: 0;
  bottom: 168px;
}

.metric-card-base {
  right: -4px;
  bottom: 62px;
}

.section,
.cta-section {
  position: relative;
  width: min(var(--max), calc(100vw - 56px));
  margin: 0 auto;
  padding: 96px 0 0;
  min-height: min(760px, 86svh);
}

.section::before,
.cta-section::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 50%;
  width: min(240px, 42vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(215, 163, 43, 0.78), transparent);
}

.section-dark {
  background: transparent;
}

.section-surface {
  width: 100%;
  margin: 92px 0 0;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2)) 112px;
  color: #111111;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 163, 43, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
  box-shadow: none;
}

.section-surface::before {
  display: none;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center::after {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-surface .section-heading.center::after {
  width: 56px;
  background: var(--gold);
}

.section-kicker {
  display: none;
}

h2 {
  margin: 0 0 14px;
  font-size: 2.08rem;
  line-height: 1.15;
  font-weight: 800;
}

.card-grid,
.result-grid {
  display: grid;
  gap: 22px;
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.capability-card,
.application-card,
.security-card,
.result-card {
  min-height: 170px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.info-card,
.application-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover,
.application-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 163, 43, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.section-surface .capability-card,
.section-surface .security-card,
.section-surface .result-card {
  border-color: rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
}

.section-surface .capability-card:hover,
.section-surface .security-card:hover,
.section-surface .result-card:hover {
  border-color: rgba(215, 163, 43, 0.28);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.11);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: transparent;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.info-card h3,
.capability-card h3,
.application-card h3,
.security-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.22;
  font-weight: 800;
}

.capability-card {
  min-height: 125px;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: center;
}

.capability-card::before,
.application-card::before,
.security-card::before,
.result-card::before {
  content: "";
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  border: 2px solid var(--green);
  border-radius: 50%;
  background:
    linear-gradient(var(--green), var(--green)) center / 20px 2px no-repeat,
    linear-gradient(90deg, var(--green), var(--green)) center / 2px 20px no-repeat;
  opacity: 0.9;
}

.capability-card h3,
.capability-card p {
  margin: 0;
}

.timeline {
  position: relative;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.timeline li {
  position: relative;
  text-align: center;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% + 36px);
  width: calc(100% - 46px);
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 242, 234, 0.28), var(--gold));
}

.timeline span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.result-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.result-card {
  min-height: 160px;
  text-align: center;
}

.result-card::before {
  display: block;
  margin: 0 auto 18px;
}

.result-card span {
  display: block;
  margin-bottom: 8px;
  color: #9a6706;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(245, 242, 234, 0.48);
  font-size: 0.75rem;
  text-align: center;
}

.application-card {
  min-height: 155px;
  text-align: center;
}

.application-card::before {
  display: block;
  margin: 0 auto 14px;
}

.integration-heading {
  margin: 42px 0 22px;
  text-align: center;
}

.integration-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.integration-strip span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 234, 0.46);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  filter: grayscale(1);
}

.security-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  align-items: center;
}

.security-card h3,
.security-card p {
  margin: 0;
}

.cta-section {
  padding: 96px 0 0;
  min-height: auto;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 44px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(215, 163, 43, 0.08), transparent 56%),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.2;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cta-actions .button-secondary {
  display: none;
}

.site-footer {
  width: min(var(--max), calc(100vw - 56px));
  margin: 0 auto;
  padding: 24px 0 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.site-footer img {
  width: 330px;
  max-width: 82vw;
}

.site-footer p {
  margin: 0;
  color: rgba(245, 242, 234, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(1000px, calc(100vw - 36px));
  }

  .brand img {
    width: 214px;
  }

  .brand-signature {
    width: 170px;
    margin-top: -7px;
    margin-right: 5px;
    font-size: 0.58rem;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-section {
    width: min(1000px, calc(100vw - 36px));
    grid-template-columns: 1fr 0.96fr;
    min-height: 680px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-highlight {
    font-size: 2.18rem;
  }

  .hero-visual img {
    width: min(560px, 72vw);
  }

  .metric-card {
    width: 185px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    padding-top: 14px;
  }

  .nav-links {
    display: none;
  }

  .button-header {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 88px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual img {
    left: 7%;
    width: min(560px, 96vw);
  }

  .metric-card-top,
  .metric-card-side,
  .metric-card-base {
    right: 0;
  }

  .metric-card-bottom {
    left: 0;
  }

  .card-grid-four,
  .card-grid-three,
  .result-grid,
  .integration-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero-section,
  .section,
  .cta-section,
  .site-footer {
    width: min(100vw - 28px, var(--max));
  }

  .brand img {
    width: 178px;
  }

  .brand-signature {
    width: 142px;
    margin-top: -6px;
    margin-right: 4px;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .hero-highlight {
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    overflow: hidden;
  }

  .hero-visual img {
    left: 3%;
    width: 112vw;
  }

  .metric-card {
    width: 160px;
    min-height: 104px;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 1.3rem;
  }

  .metric-card::after {
    display: none;
  }

  .metric-card-top {
    top: 22px;
  }

  .metric-card-side {
    top: 142px;
  }

  .metric-card-bottom {
    bottom: 136px;
  }

  .metric-card-base {
    bottom: 24px;
  }

  .section {
    padding-top: 84px;
    min-height: auto;
  }

  .section-surface {
    width: 100%;
    margin-top: 76px;
    padding: 92px 14px;
  }

  .section-surface::before {
    left: 14px;
    right: 14px;
  }

  h2 {
    font-size: 1.78rem;
  }

  .card-grid-four,
  .card-grid-three,
  .result-grid,
  .integration-strip {
    grid-template-columns: 1fr;
  }

  .info-card,
  .capability-card,
  .application-card,
  .security-card,
  .result-card {
    min-height: auto;
    padding: 22px;
  }

}
