:root {
  --bg: #08090b;
  --surface: #121418;
  --text: #f1f2f4;
  --muted: #9da2aa;
  --silver: #c9cdd2;
  --gold: #e1a536;
  --gold-light: #ffc761;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 78% 6%, rgba(225, 165, 54, 0.08), transparent 28rem), var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding-block: 120px; }

.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 10px;
  overflow: visible;
  clip: auto;
  color: #111;
  background: var(--gold-light);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.88);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol-crop,
.brand-word-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-symbol-crop {
  width: 51px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(225, 165, 54, 0.09));
}

.brand-symbol-crop img {
  position: absolute;
  top: -14px;
  left: -26px;
  width: 103px;
  max-width: none;
}

.brand-word-crop {
  width: 127px;
  height: 18px;
}

.brand-word-crop img {
  position: absolute;
  top: -79px;
  left: -26px;
  width: 178px;
  max-width: none;
}
.main-nav { display: flex; align-items: center; gap: 34px; }

.main-nav a {
  color: #b8bcc3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 160ms ease;
}

.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }

.main-nav .nav-cta {
  padding: 10px 18px;
  color: #f2f2f2;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
}

.main-nav .nav-cta:hover {
  color: #0a0a0a;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 160px 0 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -260px;
  left: 54%;
  width: 720px;
  height: 720px;
  content: "";
  background: radial-gradient(circle, rgba(225, 165, 54, 0.14), transparent 64%);
  filter: blur(12px);
  animation: hero-glow 7s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 72px;
  align-items: center;
}

.eyebrow, .section-label {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.eyebrow span { width: 30px; height: 1px; background: var(--gold); }

.hero h1 {
  max-width: 730px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.2vw, 5.55rem);
  font-weight: 720;
}

.hero h1 em, .contact h2 em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 34px;
  color: #aeb2ba;
  font-size: 18px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.button {
  display: inline-flex;
  min-height: 51px;
  padding: 13px 21px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), #d38d1e);
  box-shadow: 0 12px 32px rgba(225, 165, 54, 0.18);
}

.button-primary:hover { background: linear-gradient(135deg, #ffd378, #e6a02c); }

.button-secondary {
  color: #e8e9eb;
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
}

.button-secondary:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.3); }

.hero-proof {
  display: flex;
  margin-top: 48px;
  color: #777d85;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span { display: flex; align-items: center; }

.hero-proof span + span::before {
  width: 3px;
  height: 3px;
  margin-inline: 13px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 490px;
  place-items: center;
}

.logo-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 530px);
  overflow: hidden;
  background: #090a0b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  animation: logo-float 7s ease-in-out infinite;
  will-change: transform;
}

.logo-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(112deg, transparent 30%, rgba(255, 255, 255, 0.11) 43%, rgba(255, 199, 97, 0.09) 49%, transparent 62%);
  transform: translateX(-155%);
  animation: logo-sheen 8s ease-in-out 1.2s infinite;
}

.logo-stage img { width: 100%; }

.visual-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(225, 165, 54, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
  will-change: transform;
}

.visual-orbit-one { width: 590px; height: 270px; animation: orbit-clockwise 28s linear infinite; }
.visual-orbit-two { width: 690px; height: 360px; border-color: rgba(201, 205, 210, 0.08); animation: orbit-counterclockwise 36s linear infinite; }

.status-chip {
  position: absolute;
  right: -12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  padding: 11px 15px;
  align-items: center;
  gap: 9px;
  color: #c7cbd0;
  background: rgba(18, 20, 24, 0.92);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.status-chip span {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: status-pulse 2.6s ease-in-out infinite;
}

.hero-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.statement { padding-block: 100px; }

.statement-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 50px;
  align-items: start;
}

.statement-text {
  max-width: 930px;
  margin: 0;
  color: #d2d4d8;
  font-size: clamp(1.8rem, 3.7vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.statement-text strong { color: #fff; font-weight: 650; }

.solutions {
  background: linear-gradient(180deg, #0c0e11, #090a0c);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}

.section-heading h2, .process h2, .values h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
  font-weight: 680;
}

.section-heading > p, .process-intro > p:last-child, .values-copy > p:last-child, .contact-inner > p:not(.section-label) {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.solution-card {
  position: relative;
  display: flex;
  min-height: 420px;
  padding: 28px;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.solution-card::before {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.055), transparent 67%);
}

.solution-card-featured::before { background: radial-gradient(circle, rgba(225, 165, 54, 0.13), transparent 67%); }

.solution-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.22);
}

.solution-card-featured { border-color: rgba(225, 165, 54, 0.27); }
.card-topline { display: flex; align-items: flex-start; justify-content: space-between; }

.product-icon {
  display: grid;
  width: 50px;
  height: 50px;
  color: #c9cdd2;
  background: #171a1f;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-icon-gold {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), #b97216);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(225, 165, 54, 0.16);
}

.product-status {
  padding: 7px 10px;
  color: var(--gold-light);
  background: rgba(225, 165, 54, 0.07);
  border: 1px solid rgba(225, 165, 54, 0.16);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status-muted { color: #a6abb2; background: rgba(255, 255, 255, 0.025); border-color: var(--line); }
.card-number { margin: 58px 0 12px; color: #555b63; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; }
.solution-card h3 { margin-bottom: 16px; font-size: 26px; font-weight: 650; }
.solution-card > p:not(.card-number) { color: #969ca5; font-size: 14px; }

.card-link {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: #c5c9cf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-link b { color: var(--gold-light); font-size: 17px; }
.process-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 110px; }
.process-intro { position: sticky; top: 140px; align-self: start; }
.process-intro h2 { margin-bottom: 27px; }
.process-intro > p:last-child { max-width: 440px; }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.process-steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 20px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span { padding-top: 4px; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 14px; font-style: italic; }
.process-steps h3 { margin-bottom: 9px; font-size: 24px; font-weight: 620; }
.process-steps p { max-width: 530px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.values { padding-top: 40px; }

.values-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  padding: 74px;
  overflow: hidden;
  background: radial-gradient(circle at 2% 100%, rgba(225, 165, 54, 0.11), transparent 32rem), linear-gradient(135deg, #14171b, #0e1013);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.values-panel::after {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(225, 165, 54, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.012), 0 0 0 88px rgba(255, 255, 255, 0.009);
}

.values-copy, .value-list { position: relative; z-index: 1; }
.values h2 { margin-bottom: 25px; }
.value-list { display: flex; flex-direction: column; justify-content: center; }
.value-list div { display: grid; grid-template-columns: 48px 1fr; padding-block: 17px; border-bottom: 1px solid var(--line); }
.value-list div:first-child { border-top: 1px solid var(--line); }
.value-list strong { color: var(--gold); font-size: 10px; letter-spacing: 0.12em; }
.value-list span { color: #d7d9dd; font-size: 14px; font-weight: 600; }

.contact {
  position: relative;
  padding-block: 150px;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 430px;
  content: "";
  background: radial-gradient(circle, rgba(225, 165, 54, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
}

.contact-inner { position: relative; }
.contact h2 { margin-bottom: 26px; }
.contact-inner > p:not(.section-label) { max-width: 620px; margin: 0 auto 34px; }
.button-large { min-height: 58px; padding-inline: 27px; }
.site-footer { background: #07080a; border-top: 1px solid var(--line); }
.footer-main, .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-main { min-height: 125px; }
.footer-brand { transform: scale(0.9); transform-origin: left center; }
.footer-main > p { margin: 0; color: #666c74; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; }
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: #888e96; font-size: 12px; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  min-height: 66px;
  color: #4f555d;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 680ms ease, transform 680ms ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal-delay { transition-delay: 140ms; }
.js .reveal-delay-small { transition-delay: 80ms; }
.js .reveal-delay-large { transition-delay: 160ms; }

.df-spotlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 44%, rgba(225, 165, 54, 0.1), transparent 34rem),
    linear-gradient(180deg, #0b0d10, #08090b);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.df-spotlight::before {
  position: absolute;
  top: 12%;
  right: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(225, 165, 54, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.01), 0 0 0 110px rgba(255, 255, 255, 0.007);
}

.df-spotlight-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: center;
}

.df-title-row {
  display: flex;
  margin: 25px 0 28px;
  align-items: center;
  gap: 14px;
}

.df-product-mark {
  display: grid;
  width: 54px;
  height: 54px;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), #b97216);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 12px 34px rgba(225, 165, 54, 0.17);
  place-items: center;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.df-spotlight h2 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 680;
}

.df-spotlight h2 em,
.df-product-hero h1 em {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.df-spotlight-copy > p:not(.section-label) {
  max-width: 550px;
  color: var(--muted);
  font-size: 16px;
}

.df-feature-pills {
  display: flex;
  margin: 30px 0 34px;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.df-feature-pills li {
  padding: 7px 11px;
  color: #b8bdc4;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.df-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #d8dbe0;
  background: #0c0f13;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 21px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48), 0 0 55px rgba(225, 165, 54, 0.045);
}

.df-preview::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.df-preview-bar {
  display: grid;
  height: 47px;
  padding-inline: 17px;
  grid-template-columns: 8px 8px 8px 1fr auto;
  gap: 7px;
  align-items: center;
  background: #11151a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.df-preview-bar > span {
  width: 7px;
  height: 7px;
  background: #343941;
  border-radius: 50%;
}

.df-preview-bar > span:nth-child(3) { background: var(--gold); }

.df-preview-bar strong {
  margin-left: 10px;
  color: #c8ccd2;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.df-preview-bar small {
  color: #6f7680;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.df-preview-body {
  display: grid;
  min-height: 380px;
  grid-template-columns: 105px 1fr;
}

.df-preview aside {
  display: flex;
  padding: 18px 12px;
  flex-direction: column;
  gap: 7px;
  background: #0a0c0f;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.df-preview aside b {
  display: grid;
  width: 31px;
  height: 31px;
  margin: 0 0 15px 4px;
  color: #16120b;
  background: linear-gradient(135deg, var(--gold-light), #b97216);
  border-radius: 9px;
  place-items: center;
  font-size: 10px;
}

.df-preview aside span {
  padding: 7px 8px;
  color: #616872;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 700;
}

.df-preview aside span.active {
  color: #e1e3e7;
  background: rgba(225, 165, 54, 0.09);
  box-shadow: inset 2px 0 0 var(--gold);
}

.df-schedule {
  min-width: 0;
  padding: 25px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #0d1014;
  background-size: 100% 44px;
}

.df-schedule-head {
  display: flex;
  margin-bottom: 23px;
  align-items: center;
  justify-content: space-between;
}

.df-schedule-head div { display: flex; flex-direction: column; }
.df-schedule-head small { color: #626a74; font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.df-schedule-head strong { color: #e4e6e9; font-size: 14px; }

.df-schedule-head > span {
  padding: 7px 10px;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), #cf881e);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
}

.df-days,
.df-shift-row {
  display: grid;
  grid-template-columns: 74px repeat(5, minmax(24px, 1fr));
  gap: 8px;
}

.df-days {
  margin-bottom: 10px;
  padding-left: 82px;
  grid-template-columns: repeat(5, minmax(24px, 1fr));
}

.df-days span {
  display: flex;
  color: #737a84;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.df-days small { color: #444a52; font-size: 8px; }

.df-shift-row {
  min-height: 45px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.df-shift-row b { color: #747b84; font-size: 8px; font-weight: 700; }

.df-shift-row i {
  display: block;
  height: 24px;
  background: linear-gradient(135deg, #20252c, #171b20);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
}

.df-shift-row i::after {
  display: block;
  width: 40%;
  height: 3px;
  margin: 6px;
  content: "";
  background: #3a414a;
  border-radius: 5px;
}

.df-shift-row i.gold { background: linear-gradient(135deg, rgba(225, 165, 54, 0.28), rgba(130, 79, 15, 0.15)); border-color: rgba(225, 165, 54, 0.26); }
.df-shift-row i.gold::after { background: var(--gold); }
.df-shift-row i.silver { background: linear-gradient(135deg, rgba(201, 205, 210, 0.16), rgba(70, 76, 84, 0.12)); }
.df-shift-row i.silver::after { background: #aeb4bc; }

.df-cora-note {
  display: grid;
  margin-top: 17px;
  padding: 12px;
  grid-template-columns: 31px 1fr auto;
  gap: 10px;
  align-items: center;
  background: linear-gradient(100deg, rgba(225, 165, 54, 0.09), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(225, 165, 54, 0.14);
  border-radius: 10px;
}

.df-cora-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  color: #17120a;
  background: var(--gold-light);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.df-cora-note div { display: flex; min-width: 0; flex-direction: column; }
.df-cora-note strong { color: #d5d8dd; font-size: 9px; }
.df-cora-note small { overflow: hidden; color: #6e7580; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.df-cora-note > b { color: var(--gold); font-size: 14px; }

.df-product-page {
  background:
    radial-gradient(circle at 50% 2%, rgba(225, 165, 54, 0.09), transparent 34rem),
    var(--bg);
}

.df-product-hero {
  position: relative;
  padding: 160px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.df-product-hero::before {
  position: absolute;
  top: 250px;
  left: 50%;
  width: 1050px;
  height: 540px;
  content: "";
  border: 1px solid rgba(225, 165, 54, 0.08);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-8deg);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.008), 0 0 0 140px rgba(255, 255, 255, 0.005);
}

.df-product-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.df-product-kicker {
  display: flex;
  margin-bottom: 27px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.df-product-kicker .df-product-mark { width: 46px; height: 46px; border-radius: 13px; font-size: 14px; }

.df-product-kicker p {
  margin: 0;
  color: #a9aeb5;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.df-product-hero h1 {
  margin-bottom: 27px;
  font-size: clamp(3.7rem, 8vw, 7.5rem);
  font-weight: 720;
}

.df-product-lead {
  max-width: 730px;
  margin: 0 auto 34px;
  color: #a8adb5;
  font-size: 19px;
}

.df-product-actions { justify-content: center; }

.df-product-stage {
  position: relative;
  z-index: 2;
  margin-top: 85px;
}

.df-preview-large {
  width: min(100%, 1030px);
  margin-inline: auto;
  border-radius: 26px;
}

.df-preview-large .df-preview-body { min-height: 520px; grid-template-columns: 155px 1fr; }
.df-preview-large aside { padding: 27px 18px; }
.df-preview-large aside b { width: 40px; height: 40px; margin-bottom: 21px; font-size: 12px; }
.df-preview-large aside span { padding: 9px 11px; font-size: 10px; }
.df-preview-large .df-schedule { padding: 36px 42px; }
.df-preview-large .df-schedule-head strong { font-size: 18px; }
.df-preview-large .df-schedule-head small { font-size: 9px; }
.df-preview-large .df-schedule-head > span { padding: 9px 13px; font-size: 9px; }
.df-preview-large .df-days, .df-preview-large .df-shift-row { grid-template-columns: 105px repeat(5, minmax(42px, 1fr)); gap: 12px; }
.df-preview-large .df-days { padding-left: 117px; grid-template-columns: repeat(5, minmax(42px, 1fr)); }
.df-preview-large .df-shift-row { min-height: 56px; }
.df-preview-large .df-shift-row i { height: 31px; }
.df-preview-large .df-cora-note { margin-top: 23px; padding: 15px; }
.df-preview-large .df-cora-note strong { font-size: 11px; }
.df-preview-large .df-cora-note small { font-size: 8px; }

.df-metrics {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.df-metrics div {
  position: relative;
  display: flex;
  padding: 13px 15px;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 9px;
}

.df-metrics small { color: #656c76; font-size: 8px; font-weight: 700; }
.df-metrics strong { color: #dfe2e6; font-size: 20px; line-height: 1.2; }

.df-metrics i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 4px;
  background: #575e67;
  border-radius: 4px;
}

.df-metrics i.gold { background: var(--gold); }
.df-metrics i.silver { background: #aeb4bc; }

.df-benefits { background: linear-gradient(180deg, #0c0e11, #090a0c); }
.df-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }

.df-benefit-card {
  min-height: 310px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.df-benefit-card > span { color: var(--gold); font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.df-benefit-card h3 { margin: 95px 0 16px; font-size: 26px; font-weight: 650; }
.df-benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }

.df-functions { border-block: 1px solid rgba(255, 255, 255, 0.06); }
.df-functions-heading { display: grid; grid-template-columns: 0.35fr 1.65fr; gap: 60px; margin-bottom: 55px; }
.df-functions-heading h2 { margin: 0; font-size: clamp(2.7rem, 5.2vw, 4.9rem); }
.df-function-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }

.df-function-list article {
  display: grid;
  min-height: 210px;
  padding: 35px;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.df-function-list article:nth-child(odd) { border-right: 1px solid var(--line); }
.df-function-list article > span { color: var(--gold); font-size: 10px; font-weight: 750; letter-spacing: 0.12em; }
.df-function-list h3 { margin-bottom: 13px; font-size: 23px; font-weight: 640; }
.df-function-list p { max-width: 450px; margin: 0; color: var(--muted); font-size: 14px; }

.df-cora { padding-top: 65px; }

.df-cora-panel {
  position: relative;
  display: grid;
  min-height: 410px;
  padding: 65px 75px;
  grid-template-columns: 105px 1fr;
  gap: 45px;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 90% 30%, rgba(225, 165, 54, 0.13), transparent 25rem), linear-gradient(135deg, #14171b, #0d0f12);
  border: 1px solid rgba(225, 165, 54, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.df-cora-symbol {
  display: grid;
  width: 100px;
  height: 100px;
  color: #17120a;
  background: linear-gradient(135deg, #ffcf72, #d18b20);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(225, 165, 54, 0.2);
  place-items: center;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
}

.df-cora-panel > div:nth-child(2) { position: relative; z-index: 1; max-width: 690px; }
.df-cora-panel h2 { margin-bottom: 21px; font-size: clamp(2.4rem, 4.7vw, 4.4rem); }
.df-cora-panel p:last-child { margin: 0; color: var(--muted); font-size: 16px; }

.df-cora-lines {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 390px;
  height: 390px;
  transform: translateY(-50%);
}

.df-cora-lines span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 165, 54, 0.1);
  border-radius: 50%;
}

.df-cora-lines span:nth-child(2) { inset: 45px; border-color: rgba(255, 255, 255, 0.06); }
.df-cora-lines span:nth-child(3) { inset: 90px; border-color: rgba(225, 165, 54, 0.13); }

.legal-page { min-height: 100vh; padding: 150px 0 100px; }
.legal-container { width: min(calc(100% - 48px), 820px); margin-inline: auto; }
.legal-container h1 { margin-bottom: 35px; font-size: clamp(2.8rem, 7vw, 5rem); }
.legal-container h2 { margin: 42px 0 12px; font-size: 22px; }
.legal-container p, .legal-container li { color: #afb4bc; }

.legal-note {
  margin-bottom: 42px;
  padding: 20px 22px;
  color: #e9d3a6 !important;
  background: rgba(225, 165, 54, 0.08);
  border: 1px solid rgba(225, 165, 54, 0.22);
  border-radius: 14px;
}

.legal-back { display: inline-flex; margin-top: 45px; color: var(--gold-light); font-size: 13px; font-weight: 700; }

@keyframes hero-glow {
  0%, 100% { opacity: 0.62; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes logo-float {
  0%, 100% { transform: perspective(1100px) translateY(0) rotateY(-5deg) rotateX(2deg); }
  50% { transform: perspective(1100px) translateY(-10px) rotateY(-3deg) rotateX(1deg); }
}

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

@keyframes logo-sheen {
  0%, 58% { transform: translateX(-155%); opacity: 0; }
  66% { opacity: 1; }
  82%, 100% { transform: translateX(155%); opacity: 0; }
}

@keyframes orbit-clockwise {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}

@keyframes orbit-counterclockwise {
  from { transform: rotate(28deg); }
  to { transform: rotate(-332deg); }
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1.16); box-shadow: 0 0 18px var(--gold-light); }
}

@media (max-width: 980px) {
  .section { padding-block: 90px; }
  .hero { padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: 410px; }
  .logo-stage { width: min(78vw, 540px); transform: none; animation-name: logo-float-flat; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card:last-child { grid-column: 1 / -1; min-height: 350px; }
  .process-grid { gap: 55px; }
  .values-panel { gap: 55px; padding: 55px; }
  .df-spotlight-grid { grid-template-columns: 1fr; gap: 60px; }
  .df-spotlight-copy { max-width: 690px; }
  .df-preview { width: min(100%, 760px); margin-inline: auto; }
  .df-product-hero { padding-top: 140px; }
  .df-preview-large .df-preview-body { min-height: 460px; grid-template-columns: 125px 1fr; }
  .df-preview-large .df-schedule { padding: 30px; }
  .df-benefit-card { padding: 27px; }
  .df-cora-panel { padding: 55px; }
}

@media (max-width: 760px) {
  .container, .legal-container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { min-height: 72px; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    top: 71px;
    right: 15px;
    left: 15px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(14, 16, 19, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { margin-top: 5px; text-align: center; }
  .brand { gap: 7px; transform: scale(0.9); transform-origin: left center; }
  .hero { min-height: 0; padding: 125px 0 70px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-visual { min-height: 300px; }
  .visual-orbit-one { width: 420px; height: 210px; }
  .visual-orbit-two { width: 500px; height: 280px; }
  .status-chip { right: 0; bottom: -2px; }
  .hero-proof { display: none; }
  .statement { padding-block: 78px; }
  .statement-grid, .section-heading, .process-grid, .values-panel { grid-template-columns: 1fr; }
  .statement-grid, .section-heading { gap: 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card:last-child { min-height: 380px; grid-column: auto; }
  .process-intro { position: static; }
  .values-panel { gap: 42px; padding: 37px 25px; border-radius: 22px; }
  .contact { padding-block: 110px; }
  .footer-main { padding-block: 35px; flex-direction: column; gap: 20px; }
  .footer-brand { transform-origin: center; }
  .df-spotlight-grid { gap: 45px; }
  .df-spotlight h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .df-preview-body, .df-preview-large .df-preview-body { min-height: 410px; grid-template-columns: 1fr; }
  .df-preview aside { display: none; }
  .df-schedule, .df-preview-large .df-schedule { padding: 24px 18px; }
  .df-preview-large .df-days, .df-preview-large .df-shift-row { grid-template-columns: 74px repeat(5, minmax(24px, 1fr)); gap: 7px; }
  .df-preview-large .df-days { padding-left: 81px; grid-template-columns: repeat(5, minmax(24px, 1fr)); }
  .df-preview-large .df-shift-row { min-height: 48px; }
  .df-product-hero { padding: 120px 0 85px; }
  .df-product-hero h1 { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .df-product-lead { font-size: 17px; }
  .df-product-stage { margin-top: 55px; }
  .df-benefit-grid { grid-template-columns: 1fr; }
  .df-benefit-card { min-height: 250px; }
  .df-benefit-card h3 { margin-top: 60px; }
  .df-functions-heading { grid-template-columns: 1fr; gap: 18px; }
  .df-function-list { grid-template-columns: 1fr; }
  .df-function-list article:nth-child(odd) { border-right: 0; }
  .df-function-list article { min-height: 0; padding: 30px 5px; }
  .df-cora-panel { padding: 42px 28px; grid-template-columns: 1fr; gap: 28px; }
  .df-cora-symbol { width: 75px; height: 75px; font-size: 31px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 250px; }
  .logo-stage { width: 96vw; border-radius: 18px; }
  .status-chip { display: none; }
  .process-steps li { grid-template-columns: 42px 1fr; }
  .footer-bottom { padding-block: 20px; flex-direction: column; gap: 7px; }
  .df-title-row { margin-bottom: 22px; }
  .df-feature-pills { margin-block: 24px 30px; }
  .df-preview-bar strong { display: none; }
  .df-preview-bar { grid-template-columns: 8px 8px 8px 1fr; }
  .df-preview-bar small { grid-column: 4; justify-self: end; }
  .df-days, .df-shift-row, .df-preview-large .df-days, .df-preview-large .df-shift-row { grid-template-columns: 58px repeat(5, minmax(19px, 1fr)); gap: 5px; }
  .df-days, .df-preview-large .df-days { padding-left: 63px; grid-template-columns: repeat(5, minmax(19px, 1fr)); }
  .df-schedule-head > span { display: none; }
  .df-cora-note small { display: none; }
  .df-product-kicker { flex-wrap: wrap; }
  .df-product-kicker p { width: 100%; order: -1; }
  .df-metrics { grid-template-columns: 1fr 1fr; }
  .df-metrics div:last-child { display: none; }
  .df-product-actions { flex-direction: column; }
  .df-function-list article { grid-template-columns: 36px 1fr; }
}

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