:root {
  --primary: #c9a441;
  --gold-light: #d7b55a;
  --dark: #111111;
  --background: #f7f7f7;
  --text: #222222;
  --accent: #e4c676;
  --white: #ffffff;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.1);
  --glass: rgba(255, 255, 255, 0.76);
  --shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(228, 198, 118, 0.3), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(201, 164, 65, 0.2), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 44%, #ffffff 100%);
  line-height: 1.6;
}

body::before {
  content: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .brand span,
.site-footer .brand span {
  font-size: 1.12rem;
  background: linear-gradient(135deg, var(--primary), #8c6c18 54%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand,
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 10px 26px rgba(201, 164, 65, 0.18);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 14px 24px rgba(201, 164, 65, 0.34));
}

.brand-mark,
.logo-emblem {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(201, 164, 65, 0.28);
}

.logo-lockup {
  justify-content: center;
  width: fit-content;
  margin-bottom: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(201, 164, 65, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  color: #555555;
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
  color: var(--dark);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 32px rgba(201, 164, 65, 0.28);
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: 70px;
  padding-bottom: 82px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8c6c18;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: #4f4f4f;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 20px 44px rgba(201, 164, 65, 0.28);
}

.btn-secondary {
  color: var(--dark);
  border: 1px solid rgba(201, 164, 65, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 164, 65, 0.22);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.chips span,
.hub-features span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(201, 164, 65, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0 14px;
  color: #51420f;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(201, 164, 65, 0.22), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 35% 42%, rgba(228, 198, 118, 0.28), transparent 18rem);
  content: "";
}

.hero-visual::after {
  position: absolute;
  inset: 24px -12px -12px 24px;
  z-index: -2;
  border-radius: 34px;
  border: 1px solid rgba(201, 164, 65, 0.26);
  content: "";
}

.promo-hero-img {
  width: 100%;
  border: 1px solid rgba(201, 164, 65, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.13), 0 0 0 12px rgba(201, 164, 65, 0.06);
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.browser-bar span:nth-child(2) {
  background: var(--gold-light);
}

.browser-bar span:nth-child(3) {
  background: var(--primary);
}

.browser-bar strong {
  margin-left: auto;
  color: #686868;
  font-size: 0.78rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 247, 247, 0.76)),
    url("../img/hub_Dash.png") center / cover;
}

.mockup-grid article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(201, 164, 65, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.06);
}

.app-icon,
.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #111111;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.mockup-grid strong,
.mockup-grid small {
  display: block;
}

.mockup-grid strong {
  color: var(--dark);
}

.mockup-grid small {
  margin-top: 4px;
  color: var(--muted);
}

.floating {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 58px;
}

.ideas-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 96px;
}

.ideas-visual {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 65, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.ideas-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ideas-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(201, 164, 65, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 235, 0.78)),
    radial-gradient(circle at 90% 10%, rgba(228, 198, 118, 0.24), transparent 14rem);
  box-shadow: 0 20px 56px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(14px);
}

.ideas-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #555555;
  font-size: 1.05rem;
}

.ideas-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ideas-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(201, 164, 65, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0 13px;
  color: #5d4812;
  font-weight: 800;
}

.stat-card,
.app-card,
.benefit,
.testimonial-card,
.testimonial-slots,
.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 65, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 244, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(228, 198, 118, 0.12), transparent 12rem);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(14px);
}

.stat-card::after,
.app-card::after,
.benefit::after,
.ideas-copy::after,
.testimonial-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  opacity: 0.2;
  background:
    linear-gradient(135deg, rgba(201, 164, 65, 0.36) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(315deg, rgba(201, 164, 65, 0.22) 25%, transparent 25%) 0 0 / 18px 18px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  content: "";
}

.stat-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 22px;
}

.stat-card strong {
  display: block;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.process-section {
  padding-bottom: 96px;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(201, 164, 65, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 244, 0.8)),
    radial-gradient(circle at 100% 0%, rgba(228, 198, 118, 0.16), transparent 12rem);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.06);
}

.process-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  opacity: 0.18;
  background:
    linear-gradient(135deg, rgba(201, 164, 65, 0.36) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(315deg, rgba(201, 164, 65, 0.22) 25%, transparent 25%) 0 0 / 18px 18px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  content: "";
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.process-card p {
  margin: 14px 0 0;
  color: #5c5c5c;
}

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

.app-card {
  min-height: 286px;
  padding: 24px;
  border-radius: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 164, 65, 0.42);
  box-shadow: 0 24px 58px rgba(201, 164, 65, 0.16);
}

.app-card p {
  margin: 14px 0 0;
  color: #5c5c5c;
}

.hub-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: center;
  padding-top: 110px;
}

.sectors-section {
  padding-top: 54px;
}

.sectors-section .section-heading {
  margin-top: 16px;
  margin-bottom: 34px;
}

.hub-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #555555;
  font-size: 1.08rem;
}

.hub-features,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hub-shot {
  overflow: hidden;
  border: 1px solid rgba(201, 164, 65, 0.2);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hub-shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.benefits {
  padding-top: 98px;
}

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

.benefit {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  padding: 22px;
  color: var(--dark);
  font-weight: 800;
}

.benefit span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(201, 164, 65, 0.14);
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 18px;
  padding-top: 98px;
}

.testimonial-card,
.testimonial-slots {
  border-radius: 26px;
  padding: 30px;
}

blockquote {
  margin: 0 0 24px;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.18;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
}

.testimonial-slots {
  display: grid;
  gap: 14px;
  align-content: center;
}

.testimonial-slots span {
  display: flex;
  min-height: 70px;
  align-items: center;
  border: 1px dashed rgba(201, 164, 65, 0.42);
  border-radius: 18px;
  padding: 0 18px;
  color: #6a5517;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.56);
}

.final-cta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 98px;
  margin-bottom: 88px;
  padding: clamp(34px, 6vw, 74px);
  border-radius: 32px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(56, 45, 14, 0.92)),
    linear-gradient(90deg, rgba(228, 198, 118, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(228, 198, 118, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--primary), var(--accent));
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.final-cta h2 {
  margin-bottom: 22px;
  color: #ffffff;
}

.final-cta .eyebrow {
  color: var(--accent);
}

.final-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--dark);
}

.cta-logo-wrap {
  display: grid;
  place-items: center;
}

.cta-logo-wrap img {
  width: min(170px, 100%);
  filter: drop-shadow(0 24px 38px rgba(228, 198, 118, 0.28));
}

.demo-note {
  display: grid;
  gap: 4px;
  max-width: 660px;
  margin-bottom: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(228, 198, 118, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.demo-note strong {
  color: var(--accent);
}

.site-footer {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  gap: 18px;
  color: #555555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--primary);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .ideas-section,
  .hub-section,
  .testimonial,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    text-align: center;
  }

  .cta-logo-wrap img {
    width: 132px;
  }

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

  .hero-visual {
    order: -1;
  }

  .numbers,
  .apps-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .header-cta {
    display: none;
  }

  .section-pad {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .logo-lockup {
    margin-right: auto;
    margin-left: auto;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    justify-content: center;
  }

  .mockup-grid,
  .numbers,
  .apps-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .mockup-grid article {
    min-height: 106px;
  }

  .hub-section,
  .benefits,
  .testimonial {
    padding-top: 70px;
  }

  .process-section {
    padding-bottom: 70px;
  }

  .demo-note {
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
  }
}
