:root {
  --black: #050505;
  --black-2: #0c0c0d;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: #111112;
  --gold: #d9a441;
  --gold-2: #ffdc83;
  --gold-3: #8d5e17;
  --white: #f8f3e8;
  --muted: #b9b0a0;
  --line: rgba(255, 220, 131, 0.24);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 164, 65, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(255, 220, 131, 0.12), transparent 28rem),
    linear-gradient(180deg, #020202 0%, #0b0b0d 44%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  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: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, transparent, rgba(0, 0, 0, 0.72) 72%);
  content: "";
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 220, 131, 0.18), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: grid;
  width: clamp(52px, 6vw, 72px);
  height: clamp(52px, 6vw, 72px);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  background: linear-gradient(145deg, rgba(255, 220, 131, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 0 24px rgba(217, 164, 65, 0.14);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 950;
}

.brand img {
  width: clamp(96px, 11vw, 148px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(217, 164, 65, 0.24));
}

.brand-name {
  display: grid;
  gap: 2px;
}

.brand-name strong,
.brand-name small {
  display: block;
  line-height: 1;
}

.brand-name strong {
  font-size: clamp(1rem, 1.7vw, 1.32rem);
}

.brand-name small {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav a {
  position: relative;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  overflow: hidden;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:last-child {
  color: #0b0905;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a:last-child:hover {
  color: #0b0905;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 176px clamp(18px, 4vw, 56px) 0;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1220px, 100%);
  min-height: 700px;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
}

.hero-orbit {
  position: absolute;
  inset: 90px 0 auto 50%;
  width: min(72vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 220, 131, 0.16);
  border-radius: 50%;
  transform: translateX(-8%);
  animation: rotateSlow 22s linear infinite;
}

.hero-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 24px var(--gold);
}

.hero-orbit span:nth-child(1) {
  top: 10%;
  left: 24%;
}

.hero-orbit span:nth-child(2) {
  right: 6%;
  bottom: 33%;
}

.hero-orbit span:nth-child(3) {
  bottom: 8%;
  left: 38%;
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 7.6vw, 7.65rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.concept-card p,
.package-card p,
.tab-panel p,
.impact p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: translateX(-130%);
  transition: transform 550ms ease;
}

.button:hover::before {
  transform: translateX(130%);
}

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

.button.gold {
  color: #0a0703;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  box-shadow: 0 16px 34px rgba(217, 164, 65, 0.28);
}

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

.button.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: #121214;
}

.button.whatsapp {
  color: #06130b;
  background: linear-gradient(135deg, #d7ffe4, #4ee58a, #1f9d54);
  box-shadow: 0 16px 34px rgba(31, 157, 84, 0.24);
}

.hero-showcase {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  isolation: isolate;
}

.logo-stage {
  position: relative;
  display: grid;
  width: min(100%, 510px);
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 220, 131, 0.16), rgba(217, 164, 65, 0.045) 42%, transparent 72%),
    radial-gradient(circle, rgba(0, 0, 0, 0.1), transparent 70%);
  box-shadow: none;
}

.logo-stage::before,
.logo-stage::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 220, 131, 0.14);
  border-radius: inherit;
  content: "";
}

.logo-stage::after {
  inset: 18%;
  opacity: 0.42;
  animation: pulseRing 3.6s ease-in-out infinite;
}

.hero-brand-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(68%, 410px);
  height: auto;
  max-height: 68%;
  object-fit: contain;
  border-radius: 8px;
  opacity: 0.9;
  mix-blend-mode: screen;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.68)) saturate(0.92);
}

.hero-brand-mark span {
  display: grid;
  width: clamp(132px, 18vw, 210px);
  height: clamp(132px, 18vw, 210px);
  place-items: center;
  margin-bottom: 20px;
  border: 2px solid var(--line);
  border-radius: 22px;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 220, 131, 0.24), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 38px rgba(255, 220, 131, 0.08), 0 28px 54px rgba(0, 0, 0, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-brand-mark strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.hero-brand-mark small {
  margin-top: 14px;
  color: var(--gold-2);
  font-size: clamp(0.74rem, 1.2vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.32em;
}

.floating-card {
  position: absolute;
  max-width: 245px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 13, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--gold-2);
}

.floating-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-top {
  top: 70px;
  right: -4px;
}

.card-bottom {
  bottom: 58px;
  left: -22px;
  animation-delay: -1.7s;
}

.ticker {
  position: relative;
  z-index: 3;
  width: calc(100% + 112px);
  margin: 10px -56px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(217, 164, 65, 0.1), rgba(255, 220, 131, 0.16), rgba(217, 164, 65, 0.1));
  overflow: hidden;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker span {
  padding: 17px 28px;
  color: var(--gold-2);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 126px) 0;
}

#concepts,
#concept-gallery,
#services,
#packages,
#contact {
  scroll-margin-top: 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.concepts {
  padding-top: clamp(46px, 6vw, 76px);
}

.concepts .section-heading {
  grid-template-columns: minmax(130px, 0.22fr) minmax(0, 0.9fr) minmax(240px, 0.44fr);
  margin-bottom: 20px;
}

.concepts .section-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.65rem);
}

.impact {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: start;
}

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

.impact-grid article {
  min-height: 260px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.impact-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  font-weight: 950;
}

.signature {
  padding-top: 0;
}

.signature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 220, 131, 0.18), transparent 30rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.signature-panel h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.signature-points {
  display: grid;
  gap: 12px;
}

.signature-points article {
  padding: 18px;
  border: 1px solid rgba(255, 220, 131, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.signature-points span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-points p {
  margin: 0;
  color: var(--muted);
}

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

.concept-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.concept-snapshot-grid article {
  position: relative;
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 220, 131, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.concept-snapshot-grid article::after {
  position: absolute;
  right: -20px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 220, 131, 0.16);
  border-radius: 50%;
  content: "";
}

.concept-snapshot-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
}

.concept-snapshot-grid strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.12;
}

.concept-snapshot-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.live-work-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 34px 0 18px;
}

.live-work-heading .eyebrow {
  margin: 0;
}

.live-work-heading h3 {
  max-width: 560px;
  text-align: right;
}

.live-work-card {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 220, 131, 0.15), rgba(255, 255, 255, 0.025)),
    #0a0a0b;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.live-work-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 220, 131, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 131, 0.22), transparent 68%);
  content: "";
}

.live-work-card:hover {
  border-color: rgba(255, 220, 131, 0.72);
  box-shadow: 0 30px 90px rgba(217, 164, 65, 0.16);
  transform: translateY(-4px);
}

.live-work-card span {
  width: max-content;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-work-card strong {
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.02;
}

.live-work-card p {
  margin: 12px 0 14px;
  color: var(--muted);
}

.live-work-card em {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 950;
}

.concept-card,
.package-card,
.tab-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.concept-card,
.package-card {
  position: relative;
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.concept-card:hover,
.package-card:hover {
  border-color: rgba(255, 220, 131, 0.7);
  box-shadow: 0 30px 90px rgba(217, 164, 65, 0.16);
}

.concept-card > div:last-child,
.package-card > * {
  position: relative;
  z-index: 2;
}

.concept-card > div:last-child {
  margin-top: 20px;
}

.concept-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  min-height: 360px;
  align-items: center;
}

.mock-browser,
.phone-mock,
.social-stack,
.dashboard-mock,
.google-mock,
.product-mock,
.review-mock {
  position: relative;
  min-height: 285px;
  border: 1px solid rgba(255, 220, 131, 0.26);
  border-radius: 8px;
  background: #080809;
  overflow: hidden;
}

.browser-bar {
  height: 30px;
  border-bottom: 1px solid rgba(255, 220, 131, 0.18);
  background: linear-gradient(90deg, #d85c45 12px, #d9a441 12px 26px, #52a66d 26px 40px, transparent 40px) 14px center / auto 10px no-repeat;
}

.mock-hero {
  display: grid;
  min-height: 180px;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 76% 35%, rgba(255, 220, 131, 0.28), transparent 34%);
}

.mock-hero span,
.mock-hero strong {
  max-width: 310px;
}

.mock-hero span,
.phone-mock label,
.post span {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-hero strong {
  font-size: 1.75rem;
  line-height: 1;
}

.mock-hero button,
.phone-mock button {
  width: max-content;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #090703;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
}

.mock-row span {
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 220, 131, 0.25), rgba(255, 255, 255, 0.05));
}

.phone-mock {
  width: min(100%, 260px);
  min-height: 370px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 28px;
}

.phone-top {
  width: 86px;
  height: 6px;
  margin: 0 auto 26px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.24);
}

.phone-mock strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1;
}

.gold-line {
  display: block;
  width: 74px;
  height: 2px;
  margin: 0 0 22px;
  background: var(--gold);
}

.fake-input {
  margin: 6px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.social-stack {
  min-height: 370px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 220, 131, 0.2), transparent 36%),
    #070708;
}

.post {
  position: absolute;
  display: grid;
  width: 190px;
  min-height: 145px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, #171717, #070707);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.48);
}

.post strong {
  font-size: 1.18rem;
  line-height: 1.02;
}

.post-one {
  top: 32px;
  left: 34px;
  transform: rotate(-7deg);
}

.post-two {
  top: 112px;
  right: 22px;
  transform: rotate(6deg);
}

.post-three {
  right: 56px;
  bottom: 28px;
  transform: rotate(-3deg);
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 310px;
}

.dashboard-mock aside {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.dashboard-mock aside span,
.dash-grid span,
.dash-hero {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 220, 131, 0.28), rgba(255, 255, 255, 0.06));
}

.dashboard-mock aside span {
  height: 22px;
}

.dashboard-mock main {
  padding: 22px;
}

.dash-hero {
  height: 150px;
  margin-bottom: 16px;
}

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

.dash-grid span {
  height: 82px;
}

.google-mock {
  display: grid;
  align-content: end;
  padding: 18px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 220, 131, 0.25), transparent 34%),
    linear-gradient(145deg, #080809, #16120b);
}

.map-panel {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    linear-gradient(30deg, transparent 48%, rgba(255, 220, 131, 0.18) 49%, transparent 51%),
    linear-gradient(125deg, transparent 45%, rgba(255, 255, 255, 0.09) 46%, transparent 50%);
  background-size: 120px 120px, 170px 170px;
}

.map-panel span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 22px var(--gold);
}

.map-panel span:nth-child(1) {
  top: 20%;
  left: 23%;
}

.map-panel span:nth-child(2) {
  top: 46%;
  right: 20%;
}

.map-panel span:nth-child(3) {
  bottom: 22%;
  left: 44%;
}

.profile-panel {
  position: relative;
  z-index: 2;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.profile-panel strong,
.product-copy strong,
.review-mock strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.profile-panel p,
.product-copy p,
.review-mock p {
  margin: 8px 0;
}

.stars {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-weight: 950;
}

.profile-panel button,
.product-copy button {
  border: 0;
  border-radius: 8px;
  padding: 10px 13px;
  color: #090703;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 950;
}

.product-mock {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  padding: 16px;
  align-items: stretch;
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 220, 131, 0.18), transparent 32%),
    #070708;
}

.product-visual {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 220, 131, 0.2), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255, 220, 131, 0.08) 12px 13px);
}

.product-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.product-copy span {
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-mock {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 220, 131, 0.22), transparent 34%),
    #080809;
}

.review-score {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: inset 0 0 22px rgba(255, 220, 131, 0.12);
}

.review-bars {
  display: grid;
  gap: 9px;
}

.review-bars span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.08));
}

.review-bars span:nth-child(2) {
  width: 82%;
}

.review-bars span:nth-child(3) {
  width: 64%;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab-button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--muted);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tab-button.active,
.tab-button:hover {
  color: #090703;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  transform: translateY(-2px);
}

.tab-panel {
  display: none;
  min-height: 245px;
  padding: clamp(24px, 4vw, 44px);
}

.tab-panel.active {
  display: grid;
  align-content: center;
  gap: 14px;
}

.tab-panel h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.tab-panel a,
.package-card a {
  width: max-content;
  margin-top: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-2);
  font-weight: 950;
}

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

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 25px;
}

.package-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 220, 131, 0.24), rgba(255, 255, 255, 0.045)),
    #101010;
}

.package-card span {
  width: max-content;
  margin-bottom: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 22px;
  list-style: none;
}

.package-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 220, 131, 0.16);
  color: var(--muted);
  font-weight: 800;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(26px, 5vw, 56px);
  padding: clamp(24px, 5vw, 58px);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 220, 131, 0.24), transparent 30rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
}

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

.contact-email {
  margin-top: 18px;
}

.contact-email a {
  color: var(--gold-2);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 950;
}

label {
  display: grid;
  gap: 7px;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 220, 131, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(217, 164, 65, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.52);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 900;
}

@keyframes rotateSlow {
  to {
    transform: translateX(-8%) rotate(360deg);
  }
}

@keyframes pulseRing {
  50% {
    opacity: 0.38;
    transform: scale(1.08);
  }
}

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

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

@media (max-width: 1040px) {
  .hero-grid,
  .impact,
  .signature-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .concepts .section-heading {
    grid-template-columns: 1fr;
  }

  .concept-grid,
  .live-work-grid,
  .concept-snapshot-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

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

  .live-work-heading {
    align-items: start;
    flex-direction: column;
  }

  .live-work-heading h3 {
    text-align: left;
  }

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

  .concept-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

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

  .brand img {
    width: 82px;
    max-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-copy,
  .hero-actions {
    min-width: 0;
    max-width: 100%;
  }

  h1 {
    max-width: 9.5ch;
    font-size: 3.05rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .impact h2,
  .section-heading h2 {
    max-width: 10ch;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 31ch;
    font-size: 1.04rem;
  }

  .hero-actions,
  .quick-actions,
  .button {
    width: min(100%, calc(100vw - 36px));
  }

  .hero-showcase {
    min-height: auto;
    padding: 26px 0 0;
    overflow: visible;
  }

  .floating-card {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    animation: none;
  }

  .logo-stage {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .hero-logo {
    width: 78%;
    max-height: 78%;
  }

  .ticker {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .dashboard-mock {
    grid-template-columns: 78px 1fr;
  }

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

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

  .concept-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .concept-snapshot-grid article {
    min-height: 142px;
    padding: 13px;
  }

  .concept-snapshot-grid span {
    width: 28px;
    height: 28px;
    margin-bottom: 13px;
    font-size: 0.7rem;
  }

  .concept-snapshot-grid strong {
    font-size: 0.92rem;
  }

  .concept-snapshot-grid p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

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

  .site-footer p {
    text-align: left;
  }
}

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