:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-2: #0c1017;
  --panel: rgba(18, 23, 32, 0.74);
  --panel-solid: #111722;
  --panel-strong: #161d29;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f2ea;
  --muted: #aeb8c5;
  --soft: #768392;
  --accent: #f7931a;
  --accent-2: #ffb352;
  --mint: #79d8b4;
  --ink: #11100d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 22% 12%, rgba(247, 147, 26, 0.19), transparent 30rem),
    radial-gradient(circle at 82% 20%, rgba(121, 216, 180, 0.11), transparent 24rem),
    linear-gradient(180deg, #090b10 0%, #07090d 38%, #0a0d12 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 6.4rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.25rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.76);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

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

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

.brand img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(247, 147, 26, 0.34), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.nav-links .nav-subtle {
  color: var(--soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.section {
  padding: 112px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 74px 0 92px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -18%;
  top: 12%;
  width: 54%;
  height: 72%;
  border: 1px solid rgba(247, 147, 26, 0.2);
  transform: rotate(-8deg);
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.12), transparent 58%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(115deg, rgba(255, 255, 255, 0.045), transparent 34%);
}

.hero-signal {
  position: absolute;
  left: max(24px, calc((100% - 1160px) / 2));
  bottom: 46px;
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.55;
}

.hero-signal::before,
.hero-signal::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(247, 147, 26, 0.28);
  border-radius: 50%;
  animation: signal-spin 18s linear infinite;
}

.hero-signal::after {
  inset: 42px;
  border-color: rgba(121, 216, 180, 0.18);
  animation-duration: 11s;
  animation-direction: reverse;
}

.hero-signal span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 26px rgba(247, 147, 26, 0.75);
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.hero-signal span:nth-child(1) {
  top: 38px;
  left: 78px;
}

.hero-signal span:nth-child(2) {
  right: 34px;
  top: 94px;
  animation-delay: 0.4s;
}

.hero-signal span:nth-child(3) {
  left: 40px;
  bottom: 36px;
  animation-delay: 0.8s;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 800px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-kicker span {
  min-width: 0;
}

.hero-kicker img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(247, 147, 26, 0.34);
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px 10px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-brand-mark img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(247, 147, 26, 0.36);
}

.hero-title {
  display: grid;
  max-width: 860px;
  margin: 0 0 22px;
  font-size: 7.4rem;
  font-weight: 950;
  line-height: 0.86;
  overflow-wrap: anywhere;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: rgba(247, 242, 234, 0.08);
  -webkit-text-stroke: 1px rgba(247, 242, 234, 0.72);
  text-shadow: 0 24px 70px rgba(247, 147, 26, 0.12);
}

.hero-title span:last-child {
  width: fit-content;
  background: linear-gradient(92deg, #fff7e9 0%, #f7f2ea 42%, var(--accent-2) 74%, #ffe2a8 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: name-shine 7s ease-in-out infinite;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-role {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(247, 147, 26, 0.26);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(247, 147, 26, 0.1);
  color: var(--accent-2);
  font-weight: 900;
}

.hero-claim {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.14;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.section-actions,
.contact-actions,
.media-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 950;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(247, 147, 26, 0.22);
}

.button-secondary {
  border-color: rgba(247, 147, 26, 0.35);
  background: rgba(247, 147, 26, 0.12);
  color: var(--text);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.button-disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}

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

.hero-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-proof div {
  min-height: 86px;
  padding: 16px;
  background: rgba(15, 20, 29, 0.86);
}

.hero-proof span,
.hero-proof strong {
  display: block;
}

.hero-proof span {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-proof strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.18;
}

.hero-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 850;
}

.hero-contact-line a {
  text-decoration: underline;
  text-decoration-color: rgba(247, 147, 26, 0.5);
  text-underline-offset: 5px;
}

.hero-portrait {
  position: relative;
}

.portrait-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 147, 26, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  pointer-events: none;
}

.portrait-shell img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.96) contrast(1.04);
}

.portrait-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(7, 9, 13, 0.74);
  backdrop-filter: blur(18px);
}

.portrait-caption span,
.portrait-caption strong {
  display: block;
}

.portrait-caption span {
  color: var(--accent-2);
  font-weight: 950;
}

.portrait-caption strong {
  color: var(--text);
  font-size: 0.96rem;
}

.portrait-badge {
  position: absolute;
  z-index: 4;
  right: 22px;
  border: 1px solid rgba(247, 147, 26, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(7, 9, 13, 0.72);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.portrait-badge-top {
  top: 22px;
}

.portrait-badge-bottom {
  top: 70px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.78);
  padding: 16px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(247, 147, 26, 0.58);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 142px;
  padding: 22px;
  background: rgba(15, 20, 29, 0.92);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.trust-item span {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.story-section {
  padding-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: start;
}

.story-grid-compact {
  align-items: center;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.story-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-timeline {
  display: grid;
  gap: 12px;
}

.story-timeline article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.story-timeline article span {
  grid-row: 1 / 3;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.story-timeline h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
}

.story-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.opportunity-panel,
.media-card,
.booking-card,
.contact-panel,
.domain-teaser-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 300px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 147, 26, 0.34);
  background:
    linear-gradient(180deg, rgba(247, 147, 26, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.card-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-card h3 {
  font-size: 1.34rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.topic-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.topic-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px;
  background: rgba(15, 20, 29, 0.94);
}

.topic-item h3 {
  margin: 0;
}

.topic-item p {
  margin: 0;
  color: var(--muted);
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.075), transparent 42%),
    rgba(12, 16, 23, 0.74);
}

.collaboration-grid,
.booking-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
}

.opportunity-panel {
  padding: 28px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 32px;
  padding-left: 38px;
  color: var(--text);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(247, 147, 26, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.38), rgba(247, 147, 26, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.media-section {
  padding-bottom: 0;
}

.media-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.16), transparent 45%),
    linear-gradient(45deg, rgba(121, 216, 180, 0.08), transparent 60%),
    var(--panel-solid);
}

.media-copy p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-card {
  padding: 28px;
}

.media-kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.media-kit-card,
.offer-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.media-kit-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
}

.media-kit-card img {
  width: 100%;
  height: 230px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 50% 18%;
}

.media-kit-card p {
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.offer-card {
  padding: 30px;
}

.offer-card h2 {
  font-size: 2.4rem;
}

.offer-card p {
  color: var(--muted);
}

.offer-card-subtle {
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.booking-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px dashed rgba(247, 147, 26, 0.38);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.12), transparent),
    rgba(255, 255, 255, 0.035);
  text-align: center;
}

.booking-placeholder span,
.booking-placeholder strong {
  display: block;
}

.booking-placeholder span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-placeholder strong {
  max-width: 320px;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.18;
}

.about-grid {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.about-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-copy {
  max-width: 720px;
}

.prose {
  color: var(--muted);
  font-size: 1.06rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section-contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 32px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(247, 147, 26, 0.18), rgba(121, 216, 180, 0.08)),
    var(--panel-solid);
}

.contact-panel h2 {
  margin-bottom: 12px;
}

.contact-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-stack {
  display: grid;
  gap: 10px;
}

.contact-tile {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-tile:hover,
.contact-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 147, 26, 0.34);
  background: rgba(247, 147, 26, 0.08);
}

.contact-tile span {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-tile strong {
  color: var(--text);
  font-size: 1.05rem;
}

.domain-teaser {
  padding: 36px 0 96px;
}

.domain-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.domain-teaser-inner h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.domain-teaser-inner p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--soft);
}

.quiet-links {
  padding: 18px 0 42px;
}

.quiet-links-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--soft);
  font-size: 0.84rem;
}

.quiet-links-inner span {
  margin-right: 4px;
}

.quiet-links-inner a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.quiet-links-inner a:hover,
.quiet-links-inner a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(247, 147, 26, 0.35);
  background: rgba(247, 147, 26, 0.08);
  color: var(--text);
}

.domain-page-hero {
  padding-top: 116px;
}

.domain-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 46px;
  align-items: start;
}

.domain-page-hero h1 {
  max-width: 960px;
  font-size: 4.8rem;
}

.domain-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.domain-form h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.domain-form p {
  margin-bottom: 18px;
  color: var(--muted);
}

.domain-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 850;
}

.domain-form input,
.domain-form select,
.domain-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: rgba(7, 9, 13, 0.74);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.domain-form textarea {
  resize: vertical;
}

.domain-form input:focus,
.domain-form select:focus,
.domain-form textarea:focus {
  border-color: rgba(247, 147, 26, 0.7);
  box-shadow: 0 0 0 3px rgba(247, 147, 26, 0.12);
}

.domain-form button {
  width: 100%;
}

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

.domain-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 147, 26, 0.34);
}

.domain-card h2 {
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 1.45rem;
}

.domain-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.domain-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 147, 26, 0.3);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(247, 147, 26, 0.09);
  color: var(--text);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.domain-card a:hover,
.domain-card a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(247, 147, 26, 0.55);
  background: rgba(247, 147, 26, 0.16);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06080b;
  color: var(--soft);
}

.footer-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(247, 147, 26, 0.5);
  text-underline-offset: 4px;
}

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

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

@keyframes signal-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    transform: scale(0.78);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes name-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

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

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

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

@media (max-width: 1120px) {
  h1 {
    font-size: 5.2rem;
  }

  .hero-title {
    font-size: 6.2rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-layout,
  .collaboration-grid,
  .booking-grid,
  .about-grid,
  .media-card,
  .domain-hero-grid,
  .media-kit-grid,
  .offer-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-portrait,
  .about-photo {
    max-width: 620px;
  }

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

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

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 12, 18, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
  }

  .section {
    padding: 76px 0;
  }

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

  .hero-signal {
    display: none;
  }

  h1 {
    font-size: 3.7rem;
  }

  .hero-title {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-claim {
    font-size: 1.65rem;
  }

  .hero-text,
  .section-heading p,
  .media-copy p,
  .prose {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .contact-actions,
  .domain-teaser-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-layout {
    gap: 36px;
  }

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

  .hero-proof div {
    min-height: auto;
  }

  .portrait-shell img {
    height: 500px;
  }

  .trust-grid,
  .feature-grid,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .feature-card {
    min-height: auto;
  }

  .media-card,
  .contact-panel {
    padding: 24px;
  }

  .topic-item,
  .media-kit-card {
    grid-template-columns: 1fr;
  }

  .story-timeline article {
    grid-template-columns: 1fr;
  }

  .story-timeline article span {
    grid-row: auto;
  }

  .media-kit-card img {
    max-width: 240px;
  }

  .about-photo img {
    height: 460px;
  }

  .domain-teaser {
    padding-bottom: 72px;
  }

  .domain-page-hero h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-kicker {
    width: 100%;
    border-radius: var(--radius);
  }

  .hero-role {
    display: flex;
    width: fit-content;
    max-width: 100%;
  }

  .portrait-shell img {
    height: 430px;
  }

  .portrait-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .portrait-badge {
    right: 16px;
    font-size: 0.76rem;
  }
}
