:root {
  --ink: #1A1D1F;
  --primary: #0F3D3F;
  --primary-deep: #0D3B3B;
  --gold: #E3A007;
  --gold-text: #9A6400;
  --gold-soft: #F7DEA3;
  --surface: #F2F3F5;
  --surface-strong: #ffffff;
  --muted: #6B6F72;
  --line: rgba(26, 29, 31, 0.12);
  --shadow: 0 26px 80px rgba(13, 59, 59, 0.16);
  --logo-card-bg: #ffffff;
  --logo-card-shadow: 0 34px 95px rgba(13, 59, 59, 0.22);
  --logo-mark-3d-transform: perspective(900px) rotateX(4deg) rotateY(-8deg) translate3d(0, -1px, 0);
  --logo-mark-3d-hover-transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translate3d(0, -4px, 0) scale(1.025);
  --logo-mark-3d-filter: drop-shadow(0 16px 16px rgba(3, 33, 35, 0.22)) drop-shadow(8px 8px 0 rgba(13, 59, 59, 0.09)) drop-shadow(-6px 8px 0 rgba(227, 160, 7, 0.14));
  --logo-mark-3d-hover-filter: drop-shadow(0 22px 20px rgba(3, 33, 35, 0.26)) drop-shadow(11px 10px 0 rgba(13, 59, 59, 0.11)) drop-shadow(-8px 10px 0 rgba(227, 160, 7, 0.18));
  --logo-card-3d-transform: perspective(1100px) rotateX(3deg) rotateY(-4deg) translate3d(0, -2px, 0);
  --logo-card-3d-hover-transform: perspective(1100px) rotateX(1deg) rotateY(-2deg) translate3d(0, -8px, 0) scale(1.012);
  --logo-card-3d-filter: drop-shadow(0 22px 22px rgba(3, 33, 35, 0.16)) drop-shadow(14px 12px 0 rgba(13, 59, 59, 0.07));
  --logo-card-3d-hover-filter: drop-shadow(0 30px 28px rgba(3, 33, 35, 0.2)) drop-shadow(18px 15px 0 rgba(13, 59, 59, 0.09));
  --radius: 8px;
  --container: 1240px;
  --font-body: "Cairo", "Sora", sans-serif;
  --font-display: "Sora", "Montserrat", "Cairo", sans-serif;
  --font-ar: "Cairo", sans-serif;
  --font-mono: "Sora", Consolas, "Courier New", monospace;
  --logo: url("kodaq-logo-new.png?v=20260517");
  --logo-fit-position: center center;
  --logo-fit-size: 100% auto;
  --logo-stage-size: 100% auto;
  --pattern: url("kodaq-pattern.jpg");
  --bg-soft: url("kodaq-bg-soft.jpg");
  --bg-hero: url("kodaq-bg-hero.jpg");
  --bg-gold-teal: url("kodaq-bg-gold-teal.jpg");
  --bg-neutral: url("kodaq-bg-neutral.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(242, 243, 245, 0.92), rgba(255, 255, 255, 0.98)),
    var(--bg-soft) center / cover fixed;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 520, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(242, 243, 245, 0.88);
  backdrop-filter: blur(18px) saturate(1.18);
}

.nav {
  width: min(var(--container), calc(100% - 32px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 142px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  filter: var(--logo-mark-3d-filter);
  transform: var(--logo-mark-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 280ms ease, filter 280ms ease;
  will-change: transform, filter;
}

.brand:hover .brand-mark {
  filter: var(--logo-mark-3d-hover-filter);
  transform: var(--logo-mark-3d-hover-transform);
}

.brand-name {
  display: grid;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.05;
}

.brand-name small {
  font-family: var(--font-ar);
  font-size: 11px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(15, 61, 63, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 18px;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:disabled {
  cursor: progress;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #082d2f);
  box-shadow: 0 12px 28px rgba(15, 61, 63, 0.26);
}

.button.gold {
  color: var(--primary-deep);
  background: linear-gradient(135deg, #f0b32b, var(--gold));
  box-shadow: 0 14px 28px rgba(227, 160, 7, 0.24);
}

.button.secondary {
  color: var(--primary);
  background: #ffffff;
  border-color: rgba(15, 61, 63, 0.22);
}

.button.danger-soft {
  color: #8a2c1b;
  border-color: rgba(138, 44, 27, 0.2);
  background: #fff7f3;
}

.hero,
.app-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 116px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 243, 245, 0.99), rgba(255, 255, 255, 0.95) 48%, rgba(227, 160, 7, 0.16)),
    var(--bg-hero) center / cover no-repeat;
}

.hero::after,
.app-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 9% auto;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  background: linear-gradient(135deg, rgba(227, 160, 7, 0.78), rgba(227, 160, 7, 0.28));
  clip-path: polygon(0 0, 72% 50%, 0 100%, 22% 50%);
  opacity: 0.45;
  pointer-events: none;
}

.container,
.hero-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
}

.hero-inner,
.app-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 61, 63, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

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

h1,
h2,
h3,
.eyebrow,
.button,
.nav-links a,
.status-pill,
.metric strong,
.commerce-copy h1,
.commerce-section-heading h2,
.dark-product-copy h2,
.data-layout h2,
.final-panel h2 {
  font-family: var(--font-display);
}

.hero h1,
.app-hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--primary-deep);
  font-weight: 900;
}

.hero h1 span,
.app-hero h1 span {
  color: var(--gold-text);
}

.hero p,
.app-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-window,
.app-window {
  position: relative;
  min-height: 430px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(15, 61, 63, 0.86), rgba(15, 61, 63, 0.95)),
    var(--bg-gold-teal) center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-window::after,
.app-window::after {
  content: "";
  position: absolute;
  inset: auto 28px 22px;
  height: 170px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: var(--logo-card-bg);
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  box-shadow: var(--logo-card-shadow);
  filter: var(--logo-card-3d-filter);
  transform: var(--logo-card-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform, filter;
}

.store-window:hover::after,
.app-window:hover::after {
  filter: var(--logo-card-3d-hover-filter);
  transform: var(--logo-card-3d-hover-transform);
}

.terminal {
  position: absolute;
  inset: 24px 24px auto;
  direction: ltr;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(2, 27, 30, 0.9);
  color: #eafff8;
  font-family: "Sora", monospace;
  font-size: 13px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.terminal b {
  color: var(--gold);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section.pattern-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 214, 0.92)),
    var(--bg-soft) center / cover fixed;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading::before,
.commerce-section-heading::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}

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

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--primary-deep);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 900;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

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

.app-card,
.feature,
.screen-card,
.plan-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(0, 67, 72, 0.08);
}

.app-card {
  display: grid;
  min-height: 430px;
  padding: 24px;
  align-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.app-icon,
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff6df;
  border: 1px solid rgba(15, 61, 63, 0.16);
}

.app-icon .material-symbols-outlined,
.feature-icon .material-symbols-outlined {
  font-size: 30px;
}

.app-logo {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 63, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(0, 67, 72, 0.1);
}

.app-logo img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.app-card-preview {
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: 10px;
  background: #08111e;
}

.app-card-preview img {
  display: block;
  width: 100%;
  max-height: 190px;
  object-fit: cover;
  object-position: center top;
}

.app-card h2,
.feature h3,
.screen-card h3,
.plan-row h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.3;
}

.app-card p,
.feature p,
.screen-card p,
.plan-row p {
  color: var(--muted);
  margin-bottom: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 201, 71, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.feature,
.screen-card {
  padding: 24px;
}

.app-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(30px, 6vw, 78px);
}

.product-panel {
  position: sticky;
  top: 100px;
  min-height: 520px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 61, 63, 0.88), rgba(15, 61, 63, 0.96)),
    var(--bg-gold-teal) center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: var(--logo-card-bg);
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  box-shadow: var(--logo-card-shadow);
  filter: var(--logo-card-3d-filter);
  transform: var(--logo-card-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform, filter;
}

.product-panel:hover::before {
  filter: var(--logo-card-3d-hover-filter);
  transform: var(--logo-card-3d-hover-transform);
}

.product-panel .floating-icon {
  position: absolute;
  inset: 26px 26px auto auto;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary-deep);
  background: var(--gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.product-panel .floating-icon .material-symbols-outlined {
  font-size: 38px;
}

.plan-list {
  display: grid;
  gap: 14px;
}

.plan-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
}

.number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-deep);
  background: var(--gold);
  font-family: "Sora", sans-serif;
  font-weight: 900;
}

.cta {
  position: relative;
  padding: clamp(42px, 7vw, 84px);
  border-radius: 18px;
  color: white;
  background:
    linear-gradient(90deg, rgba(15, 61, 63, 0.96), rgba(15, 61, 63, 0.86)),
    var(--bg-gold-teal) center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 24px auto 24px 32px;
  width: min(360px, 42%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background-color: var(--logo-card-bg);
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  opacity: 1;
  box-shadow: var(--logo-card-shadow);
  filter: var(--logo-card-3d-filter);
  transform: var(--logo-card-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform, filter;
}

.cta:hover::after {
  filter: var(--logo-card-3d-hover-filter);
  transform: var(--logo-card-3d-hover-transform);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.12;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.legal-hero {
  position: relative;
  min-height: 54svh;
  display: grid;
  align-items: center;
  padding: 124px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.99), rgba(255, 255, 255, 0.94) 54%, rgba(255, 241, 200, 0.78)),
    var(--bg-hero) center / cover no-repeat;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 36px auto;
  width: min(44vw, 520px);
  height: min(24vw, 280px);
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  opacity: 0.13;
  pointer-events: none;
  filter: var(--logo-mark-3d-filter);
  transform: var(--logo-mark-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
  max-width: 860px;
}

.legal-hero h1 {
  margin: 22px 0 18px;
  color: var(--primary-deep);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.legal-shell {
  padding: 72px 0;
  background: var(--surface);
}

.legal-layout {
  width: min(980px, calc(100% - 32px));
  margin: auto;
  display: grid;
  gap: 18px;
}

.legal-note,
.legal-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 67, 72, 0.07);
}

.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  color: var(--primary-deep);
  font-weight: 800;
}

.legal-note .material-symbols-outlined {
  color: var(--gold-text);
  margin-top: 4px;
}

.legal-section {
  padding: clamp(22px, 4vw, 34px);
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--primary-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.legal-section h2 .material-symbols-outlined {
  color: var(--gold-text);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 17px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-inline-start: 22px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 201, 71, 0.2);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-layout {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.contact-form,
.contact-side {
  min-width: 0;
}

.contact-form h2,
.contact-side h2 {
  margin: 0 0 4px;
  color: var(--primary-deep);
  font-size: 24px;
}

.pixel-hero {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.99), rgba(255, 255, 255, 0.93) 48%, rgba(255, 241, 200, 0.78)),
    var(--bg-hero) center / cover no-repeat;
}

.pixel-window::before,
.pixel-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), rgba(255, 201, 71, 0.55) 28%, rgba(15, 61, 63, 0.72) 62%, rgba(15, 61, 63, 0) 64%);
  filter: blur(0.2px);
  opacity: 0.9;
}

.pixel-window::before {
  inset: 116px auto auto 36px;
}

.product-screenshot-window {
  display: grid;
  place-items: end stretch;
  padding: 24px;
}

.product-screenshot-window::after {
  display: none;
}

.product-hero-shot {
  position: absolute;
  inset: 102px 24px 104px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #08111e;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.product-hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-hero-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.product-hero-logo img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
}

.product-hero-logo span {
  color: var(--primary-deep);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.pixel-panel::after {
  inset: auto 34px 38px auto;
}

.product-gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96)),
    var(--bg-soft) center / cover fixed;
}

.product-shots .screen-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.shot-media {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin: -24px -24px 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 223, 0.88)),
    var(--bg-soft) center / cover no-repeat;
}

.shot-media img {
  display: block;
  width: min(100%, 260px);
  max-height: 360px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 45, 50, 0.16);
}

.product-shot-wide {
  grid-column: span 2;
}

.product-shot-wide .shot-media {
  min-height: 310px;
  padding: 12px;
  background: #101418;
}

.product-shot-wide .shot-media img {
  width: 100%;
  max-height: 380px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.2);
}

.product-shot-tall .shot-media {
  min-height: 420px;
  background: #08111e;
}

.product-shot-tall .shot-media img {
  width: min(100%, 280px);
  max-height: 520px;
  border-radius: 24px;
}

.brief-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.96)),
    var(--bg-soft) center / cover fixed;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.brief-intro h2 {
  margin: 16px 0 14px;
  color: var(--primary-deep);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

.brief-intro p,
.brief-card p,
.brief-flow p,
.brief-details-grid p {
  color: var(--muted);
}

.brief-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.brief-stat {
  padding: 14px;
  border: 1px solid rgba(15, 61, 63, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.brief-stat strong {
  display: block;
  color: var(--gold-text);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 22px;
}

.brief-stat span {
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
}

.brief-stack,
.brief-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brief-card,
.brief-flow article,
.brief-details-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(0, 67, 72, 0.08);
}

.brief-card {
  padding: 22px;
}

.brief-card .material-symbols-outlined {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: #fff6df;
  font-size: 28px;
}

.brief-card h3,
.brief-flow h3,
.brief-details-grid h3 {
  margin: 16px 0 8px;
  color: var(--primary-deep);
  font-size: 22px;
}

.brief-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.brief-flow article,
.brief-details-grid article {
  padding: 22px;
}

.brief-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--primary-deep);
  background: var(--gold);
  font-family: "Sora", "Cairo", sans-serif;
  font-weight: 900;
}

.brief-details-grid {
  margin-top: 14px;
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.activation-panel,
.license-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 67, 72, 0.08);
  padding: clamp(22px, 4vw, 34px);
}

.activation-panel h2 {
  margin: 16px 0 10px;
  color: var(--primary-deep);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

.activation-panel p,
.license-card p,
.license-card li {
  color: var(--muted);
}

.license-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 22px;
}

.license-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--primary-deep);
  background: rgba(255, 201, 71, 0.2);
  font-weight: 900;
}

.license-result.success {
  color: var(--primary-deep);
  background: rgba(15, 61, 63, 0.12);
}

.license-result.error {
  color: #8a2c1b;
  background: #fff0e9;
}

.license-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.license-card h3 {
  margin: 0;
  color: var(--primary-deep);
  font-size: 28px;
}

.license-card strong {
  display: block;
  color: var(--gold-text);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}

.license-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-inline-start: 22px;
}

.download-box {
  display: grid;
  gap: 12px;
  margin: 8px 0;
  padding: 16px;
  border: 1px solid rgba(15, 61, 63, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.download-label {
  color: var(--primary-deep);
  font-weight: 900;
}

.download-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.download-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.admin-shell {
  min-height: 100svh;
  padding: 104px 0 48px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.97), rgba(255, 244, 214, 0.82)),
    var(--bg-neutral) center top / cover fixed;
}

.admin-layout {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
}

.admin-sidebar,
.admin-panel,
.metric,
.admin-list,
.admin-table,
.note-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 67, 72, 0.08);
}

.admin-sidebar {
  position: sticky;
  top: 94px;
  height: calc(100svh - 126px);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-layout > *,
.admin-main,
.admin-panel,
.note-panel,
.metrics-grid,
.admin-grid {
  min-width: 0;
  max-width: 100%;
}

.admin-logo {
  min-height: 120px;
  border-radius: 16px;
  background-color: var(--logo-card-bg);
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--logo-card-shadow);
  filter: var(--logo-card-3d-filter);
  transform: var(--logo-card-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: transform 320ms ease, filter 320ms ease;
  will-change: transform, filter;
}

.admin-logo:hover {
  filter: var(--logo-card-3d-hover-filter);
  transform: var(--logo-card-3d-hover-transform);
}

.admin-menu {
  display: grid;
  gap: 8px;
}

.admin-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 900;
}

.admin-menu a.active,
.admin-menu a:hover {
  color: var(--primary);
  background: rgba(15, 61, 63, 0.08);
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
}

.admin-hero > div:first-child {
  flex: 1 1 560px;
  min-width: 0;
}

.admin-hero .admin-subdomain-card {
  flex: 0 1 360px;
}

.admin-hero h1 {
  margin: 12px 0 8px;
  color: var(--primary-deep);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.14;
}

.admin-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
}

.metric span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff6df;
  border: 1px solid rgba(15, 61, 63, 0.14);
}

.metric strong {
  display: block;
  margin-top: 14px;
  color: var(--primary-deep);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.admin-panel {
  padding: 22px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-title h2 {
  margin: 0;
  color: var(--primary-deep);
  font-size: 24px;
}

.panel-title small {
  color: var(--muted);
  font-weight: 800;
}

.control-panel {
  display: grid;
  gap: 18px;
}

.control-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.save-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-inline-start: auto;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 201, 71, 0.24);
  font-size: 13px;
  font-weight: 900;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.control-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
}

.control-card-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.control-card-title > .material-symbols-outlined {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff6df;
  border: 1px solid rgba(15, 61, 63, 0.14);
}

.control-card-title h3 {
  margin: 0 0 4px;
  color: var(--primary-deep);
  font-size: 20px;
}

.control-card-title p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-field,
.admin-switch {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-field.wide,
.admin-switch.wide {
  grid-column: 1 / -1;
}

.admin-field span,
.admin-switch span {
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 900;
}

.admin-field input,
.admin-field textarea,
.admin-field select,
.editable-table input,
.editable-table select,
.config-output {
  width: 100%;
  border: 1px solid rgba(15, 61, 63, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  outline: none;
}

.admin-field textarea,
.config-output {
  resize: vertical;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus,
.editable-table input:focus,
.editable-table select:focus,
.config-output:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 61, 63, 0.1);
}

.admin-switch {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.admin-switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.editable-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.editable-table {
  min-width: 760px;
  background: transparent;
  box-shadow: none;
}

.editable-table th,
.editable-table td {
  min-width: 130px;
}

.editable-table td:last-child,
.editable-table th:last-child {
  min-width: 74px;
  text-align: center;
}

.editable-table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.config-output {
  min-height: 320px;
  direction: ltr;
  text-align: left;
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.55;
  white-space: pre;
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.db-tile {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
}

.db-tile .material-symbols-outlined {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff6df;
  border: 1px solid rgba(15, 61, 63, 0.14);
}

.db-tile strong {
  display: block;
  margin-top: 14px;
  color: var(--primary-deep);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.db-tile h3 {
  margin: 8px 0 4px;
  color: var(--primary-deep);
  font-size: 18px;
}

.db-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.inbox-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.inbox-table {
  min-width: 920px;
}

.message-text {
  max-width: 360px;
  white-space: normal;
}

.message-text p {
  margin: 0;
  color: var(--muted);
}

.message-meta {
  display: block;
  margin-top: 4px;
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 900;
}

.checklist {
  display: grid;
  gap: 10px;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(15, 61, 63, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
}

.check-item input {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  accent-color: var(--primary);
}

.check-item h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 17px;
}

.check-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.priority {
  min-width: 72px;
  text-align: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--primary-deep);
  background: rgba(255, 201, 71, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.priority.high {
  color: white;
  background: var(--primary);
}

.admin-list {
  padding: 0;
  overflow: hidden;
}

.list-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.list-row:last-child {
  border-bottom: 0;
}

.list-row .material-symbols-outlined {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff6df;
}

.list-row h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 16px;
}

.list-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.state {
  min-width: 72px;
  text-align: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--primary);
  background: rgba(15, 61, 63, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.state.todo {
  color: var(--gold-text);
  background: rgba(255, 201, 71, 0.24);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: middle;
}

.admin-table th {
  color: var(--primary-deep);
  background: rgba(255, 246, 223, 0.7);
  font-size: 13px;
}

.admin-table td {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.note-panel {
  padding: 22px;
}

.note-panel textarea,
.quick-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  resize: vertical;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

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

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .hero-inner,
  .app-hero-inner,
  .app-split,
  .brief-layout,
  .activation-layout {
    grid-template-columns: 1fr;
  }

  .activation-layout {
    width: 100%;
  }

  .apps-grid,
  .features-grid,
  .screens-grid,
  .brief-flow {
    grid-template-columns: 1fr 1fr;
  }

  .product-shot-wide {
    grid-column: auto;
  }

  .product-panel {
    position: relative;
    top: auto;
  }

  .admin-layout,
  .admin-grid,
  .control-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: relative;
    top: auto;
    height: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .nav {
    width: min(100% - 20px, var(--container));
    gap: 10px;
  }

  .nav-links {
    max-width: calc(100vw - 104px);
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 8px;
    font-size: 13px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero,
  .app-hero,
  .legal-hero {
    min-height: auto;
    padding: 42px 0 52px;
  }

  .hero h1,
  .app-hero h1,
  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero p,
  .app-hero p,
  .legal-hero p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .download-actions {
    grid-template-columns: 1fr;
  }

  .store-window,
  .app-window,
  .product-panel {
    min-height: 340px;
  }

  .terminal {
    inset: 16px 16px auto;
  }

  .apps-grid,
  .features-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .brief-stack,
  .brief-flow,
  .brief-details-grid {
    grid-template-columns: 1fr;
  }

  .brief-stat-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: auto;
  }

  .cta {
    padding: 34px 22px;
  }

  .cta::after {
    inset: auto 18px 18px;
    width: calc(100% - 36px);
    height: 96px;
    opacity: 1;
  }

  .cta-content {
    padding-bottom: 104px;
  }

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

  .admin-shell {
    padding-top: 28px;
  }

  .admin-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .check-item,
  .list-row,
  .plan-row,
  .quick-form,
  .form-grid,
  .license-form {
    grid-template-columns: 1fr;
  }

  .control-toolbar .button {
    width: 100%;
  }

  .save-state {
    width: 100%;
    justify-content: center;
    margin-inline-start: 0;
  }

  .priority,
  .state {
    width: fit-content;
  }

  .admin-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

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

/* Global KODAQ theme refresh */
.site-header {
  border-bottom-color: rgba(26, 29, 31, 0.08);
  background: rgba(242, 243, 245, 0.84);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
}

.hero,
.app-hero,
.legal-hero {
  background:
    linear-gradient(115deg, rgba(242, 243, 245, 1) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(227, 160, 7, 0.13) 100%),
    var(--bg-hero) center / cover no-repeat;
}

.section.pattern-band,
.brief-section,
.product-gallery-section,
.admin-shell,
.data-section {
  background:
    linear-gradient(180deg, rgba(242, 243, 245, 0.98), rgba(255, 255, 255, 0.92)),
    var(--bg-soft) center / cover fixed;
}

.button {
  border-radius: var(--radius);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), #082d2f);
  box-shadow: 0 14px 34px rgba(13, 59, 59, 0.26);
}

.button.gold,
.number,
.brief-flow span,
.status-pill {
  color: var(--primary-deep);
  background: var(--gold);
}

.eyebrow,
.app-card,
.feature,
.screen-card,
.plan-row,
.brief-card,
.brief-flow article,
.brief-details-grid article,
.activation-panel,
.license-card,
.admin-sidebar,
.admin-panel,
.metric,
.admin-list,
.admin-table,
.note-panel,
.control-card,
.db-tile,
.legal-note,
.legal-section {
  border-color: var(--line);
}

.app-icon,
.feature-icon,
.brief-card .material-symbols-outlined,
.metric span,
.control-card-title > .material-symbols-outlined,
.db-tile .material-symbols-outlined,
.list-row .material-symbols-outlined {
  background: rgba(227, 160, 7, 0.18);
  border-color: rgba(26, 29, 31, 0.1);
}

/* KODAQ Store commerce refresh */
body.commerce-page {
  --ink: #1A1D1F;
  --primary: #0F3D3F;
  --primary-deep: #0D3B3B;
  --gold: #E3A007;
  --gold-text: #9A6400;
  --surface: #F2F3F5;
  --surface-strong: #ffffff;
  --muted: #6B6F72;
  --line: rgba(26, 29, 31, 0.12);
  --shadow: 0 26px 80px rgba(13, 59, 59, 0.16);
  --container: 1240px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(242, 243, 245, 0.92), rgba(255, 255, 255, 0.98)),
    var(--bg-soft) center / cover fixed;
}

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

.commerce-page .site-header {
  border-bottom-color: rgba(26, 29, 31, 0.08);
  background: rgba(242, 243, 245, 0.84);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  backdrop-filter: blur(22px) saturate(1.2);
  animation: commerceHeader 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.commerce-page .nav {
  min-height: 66px;
}

.commerce-page .brand-mark {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}

.commerce-page .nav-links a {
  border-radius: 999px;
  color: rgba(7, 25, 26, 0.68);
  font-weight: 800;
}

.commerce-page .nav-links a:hover,
.commerce-page .nav-links a.active {
  color: var(--primary-deep);
  background: rgba(15, 61, 63, 0.08);
}

.commerce-page .button {
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: none;
}

.commerce-page .button.primary {
  background: var(--primary-deep);
  box-shadow: 0 14px 34px rgba(13, 59, 59, 0.22);
}

.commerce-page .button.secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 25, 26, 0.14);
}

.commerce-page .button.gold {
  color: #172100;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(227, 160, 7, 0.18);
}

.commerce-hero {
  position: relative;
  min-height: calc(100svh - 36px);
  display: grid;
  align-items: center;
  padding: 112px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(246, 248, 247, 1) 0%, rgba(255, 255, 255, 0.96) 44%, rgba(221, 238, 235, 0.78) 100%),
    var(--bg-hero) center / cover no-repeat;
}

.commerce-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(246, 248, 247, 0), var(--surface));
  pointer-events: none;
}

.commerce-hero-inner,
.commerce-container,
.commerce-strip-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: auto;
}

.commerce-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 72px;
}

.commerce-copy {
  max-width: 600px;
}

.commerce-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.commerce-title,
.commerce-copy h1,
.commerce-section h2,
.final-panel h2 {
  letter-spacing: 0;
}

.commerce-copy h1 {
  margin: 0 0 18px;
  color: var(--primary-deep);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.02;
}

.commerce-lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.8;
}

.commerce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.commerce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.commerce-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid rgba(7, 25, 26, 0.1);
  border-radius: 999px;
  color: rgba(7, 25, 26, 0.72);
  background: rgba(255, 255, 255, 0.62);
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.commerce-stage {
  --stage-rotate-x: 0deg;
  --stage-rotate-y: 0deg;
  position: relative;
  min-height: 580px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.stage-screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 25, 26, 0.12);
  border-radius: 8px;
  background: #111719;
  box-shadow: var(--shadow);
  transition: transform 260ms ease;
}

.stage-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stage-screen-main {
  inset: 38px 0 50px 62px;
  transform: rotateX(var(--stage-rotate-x)) rotateY(var(--stage-rotate-y)) translateZ(24px);
}

.stage-screen-side {
  inset: auto auto 0 0;
  width: 46%;
  height: 230px;
  transform: translate3d(0, 0, 72px);
}

.stage-badge {
  position: absolute;
  inset: 30px auto auto 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(7, 25, 26, 0.12);
  font-weight: 900;
}

.commerce-strip {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.commerce-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.commerce-strip-inner span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 900;
}

.commerce-section {
  padding: 96px 0;
}

.solution-band {
  background:
    linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.94)),
    var(--bg-soft) center / cover fixed;
}

.commerce-section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

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

.commerce-section-heading h2,
.dark-product-copy h2,
.data-layout h2,
.final-panel h2 {
  margin: 0 0 16px;
  color: var(--primary-deep);
  font-size: 3.45rem;
  line-height: 1.08;
  font-weight: 900;
}

.commerce-section-heading p,
.dark-product-copy p,
.data-layout p,
.final-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.13rem;
}

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

.solution-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 56px rgba(8, 42, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 61, 63, 0.24);
  box-shadow: var(--shadow);
}

.solution-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: stretch;
  background: #ffffff;
}

.solution-media {
  min-height: 238px;
  overflow: hidden;
  background: #101719;
}

.solution-featured .solution-media {
  min-height: 440px;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.solution-content {
  display: grid;
  align-content: start;
  padding: 24px;
}

.solution-featured .solution-content {
  padding: 44px;
}

.solution-type {
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 900;
}

.solution-content h3 {
  margin: 12px 0 12px;
  color: var(--primary-deep);
  font-size: 2rem;
  line-height: 1.15;
}

.solution-featured h3 {
  font-family: "Sora", "Cairo", sans-serif;
  font-size: 3.25rem;
}

.solution-content p {
  margin: 0;
  color: var(--muted);
}

.solution-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--muted);
}

.solution-points li::before {
  content: "";
  position: absolute;
  inset: 12px 0 auto auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(227, 160, 7, 0.2);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.text-link {
  width: fit-content;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 900;
}

.text-link:hover {
  color: var(--primary-deep);
}

.dark-product {
  color: #ffffff;
  background:
    linear-gradient(135deg, #1A1D1F 0%, #0b3435 52%, #123b37 100%),
    var(--bg-gold-teal) center / cover no-repeat;
}

.dark-product-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 56px;
}

.dark-product .commerce-kicker {
  color: var(--gold);
}

.dark-product-copy h2,
.dark-product-copy p {
  color: #ffffff;
}

.dark-product-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.9;
}

.admin-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #101719;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.admin-shot img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.path-section {
  background: #ffffff;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.path-grid article {
  min-height: 246px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.path-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #172100;
  background: var(--gold);
  font-family: "Sora", "Cairo", sans-serif;
  font-weight: 900;
}

.path-grid h3 {
  margin: 22px 0 10px;
  color: var(--primary-deep);
  font-size: 1.45rem;
}

.path-grid p {
  margin: 0;
  color: var(--muted);
}

.data-section {
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.96), rgba(255, 255, 255, 0.94)),
    var(--bg-soft) center / cover fixed;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 48px;
}

.data-checklist {
  display: grid;
  gap: 10px;
}

.data-checklist span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 48px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary-deep);
  font-weight: 900;
}

.data-checklist span::before {
  content: "check";
  position: absolute;
  inset-inline-start: 14px;
  inset-inline-end: auto;
  font-family: "Material Symbols Outlined";
  color: var(--primary);
  font-size: 22px;
}

.final-commerce-cta {
  padding-top: 64px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: 58px;
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 55%, rgba(221, 238, 235, 0.76) 100%),
    var(--bg-hero) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.final-panel::after {
  content: "";
  position: absolute;
  inset: 44px auto 44px 42px;
  width: 360px;
  max-width: 36%;
  background-image: var(--logo);
  background-position: var(--logo-fit-position);
  background-size: var(--logo-fit-size);
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
  filter: var(--logo-mark-3d-filter);
  transform: var(--logo-mark-3d-transform);
  transform-origin: center;
  transform-style: preserve-3d;
}

.final-panel > * {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.motion-ready .commerce-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .commerce-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .commerce-page .commerce-stage.is-visible .stage-screen-main {
  animation: commerceFloat 5s ease-in-out 650ms infinite alternate;
}

@keyframes commerceHeader {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commerceFloat {
  from {
    transform: rotateX(var(--stage-rotate-x)) rotateY(var(--stage-rotate-y)) translate3d(0, 0, 24px);
  }
  to {
    transform: rotateX(var(--stage-rotate-x)) rotateY(var(--stage-rotate-y)) translate3d(0, -10px, 24px);
  }
}

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

  .motion-ready .commerce-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .commerce-hero-inner,
  .dark-product-inner,
  .data-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .commerce-copy {
    max-width: 760px;
  }

  .commerce-copy h1 {
    font-size: 3.8rem;
  }

  .commerce-stage {
    min-height: 520px;
  }

  .solutions-list,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-featured {
    grid-template-columns: 1fr;
  }

  .solution-featured .solution-media {
    min-height: 360px;
  }

  .commerce-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .commerce-page .site-header {
    position: sticky;
  }

  .commerce-page .nav {
    width: min(100% - 20px, var(--container));
    min-height: 62px;
  }

  .commerce-page .brand-mark {
    display: none;
  }

  .commerce-page .nav > .button {
    display: none;
  }

  .commerce-page .brand {
    min-width: 78px;
    gap: 0;
  }

  .commerce-page .brand-name {
    display: grid;
    font-size: 0.82rem;
  }

  .commerce-page .brand-name small {
    font-size: 0.62rem;
  }

  .commerce-hero {
    min-height: auto;
    padding: 48px 0 38px;
  }

  .commerce-hero-inner,
  .commerce-container,
  .commerce-strip-inner {
    width: min(100% - 22px, var(--container));
  }

  .commerce-copy h1 {
    font-size: 2.75rem;
  }

  .commerce-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .commerce-actions .button,
  .solution-actions .button {
    width: 100%;
  }

  .commerce-stage {
    min-height: 360px;
  }

  .stage-screen-main {
    inset: 0 0 52px;
  }

  .stage-screen-side {
    width: 58%;
    height: 134px;
  }

  .stage-badge {
    inset: 16px 14px auto auto;
    font-size: 0.84rem;
  }

  .commerce-strip-inner,
  .solutions-list,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .commerce-section {
    padding: 64px 0;
  }

  .commerce-section-heading h2,
  .dark-product-copy h2,
  .data-layout h2,
  .final-panel h2 {
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .solution-featured .solution-media,
  .solution-media {
    min-height: 230px;
  }

  .solution-featured .solution-content,
  .solution-content {
    padding: 22px;
  }

  .solution-featured h3,
  .solution-content h3 {
    font-size: 2rem;
  }

  .path-grid article {
    min-height: auto;
  }

  .final-panel {
    min-height: auto;
    padding: 34px 22px 150px;
  }

  .final-panel::after {
    inset: auto 22px 28px;
    width: calc(100% - 44px);
    max-width: none;
    height: 96px;
  }
}

.commerce-testimonials {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 25, 26, 0.98), rgba(15, 61, 63, 0.94)),
    var(--bg-gold-teal) center / cover no-repeat;
}

.commerce-testimonials .commerce-section-heading {
  margin-bottom: 28px;
}

.commerce-testimonials .commerce-section-heading h2,
.commerce-testimonials .commerce-section-heading p {
  color: #ffffff;
}

.testimonial-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: testimonialScroll var(--testimonial-speed, 32s) linear infinite;
}

.testimonial-track.is-reverse {
  animation-direction: reverse;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-chip {
  width: min(440px, calc(100vw - 48px));
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testimonial-chip blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-person {
  display: grid;
  gap: 2px;
}

.testimonial-person strong {
  color: var(--gold);
  font-weight: 900;
}

.testimonial-person span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.testimonial-empty {
  width: min(720px, calc(100vw - 48px));
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }
}
