:root {
  --navy: #13253a;
  --navy-deep: #08131d;
  --green: #00ff88;
  --green-soft: #75ffb8;
  --charcoal: #0b0b0b;
  --charcoal-soft: #1b2222;
  --cream: #f6f1e7;
  --cream-soft: #e9e2d5;
  --text: #f4f1ea;
  --text-dark: #131919;
  --text-muted: rgba(244, 241, 234, 0.72);
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 44px rgba(9, 21, 33, 0.22);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1240px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 255, 136, 0.16), transparent 22%),
    radial-gradient(circle at 90% 8%, rgba(246, 241, 231, 0.08), transparent 16%),
    radial-gradient(circle at 76% 70%, rgba(19, 37, 58, 0.38), transparent 26%),
    linear-gradient(180deg, #0b0b0b 0%, #101618 34%, #13253a 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black, transparent 90%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.risala-site-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 255, 136, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(5, 11, 14, 0.98), rgba(7, 18, 26, 0.98));
  transition: opacity 320ms ease, visibility 320ms ease;
}

.page-loader.is-active {
  opacity: 1;
  visibility: visible;
}

.page-loader.is-leaving {
  pointer-events: none;
}

.page-loader__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.page-loader__mark {
  width: 92px;
  height: 92px;
  padding: 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(10, 18, 22, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  animation: loaderPulse 1.35s ease-in-out infinite;
}

.page-loader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-loader__line {
  width: min(220px, 72vw);
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.page-loader__line::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.3);
  animation: loaderSweep 1.15s ease-in-out infinite;
}

.page-loader__label {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.risala-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  height: 4px;
}

.risala-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.45);
}

.risala-cursor-glow {
  position: fixed;
  inset: 0 auto auto 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.18), transparent 65%);
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
  filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 10px;
}

.header-pill {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 80px;
  padding: 10px 16px 10px 18px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(12, 18, 18, 0.72);
  backdrop-filter: blur(26px) saturate(135%);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
  grid-template-areas: "brand signal nav actions";
}

.site-header.is-scrolled .header-pill {
  transform: translateY(-4px) scale(0.985);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(9, 14, 14, 0.82);
}

.brand-lockup {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup__mark {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  overflow: visible;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 72%);
}

.brand-lockup__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup__copy {
  display: grid;
  gap: 4px;
}

.brand-lockup__copy strong,
.hero-copy h1,
.section-head h2,
.subpage-hero h1,
.footer-brand h2,
.service-card h3,
.service-detail h2,
.story-card h2,
.portfolio-card h2,
.feature-panel h3,
.editorial-grid__lead h2,
.timeline-card h3,
.faq-shell__intro h2,
.manifesto-card h2,
.conversion-panel h2 {
  font-family: "Sora", sans-serif;
}

.brand-lockup__copy strong {
  letter-spacing: 0.1em;
  font-size: 1.26rem;
  line-height: 1;
}

.brand-lockup__copy small {
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

.main-nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.header-signal {
  grid-area: signal;
  text-decoration: none;
  display: grid;
  gap: 3px;
  min-height: 52px;
  padding: 0 12px;
  align-content: center;
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  max-width: 260px;
}

.header-signal span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.35;
}

.header-signal small {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  white-space: nowrap;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.86rem;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-list .current-menu-item > a,
.nav-list .current_page_item > a,
.nav-list a:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-pill__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  white-space: nowrap;
}

.pill-link {
  color: var(--text-muted);
  padding: 0 8px;
  font-size: 0.86rem;
}

.pill-link--accent {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--green-soft);
  border: 1px solid rgba(0, 255, 136, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--green), var(--green-soft));
  box-shadow: 0 18px 46px rgba(0, 255, 136, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 255, 136, 0.25);
}

.button--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.button--header {
  min-height: 46px;
  padding: 0 16px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: currentColor;
  border-radius: 99px;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

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

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

.risala-main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.hero,
.section,
.content-shell,
.subpage-hero {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  min-height: calc(100svh - 98px);
}

.hero--home {
  padding: 34px 0 18px;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fluid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.9;
}

.fluid-orb--green {
  width: 380px;
  height: 380px;
  top: 6%;
  right: 8%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16), rgba(0, 255, 136, 0.7));
}

.fluid-orb--lime {
  width: 340px;
  height: 340px;
  bottom: 10%;
  left: 4%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), rgba(0, 255, 136, 0.28));
}

.grain-sweep {
  position: absolute;
  inset: 6% 5% auto auto;
  width: 380px;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 241, 231, 0.04), rgba(0, 255, 136, 0.14), transparent);
  filter: blur(18px);
}

.hero-horizon {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: min(1400px, 130%);
  height: 250px;
  transform: translateX(-50%);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-top: 8px solid rgba(0, 255, 136, 0.88);
  box-shadow:
    0 -12px 80px rgba(0, 255, 136, 0.38),
    0 -4px 30px rgba(246, 241, 231, 0.16);
  opacity: 0.85;
}

.hero-gridlines {
  position: absolute;
  inset: 3% 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, black 18%, transparent 92%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
  padding: 42px 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero-copy h1 {
  margin: 16px 0 16px;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.subpage-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 span,
.subpage-hero h1 span {
  color: var(--green);
}

.hero-copy p,
.subpage-hero p,
.section-head p,
.feature-panel p,
.service-card p,
.service-detail p,
.story-card p,
.portfolio-card p,
.timeline-card p,
.manifesto-card p,
.conversion-panel p,
.footer-copy,
.contact-form label,
.editor-card {
  color: var(--text-muted);
  line-height: 1.85;
}

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

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 239, 228, 0.84);
  font-size: 0.9rem;
}

.hero-composition {
  position: relative;
  min-height: clamp(560px, 66vh, 740px);
}

.trust-ticker {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: -2px;
}

.trust-ticker__item {
  padding: 14px 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-ticker__item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.68rem;
  color: var(--cream);
}

.trust-ticker__item span {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-stage,
.floating-brief,
.feature-panel,
.service-card,
.service-detail,
.story-card,
.portfolio-card,
.contact-panel,
.editor-card,
.feature-column,
.stat-tile,
.timeline-card,
.manifesto-card,
.faq-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow);
}

.hero-stage {
  position: absolute;
  inset: 30px 8px 92px 8px;
  border-radius: 38px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(16, 20, 20, 0.94), rgba(19, 37, 58, 0.88));
}

.hero-stage::before,
.feature-panel::before,
.service-detail--featured::before,
.conversion-panel::before,
.timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-stage__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(245, 239, 228, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
}

.hero-stage__logo {
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 390px;
}

.hero-stage__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.hero-stage__note {
  position: absolute;
  left: 24px;
  top: 70px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(9, 14, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stage__note strong,
.service-card h3,
.service-detail h2,
.stat-tile strong,
.hero-stage__grid strong {
  font-size: 2rem;
  color: var(--cream);
}

.hero-stage__grid {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stage__grid div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(245, 239, 228, 0.08);
  border: 1px solid rgba(245, 239, 228, 0.12);
}

.hero-stage__grid small {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 239, 228, 0.72);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-brief {
  position: absolute;
  right: 0;
  top: 8px;
  width: min(346px, 100%);
  padding: 18px 20px;
  border-radius: 26px;
}

.floating-brief span,
.feature-column h3,
.portfolio-card span {
  color: var(--green-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

.floating-brief strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.55rem;
}

.floating-brief small {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.floating-brief--dark {
  top: auto;
  right: 18px;
  bottom: 18px;
  background:
    linear-gradient(180deg, rgba(10, 14, 14, 0.96), rgba(19, 37, 58, 0.88));
}

.luxury-marquee {
  width: var(--container);
  margin: 20px auto 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.luxury-marquee__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.luxury-marquee__track span {
  color: rgba(247, 239, 228, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

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

.signal-strip__card {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 255, 136, 0.16);
  background:
    linear-gradient(160deg, rgba(0, 255, 136, 0.08), transparent 45%),
    rgba(16, 20, 20, 0.68);
  box-shadow: var(--shadow-soft);
}

.signal-strip__card span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.signal-strip__card h3 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.signal-strip__card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

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

.section {
  padding: 108px 0 0;
}

.subpage-hero {
  padding: 72px 0 16px;
}

.subpage-hero__inner {
  max-width: 900px;
}

.content-shell {
  padding: 34px 0 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head > div {
  max-width: 760px;
}

.section-head h2,
.editorial-grid__lead h2,
.faq-shell__intro h2,
.manifesto-card h2,
.conversion-panel h2,
.footer-brand h2 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.usp-stack,
.service-showcase,
.editorial-grid,
.editorial-grid__stats,
.feature-columns,
.split-story,
.contact-layout,
.story-grid--posts,
.service-detail-grid,
.portfolio-grid,
.timeline-ribbon,
.manifesto-grid,
.faq-shell,
.footer-grid {
  display: grid;
  gap: 18px;
}

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

.feature-panel,
.story-card,
.service-card,
.portfolio-card,
.service-detail,
.contact-panel,
.editor-card,
.feature-column,
.timeline-card,
.manifesto-card,
.faq-item {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.feature-panel__index,
.service-card__tag,
.service-detail__tag,
.story-card__kicker,
.timeline-card span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 239, 228, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-panel__index {
  margin-bottom: 20px;
}

.feature-panel h3,
.story-card h2,
.portfolio-card h2,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.editorial-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.editorial-grid__lead {
  padding-right: 24px;
}

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

.stat-tile {
  border-radius: 28px;
  padding: 22px;
}

.stat-tile strong {
  display: block;
  margin-bottom: 8px;
}

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

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

.service-card h3,
.service-detail h2 {
  margin: 18px 0 10px;
  line-height: 1.04;
}

.service-card--featured,
.service-detail--featured,
.story-card--contrast,
.manifesto-card--dark {
  background:
    linear-gradient(160deg, rgba(0, 255, 136, 0.16), rgba(19, 37, 58, 0.28)),
    rgba(255, 255, 255, 0.06);
}

.text-link {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

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

.timeline-card {
  min-height: 250px;
}

.manifesto-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.bullet-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.bullet-list li,
.service-detail li,
.footer-links li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.bullet-list li::before,
.service-detail li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
}

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

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

.feature-column {
  min-height: 240px;
}

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

.service-detail ul,
.footer-links {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

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

.portfolio-card__visual {
  height: 220px;
  border-radius: 26px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(0, 255, 136, 0.42), rgba(19, 37, 58, 0.54));
}

.portfolio-card__visual strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.portfolio-card__visual--alt {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, rgba(19, 37, 58, 0.68), rgba(0, 255, 136, 0.28));
}

.portfolio-card__visual--dark {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(16, 20, 20, 0.96), rgba(19, 37, 58, 0.52));
}

.immersive-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(0, 255, 136, 0.14);
  background:
    linear-gradient(140deg, rgba(0, 255, 136, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(15, 20, 20, 0.92), rgba(19, 37, 58, 0.9));
  box-shadow: var(--shadow);
}

.immersive-band__content h2 {
  margin: 14px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.immersive-band__content p,
.immersive-band__quote p {
  color: var(--text-muted);
  line-height: 1.8;
}

.immersive-band__quote {
  padding: 24px;
  border-radius: 28px;
  background: rgba(246, 241, 231, 0.08);
  border: 1px solid rgba(246, 241, 231, 0.1);
}

.immersive-band__quote strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

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

.story-card__media {
  display: block;
  height: 210px;
  margin: -26px -26px 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.14), rgba(19, 37, 58, 0.5));
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__media--fallback {
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(0, 255, 136, 0.16), rgba(19, 37, 58, 0.5));
}

.single-hero {
  padding-bottom: 8px;
}

.single-cover {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.single-cover img {
  width: 100%;
  display: block;
  max-height: 680px;
  object-fit: cover;
}

.single-cover--sidebar {
  margin-bottom: 18px;
}

.single-cover--sidebar img {
  max-height: 360px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.48fr);
  gap: 22px;
  align-items: start;
}

.article-body {
  width: 100%;
  color: var(--cream);
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body > *:last-child {
  margin-bottom: 0;
}

.article-body,
.article-body p,
.article-body li,
.article-body blockquote,
.article-body figcaption,
.article-body span,
.article-body td,
.article-body th {
  color: rgba(244, 241, 234, 0.9) !important;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body pre,
.article-body table,
.article-body figure {
  margin: 0 0 1.35rem;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 2rem 0 0.85rem;
  color: var(--cream);
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6,
.article-body strong,
.article-body b {
  color: var(--cream) !important;
}

.article-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.article-body h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.article-body a {
  color: var(--green-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body strong {
  color: var(--cream);
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.55rem;
}

.article-body img {
  border-radius: 24px;
}

.article-body .wp-block-image,
.article-body .wp-block-gallery,
.article-body .wp-block-cover,
.article-body .wp-block-embed,
.article-body .wp-block-video {
  overflow: hidden;
  border-radius: 28px;
}

.article-body .wp-block-paragraph,
.article-body .wp-block-heading,
.article-body .wp-block-list,
.article-body .wp-block-quote,
.article-body .wp-block-table,
.article-body .wp-block-group,
.article-body .wp-block-columns,
.article-body .wp-block-column,
.article-body .wp-block-details,
.article-body .wp-block-preformatted {
  color: inherit !important;
}

.article-body .has-text-color,
.article-body [style*="color:"] {
  color: rgba(244, 241, 234, 0.9) !important;
}

.article-body .has-background {
  color: var(--cream) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 22px;
  padding: 18px 20px;
}

.article-body .wp-block-button__link {
  color: var(--text-dark) !important;
  background: linear-gradient(135deg, var(--green), var(--green-soft)) !important;
  border-radius: 999px;
}

.article-body .wp-block-separator {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.article-body pre,
.article-body code {
  font-family: Consolas, Monaco, monospace;
}

.article-body pre {
  padding: 18px 20px;
  border-radius: 20px;
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.article-sidebar h2 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.article-sidebar__section {
  display: grid;
}

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

.recommended-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease;
}

.recommended-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 136, 0.22);
}

.recommended-card__media {
  display: block;
  width: 92px;
  height: 72px;
  overflow: hidden;
  border-radius: 14px;
}

.recommended-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-card__headline {
  font-weight: 700;
  line-height: 1.45;
  color: var(--cream);
}

.recommended-empty {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 16px 18px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(0, 255, 136, 0.6);
  border-color: rgba(0, 255, 136, 0.6);
}

.form-notice {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 18px;
}

.form-notice--success {
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.22);
}

.form-notice--error {
  background: rgba(245, 239, 228, 0.12);
  border: 1px solid rgba(245, 239, 228, 0.24);
}

.faq-shell {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
}

.faq-trigger strong {
  font-size: 1.5rem;
  color: var(--green);
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 280ms ease;
  padding: 0 26px;
}

.faq-answer p {
  margin: 0 0 24px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.faq-item.is-open .faq-trigger strong {
  transform: rotate(45deg);
}

.conversion-panel,
.footer-shell {
  position: relative;
  border-radius: 40px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(140deg, rgba(0, 255, 136, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(16, 20, 20, 0.96), rgba(19, 37, 58, 0.92));
  box-shadow: var(--shadow);
}

.footer-signal {
  display: grid;
  gap: 10px;
  padding: 0 0 22px;
}

.footer-signal span {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--green);
}

.footer-signal p {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.conversion-panel {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.conversion-panel__copy {
  max-width: 720px;
}

.conversion-panel__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.editor-card {
  max-width: 900px;
}

.editor-card p:first-child {
  margin-top: 0;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding: 96px 0 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 15, 20, 0) 0%, rgba(7, 15, 20, 0.88) 14%, #08131d 100%);
  border-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.55), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), transparent 78%);
  opacity: 0.7;
}

.footer-shell__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
  max-width: 760px;
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-panel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 22px;
}

.footer-panel {
  padding: 2px 0 0 18px;
  border-radius: 0;
  border: 0;
  border-left: 2px solid rgba(0, 255, 136, 0.26);
  background: none;
}

.footer-panel span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-panel strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 239, 228, 0.9);
}

.footer-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 239, 228, 0.62);
  flex-wrap: wrap;
}

.footer-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 28px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.footer-strip {
  width: var(--container);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-110%);
  }
  50% {
    transform: translateX(85%);
  }
  100% {
    transform: translateX(240%);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 24px 56px rgba(0, 255, 136, 0.12);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.magnetic {
  will-change: transform;
}

@media (max-width: 1100px) {
  .header-pill {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-signal {
    display: none;
  }

  .hero__content,
  .service-showcase,
  .service-detail-grid,
  .portfolio-grid,
  .story-grid--posts,
  .footer-grid,
  .timeline-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .usp-stack,
  .feature-columns,
  .editorial-grid__stats {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout,
  .service-detail-grid,
  .split-story,
  .editorial-grid,
  .manifesto-grid,
  .faq-shell,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    min-height: 600px;
  }

  .hero-stage {
    inset: 28px 0 86px;
  }
}

@media (max-width: 1320px) {
  .header-pill {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    border-radius: 36px;
  }

  .header-signal {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
    width: 100%;
    overflow: visible;
  }

  .nav-list {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .header-pill__actions .pill-link {
    display: none;
  }

  .nav-list a {
    padding: 0 12px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 12px;
  }

  .header-pill {
    display: flex;
    min-height: 78px;
    border-radius: 28px;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    display: none;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-list a {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.98rem;
  }

  .header-pill__actions .pill-link,
  .header-pill__actions .button--header {
    display: none;
  }

  .header-pill__actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero__content,
  .service-showcase,
  .usp-stack,
  .feature-columns,
  .portfolio-grid,
  .story-grid--posts,
  .editorial-grid__stats,
  .timeline-ribbon,
  .footer-grid,
  .signal-strip,
  .footer-panel-row,
  .trust-ticker {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 4.2rem);
  }

  .subpage-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }

  .hero-composition {
    min-height: auto;
  }

  .hero-stage {
    position: relative;
    inset: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-stage__logo {
    min-height: 300px;
  }

  .hero-stage__note {
    position: static;
    max-width: none;
    margin: 0;
  }

  .hero-stage__grid {
    position: static;
    grid-template-columns: 1fr;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .floating-brief {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 18px;
  }

  .floating-brief--dark {
    right: auto;
    bottom: auto;
  }

  .conversion-panel,
  .footer-shell__top,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-signal {
    display: none;
  }

  .immersive-band {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .trust-ticker {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .header-pill {
    padding: 12px 14px;
  }

  .brand-lockup__mark {
    width: 58px;
    height: 58px;
  }

  .brand-lockup__copy strong {
    font-size: 1.2rem;
  }

  .hero,
  .section,
  .content-shell,
  .subpage-hero,
  .footer-shell,
  .footer-strip {
    width: min(100% - 20px, 1240px);
  }

  .feature-panel,
  .story-card,
  .service-card,
  .service-detail,
  .portfolio-card,
  .contact-panel,
  .editor-card,
  .feature-column,
  .timeline-card,
  .manifesto-card,
  .faq-item,
  .conversion-panel,
  .footer-shell,
  .footer-strip {
    padding: 22px;
  }

  .story-card__media {
    margin: -22px -22px 18px;
    height: 190px;
  }

  .hero-stage {
    padding: 18px;
  }

  .hero-stage__note {
    max-width: none;
  }

  .section {
    padding-top: 80px;
  }

  .footer-shell {
    border-radius: 28px;
  }

  .footer-strip {
    border-radius: 0 0 24px 24px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@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;
  }

  .luxury-marquee__track {
    animation: none;
  }

  .page-loader__mark,
  .page-loader__line::after {
    animation: none;
  }
}
