/* ============================================================
   Royce Corporation Private Limited — style.css
   Palette: deep navy · white · gold  |  Type: Fraunces + Manrope
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #060d1a;
  --navy-900: #0a1628;
  --navy-850: #0c1b31;
  --navy-800: #0f2038;
  --navy-700: #14294a;

  --gold-300: #e9cd8a;
  --gold-400: #ddb965;
  --gold-500: #c9a24b;
  --gold-600: #a88434;

  --white: #ffffff;
  --text-100: #f2f5fa;
  --text-300: #c7d1e0;
  --text-500: #97a6bf;

  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(201, 162, 75, 0.28);
  --glass: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-900: clamp(2.5rem, 4.6vw + 1rem, 4.35rem);
  --fs-800: clamp(1.95rem, 2.6vw + 0.9rem, 3rem);
  --fs-700: clamp(1.45rem, 1.4vw + 0.9rem, 1.9rem);
  --fs-600: 1.3rem;
  --fs-500: 1.125rem;
  --fs-400: 1rem;
  --fs-300: 0.9rem;
  --fs-200: 0.78rem;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --container: 1200px;
  --sect: clamp(4.5rem, 8.5vw, 7.5rem);

  --shadow-card: 0 18px 44px -18px rgba(2, 6, 14, 0.7);
  --shadow-gold: 0 12px 34px -12px rgba(201, 162, 75, 0.45);

  --ease: cubic-bezier(0.22, 0.85, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: 1.7;
  color: var(--text-300);
  background-color: var(--navy-950);
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(35, 74, 128, 0.30), transparent 62%),
    radial-gradient(900px 560px at -12% 12%, rgba(201, 162, 75, 0.10), transparent 58%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Clearance so the fixed footer bar never covers page/footer content */
  padding-bottom: 64px;
}

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

img {
  height: auto;
}


a {
  color: var(--gold-300);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold-400);
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.14;
  color: var(--text-100);
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-900);
  font-weight: 590;
}

h2 {
  font-size: var(--fs-800);
}

h3 {
  font-size: var(--fs-700);
}

h4 {
  font-size: var(--fs-600);
  font-family: var(--font-body);
  font-weight: 700;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(201, 162, 75, 0.32);
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 1rem;
  color: var(--navy-950);
}

/* ---------- Layout primitives ---------- */
.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section {
  padding-block: var(--sect);
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0) 70%);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.section-head.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.lede {
  margin-top: 1.1rem;
  font-size: var(--fs-500);
  color: var(--text-500);
  max-width: 62ch;
}

.section-head.center .lede {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.g-2 {
  grid-template-columns: repeat(2, 1fr);
}

.g-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-size: var(--fs-300);
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 55%, var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(201, 162, 75, 0.55);
  color: var(--navy-950);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-gold);
  color: var(--gold-300);
}

.btn-ghost:hover {
  background: rgba(201, 162, 75, 0.10);
  border-color: var(--gold-500);
  transform: translateY(-2px);
  color: var(--gold-300);
}

.btn-lg {
  padding: 1.1rem 2.3rem;
  font-size: var(--fs-400);
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: var(--fs-300);
  letter-spacing: 0.03em;
  color: var(--gold-300);
}

.text-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 13, 26, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-100);
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.2vw, 1rem);
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  font-size: clamp(0.8rem, 1.05vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-300);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text-100);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--gold-300);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-300);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding-top: clamp(9rem, 16vw, 12.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 13, 26, 0) 55%, var(--navy-950)),
    radial-gradient(760px 480px at 74% 30%, rgba(201, 162, 75, 0.13), transparent 62%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.6rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(201, 162, 75, 0.07);
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.6rem;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title em {
  font-style: italic;
  font-weight: 480;
  background: linear-gradient(115deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: var(--fs-500);
  color: var(--text-500);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-300);
  color: var(--text-500);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-meta svg {
  width: 15px;
  height: 15px;
  color: var(--gold-400);
  flex: none;
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-visual>img {
  width: 118%;
  max-width: none;
  margin-left: -6%;
  animation: floaty 11s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(12, 22, 40, 0.62);
  border: 1px solid var(--line-gold);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-300);
  line-height: 1;
}

.hero-card span {
  font-size: var(--fs-200);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-500);
  font-weight: 700;
}

.hero-card.hc-1 {
  top: 8%;
  right: 2%;
  animation: floaty 9s ease-in-out infinite 0.8s;
}

.hero-card.hc-2 {
  bottom: 10%;
  left: -2%;
  animation: floaty 10s ease-in-out infinite 1.6s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.stat {
  padding: clamp(1.6rem, 3vw, 2.4rem) 1.4rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 590;
  color: var(--gold-300);
  line-height: 1.05;
}

.stat-label {
  display: block;
  margin-top: 0.55rem;
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-500);
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: 0 26px 54px -20px rgba(2, 6, 14, 0.85);
}

.card:hover::before {
  opacity: 1;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(201, 162, 75, 0.20), rgba(201, 162, 75, 0.05));
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
  margin-bottom: 1.3rem;
}

.icon-badge svg {
  width: 25px;
  height: 25px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--text-500);
  font-size: var(--fs-300);
}

.card .card-list {
  margin: 1rem 0 1.2rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: var(--fs-300);
  color: var(--text-300);
}

.card .card-list li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.card .card-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  transform: rotate(45deg) translateY(-1px);
  background: var(--gold-500);
}

/* checklist variant */
.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text-300);
}

.check-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  margin-top: 0.2rem;
}

.check-list strong {
  color: var(--text-100);
}

/* ---------- Chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: var(--fs-300);
  font-weight: 600;
  color: var(--text-300);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.chip:hover {
  border-color: var(--line-gold);
  color: var(--gold-300);
}

/* ---------- Service rows (services page) ---------- */
.service-block {
  scroll-margin-top: 110px;
}

.service-block+.service-block {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.service-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-400);
  letter-spacing: 0.04em;
}

/* ---------- Visual frame ---------- */
.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow-card);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 84px;
  height: 84px;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
  border-top-left-radius: var(--radius-lg);
  opacity: 0.7;
  pointer-events: none;
}

.visual-frame img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.step:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 590;
  line-height: 1;
  background: linear-gradient(160deg, var(--gold-300), rgba(201, 162, 75, 0.25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: var(--fs-300);
  color: var(--text-500);
}

.step-meta {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(201, 162, 75, 0.25);
  font-size: var(--fs-200);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-400);
}

/* ---------- Timeline (about) ---------- */
.timeline {
  position: relative;
  margin-top: 1rem;
  padding-left: 2rem;
  display: grid;
  gap: 2.1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-500), rgba(201, 162, 75, 0.06));
}

.tl-item {
  position: relative;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.42rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 2px solid var(--gold-400);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-300);
}

.tl-item h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0.25rem 0 0.3rem;
}

.tl-item p {
  font-size: var(--fs-300);
  color: var(--text-500);
  max-width: 58ch;
}

/* ---------- Testimonials ---------- */
.t-slider {
  position: relative;
}

.t-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(100%, 460px);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.4rem 0.2rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-600) transparent;
}

.t-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.t-quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold-500);
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

.t-card blockquote {
  font-size: var(--fs-400);
  color: var(--text-300);
  flex: 1;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-950);
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
}

.t-person strong {
  display: block;
  color: var(--text-100);
  font-size: var(--fs-300);
}

.t-person span {
  font-size: var(--fs-200);
  color: var(--text-500);
  letter-spacing: 0.02em;
}

.t-nav {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  margin-top: 0.4rem;
}

.t-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.t-btn:hover {
  background: rgba(201, 162, 75, 0.12);
  transform: translateY(-2px);
}

.t-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Logo strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  align-items: center;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--text-500);
  opacity: 0.8;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-item::before {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold-600);
  opacity: 0.7;
}

.logo-item:hover {
  color: var(--gold-300);
  opacity: 1;
}

.strip-label {
  text-align: center;
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 1.8rem;
}

/* ---------- Projects grid ---------- */
.project-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
}

.project-media {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-media img {
  transform: scale(1.045);
}

.project-body {
  padding: 1.7rem 1.7rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.project-tags span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.project-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.project-body>p {
  font-size: var(--fs-300);
  color: var(--text-500);
  flex: 1;
}

.project-result {
  margin-top: 1.3rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid var(--line-gold);
  font-size: var(--fs-300);
  color: var(--text-300);
}

.project-result strong {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-right: 0.4rem;
}

/* ---------- Compare table ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.015);
  font-size: var(--fs-300);
}

.compare-table th,
.compare-table td {
  padding: 1.05rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table thead th {
  font-size: var(--fs-200);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(201, 162, 75, 0.07);
}

.compare-table tbody th {
  font-weight: 700;
  color: var(--text-100);
  width: 34%;
}

.compare-table td {
  color: var(--text-500);
}

.compare-table td.yes {
  color: var(--gold-300);
  font-weight: 700;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 840px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass);
  transition: border-color 0.3s var(--ease);
}

.faq-item.open {
  border-color: var(--line-gold);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-500);
  font-weight: 700;
  color: var(--text-100);
}

.faq-q .faq-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq-icon svg {
  width: 15px;
  height: 15px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 162, 75, 0.14);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a>div {
  overflow: hidden;
}

.faq-a p {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-500);
  font-size: var(--fs-400);
  max-width: 68ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius-lg) + 6px);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(620px 300px at 50% -30%, rgba(201, 162, 75, 0.22), transparent 70%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-gold);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::before {
  top: -110px;
  left: -80px;
}

.cta-band::after {
  bottom: -120px;
  right: -70px;
}

.cta-band h2 {
  max-width: 21ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 56ch;
  margin: 1.1rem auto 0;
  color: var(--text-500);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(8.5rem, 14vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 340px at 82% 0%, rgba(35, 74, 128, 0.28), transparent 62%),
    radial-gradient(560px 300px at 8% 30%, rgba(201, 162, 75, 0.10), transparent 60%);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  list-style: none;
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 1.4rem;
}

.crumbs a {
  color: var(--text-500);
}

.crumbs a:hover {
  color: var(--gold-300);
}

.crumbs li+li::before {
  content: "/";
  margin-right: 0.55rem;
  color: var(--gold-600);
}

.crumbs [aria-current="page"] {
  color: var(--gold-300);
}

.page-hero .lede {
  font-size: var(--fs-500);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: var(--fs-300);
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.45rem;
}

.field label .req {
  color: var(--gold-400);
}

.input,
.textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(6, 13, 26, 0.55);
  color: var(--text-100);
  font-family: var(--font-body);
  font-size: var(--fs-400);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(151, 166, 191, 0.55);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.hint {
  font-size: var(--fs-200);
  color: var(--text-500);
  margin-top: 0.4rem;
}

.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-300);
  font-weight: 600;
}

.form-status.ok {
  display: block;
  background: rgba(94, 190, 131, 0.12);
  border: 1px solid rgba(94, 190, 131, 0.4);
  color: #9fe0ba;
}

.form-status.err {
  display: block;
  background: rgba(224, 122, 122, 0.10);
  border: 1px solid rgba(224, 122, 122, 0.4);
  color: #f0b3b3;
}

/* ---------- Contact info cards ---------- */
.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--glass);
}

.info-card .icon-badge {
  width: 46px;
  height: 46px;
  margin: 0;
  flex: none;
}

.info-card .icon-badge svg {
  width: 21px;
  height: 21px;
}

.info-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.info-card p,
.info-card a {
  font-size: var(--fs-300);
  color: var(--text-500);
}

.info-card a:hover {
  color: var(--gold-300);
}

/* ---------- Prose (legal pages) ---------- */
.prose {
  max-width: 76ch;
}

.prose h2 {
  font-size: 1.55rem;
  margin: 2.6rem 0 0.9rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 1.8rem 0 0.6rem;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text-300);
}

.prose ul,
.prose ol {
  margin: 0 0 1.2rem 1.3rem;
  color: var(--text-300);
  display: grid;
  gap: 0.45rem;
}

.prose li::marker {
  color: var(--gold-400);
}

.prose .updated {
  display: inline-block;
  font-size: var(--fs-200);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: var(--sect);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 13, 26, 0.6));
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.6rem;
}

.footer-brand p {
  margin-top: 1.1rem;
  font-size: var(--fs-300);
  color: var(--text-500);
  max-width: 34ch;
}

.social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-500);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social a:hover {
  color: var(--gold-300);
  border-color: var(--line-gold);
  transform: translateY(-3px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-200);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-500);
  font-size: var(--fs-300);
}

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-col address {
  font-style: normal;
  font-size: var(--fs-300);
  color: var(--text-500);
  display: grid;
  gap: 0.65rem;
}

.footer-col address a {
  color: var(--text-300);
}

.footer-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  /* Full-width bar, but keep the text/links aligned to the site container */
  padding-inline: max(4%, calc((100% - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: var(--navy-950);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  font-size: var(--fs-200);
  color: var(--text-500);
  letter-spacing: 0.03em;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
}

.footer-bottom a {
  color: var(--text-500);
}

.footer-bottom a:hover {
  color: var(--gold-300);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Misc ---------- */
.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.center {
  text-align: center;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--gold-500);
  margin-block: 0.5rem;
}

.divider-ornament::before,
.divider-ornament::after {
  content: "";
  height: 1px;
  width: min(140px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold-600));
}

.divider-ornament::after {
  background: linear-gradient(90deg, var(--gold-600), transparent);
}

/* ---------- Mobile Nav Backdrop ---------- */
/* z-index must be BELOW site-header (100) so the nav drawer is never covered */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 15, 0.65);
  z-index: 99;
}

.nav-backdrop.is-open {
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {

  /* Keep header visually solid so the nav drawer sits cleanly behind it */
  .site-header {
    background: #060d1a;
    border-bottom: 1px solid rgba(212, 165, 72, 0.18);
  }

  /* Nav drawer — slides in from the right */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 80vw);
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    list-style: none;
    gap: 0.2rem;
    padding: 90px 1rem 2rem;
    background: #060d1a;
    border-left: 1px solid rgba(212, 165, 72, 0.2);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.8);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 200;
    /* above page content inside site-header stacking context */
    overflow-y: auto;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  /* Nav link items */
  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1rem;
    color: #b8c8dc;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: #f0f4fa;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a[aria-current="page"] {
    color: #d4a548;
    background: rgba(212, 165, 72, 0.1);
    border-color: rgba(212, 165, 72, 0.22);
    font-weight: 700;
  }

  /* Hamburger toggle */
  .nav-toggle {
    display: flex;
    z-index: 200;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    max-width: 560px;
    margin-inline: auto;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .g-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .g-2,
  .g-3,
  .g-4,
  .process {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:nth-child(-n + 2) {
    border-top: 0;
  }

  .stat:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-card.hc-1 {
    right: 0;
  }

  .hero-card.hc-2 {
    left: 0;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* The bar wraps to two rows on narrow screens — give it more clearance */
  body {
    padding-bottom: 124px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* ---------- Print ---------- */
@media print {
  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .cta-band,
  .nav-toggle {
    display: none !important;
  }

  a {
    color: #111;
  }
}

/* ---------- CSP-safe utility classes ---------- */
/* Reveal stagger delays — set the --d custom property used by .reveal */
.d0 {
  --d: 0.00s;
}

.d5 {
  --d: 0.05s;
}

.d6 {
  --d: 0.06s;
}

.d7 {
  --d: 0.07s;
}

.d8 {
  --d: 0.08s;
}

.d10 {
  --d: 0.10s;
}

.d12 {
  --d: 0.12s;
}

.d14 {
  --d: 0.14s;
}

.d15 {
  --d: 0.15s;
}

.d16 {
  --d: 0.16s;
}

.d18 {
  --d: 0.18s;
}

.d20 {
  --d: 0.20s;
}

.d21 {
  --d: 0.21s;
}

.d24 {
  --d: 0.24s;
}

.d25 {
  --d: 0.25s;
}

.d28 {
  --d: 0.28s;
}

/* Spacing and colour helpers */
.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-11 {
  margin-top: 1.1rem;
}

.mt-12 {
  margin-top: 1.2rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mi-auto {
  margin-inline: auto;
}

.gap-11 {
  gap: 1.1rem;
}

.tx-strong {
  color: var(--text-100);
}

.tx-muted-lead {
  color: var(--text-500);
  margin-bottom: 1.8rem;
}

.h-compact {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

/* ============================================================
   Products page (moved out of an inline <style> block — the
   Content-Security-Policy sends style-src 'self' with no
   'unsafe-inline'/nonce, which silently strips inline <style>
   tags in production and left icon/arrow SVGs unsized).
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface, #0d1b2e);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 165, 72, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 72, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.product-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 165, 72, 0.12);
  border: 1px solid rgba(212, 165, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a548;
  overflow: hidden;
}

.product-icon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
}

.product-title-group {
  flex: 1;
  min-width: 0;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text, #f0f4fa);
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.3;
  margin: 0 0 0.2rem;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.product-badge.nuget {
  background: rgba(0, 120, 212, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(0, 120, 212, 0.25);
}

.product-badge.website {
  background: rgba(212, 165, 72, 0.12);
  color: #d4a548;
  border: 1px solid rgba(212, 165, 72, 0.25);
}

.product-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(240, 244, 250, 0.65);
  flex: 1;
  margin: 0;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(240, 244, 250, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d4a548;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: gap 0.2s ease, color 0.2s ease;
}

.product-link:hover {
  gap: 0.7rem;
  color: #e8bf6a;
}

.product-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.featured-product {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(212, 165, 72, 0.08) 0%, rgba(13, 27, 46, 0.8) 50%);
  border-color: rgba(212, 165, 72, 0.2);
}

.featured-product .product-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  max-width: 64px;
  border-radius: 16px;
}

.featured-product .product-icon svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px;
  max-height: 32px;
}

.featured-product .product-name {
  font-size: 1.3rem;
}

.featured-product .product-desc {
  font-size: 0.96rem;
}

.featured-product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 680px) {
  .featured-product {
    flex-direction: column;
    grid-column: auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}