:root {
  --bg: #14100c;
  --bg-soft: #1e1812;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5efe6;
  --muted: #b8a894;
  --bronze: #c9a86c;
  --copper: #b87333;
  --stone: #8b7d6b;
  --warm: #d4a574;
  --clay: #a67c52;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 168, 108, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(184, 115, 51, 0.16), transparent 30rem),
    linear-gradient(180deg, #14100c 0%, #1a1410 40%, #0f0c09 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

button,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-glow {
  position: fixed;
  z-index: -2;
  width: 26rem;
  height: 26rem;
  filter: blur(18px);
  border-radius: 999px;
  opacity: 0.3;
  pointer-events: none;
}

.page-glow-one {
  top: 16%;
  right: -10rem;
  background: var(--bronze);
  animation: drift 14s ease-in-out infinite alternate;
}

.page-glow-two {
  bottom: 8%;
  left: -8rem;
  background: var(--copper);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: var(--container);
  min-height: 70px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 16, 12, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(201, 168, 108, 0.32), rgba(184, 115, 51, 0.28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 35px rgba(201, 168, 108, 0.15);
}

.brand-mark span {
  width: 10px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--warm), var(--copper));
}

.brand-mark span:nth-child(1) { height: 14px; align-self: flex-end; }
.brand-mark span:nth-child(2) { height: 28px; }
.brand-mark span:nth-child(3) { height: 20px; align-self: flex-end; }

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  direction: ltr;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}

.main-nav a,
.ghost-link,
.login-link {
  padding: 10px 14px;
  color: #d8e8f3;
  border-radius: 999px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.ghost-link:hover,
.login-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: #1a1410;
  background: linear-gradient(135deg, var(--warm), var(--bronze) 48%, #e8c99a);
  box-shadow: 0 16px 36px rgba(201, 168, 108, 0.25);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(115%);
  transition: transform 650ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(201, 168, 108, 0.3);
}

.button:hover::after {
  transform: translateX(-115%);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.92rem;
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 96px);
  padding-top: 74px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(201, 168, 108, 0.28);
  border-radius: 999px;
  color: #e8d5b5;
  background: rgba(201, 168, 108, 0.1);
  font-weight: 800;
}

.pulse-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 0 rgba(201, 168, 108, 0.75);
  animation: pulse 1.8s infinite;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
.hero-copy h2 {
  background: linear-gradient(135deg, #ffffff 20%, #e8d5b5 48%, #d4a574 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  font-weight: 900;
}

.hero-copy p,
.section-heading p,
.split-section p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.85;
}

.hero-actions,
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 30px;
}

.social-proof {
  margin-top: 30px;
}

.social-proof p {
  margin: 0;
  color: #d4c4b0;
  font-size: 1rem;
}

.avatar-stack {
  display: flex;
  padding-inline-start: 14px;
}

.avatar-stack span {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  margin-inline-start: -14px;
  border: 2px solid #1a1410;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--bronze));
  font-weight: 900;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 560px;
  height: 560px;
  animation: rotate 26s linear infinite;
}

.orbit-two {
  width: 420px;
  height: 420px;
  border-style: dashed;
  animation: rotate 18s linear infinite reverse;
}

.orbit::after {
  position: absolute;
  top: 44px;
  right: 70px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 28px var(--bronze);
  content: "";
}

.sculpture-showcase {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(30, 24, 18, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.sculpture-showcase::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.5), transparent 36%, rgba(184, 115, 51, 0.35));
  opacity: 0.6;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.sculpture-visual {
  position: relative;
  height: 320px;
  margin-bottom: 20px;
  display: grid;
  place-items: end center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 85%, rgba(201, 168, 108, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.35), rgba(30, 24, 18, 0.75));
  overflow: hidden;
}

.sculpture-visual.has-artwork {
  place-items: center;
}

.sculpture-base {
  position: absolute;
  bottom: 24px;
  width: 140px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #5a4a3a, #3d3228);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sculpture-form {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 200px;
  margin-bottom: 36px;
  border-radius: 45% 45% 22% 22% / 28% 28% 12% 12%;
  background:
    linear-gradient(105deg, transparent 30%, rgba(255, 220, 180, 0.12) 50%, transparent 70%),
    linear-gradient(160deg, #c4a882 0%, #a67c52 35%, #7a5530 70%, #5c3d28 100%);
  box-shadow:
    inset -14px 0 28px rgba(0, 0, 0, 0.22),
    inset 10px 0 18px rgba(255, 220, 180, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.35);
  animation: float 5s ease-in-out infinite;
}

.sculpture-highlight {
  position: absolute;
  top: 30%;
  right: 38%;
  width: 12px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 230, 200, 0.5), transparent);
  filter: blur(4px);
}

.showcase-info h3 {
  margin: 10px 0 6px;
  font-size: 1.3rem;
}

.showcase-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.material-filters {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 8px;
  width: min(100%, 380px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(20, 16, 12, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.material-filters .setting-chip {
  flex: 1;
  min-height: 42px;
  font-size: 0.88rem;
}

.setting-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #e8d5b5;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: background 180ms ease, border 180ms ease, transform 180ms ease;
}

.setting-chip:hover,
.setting-chip.active {
  border-color: rgba(201, 168, 108, 0.55);
  background: rgba(201, 168, 108, 0.14);
  transform: translateY(-1px);
}

.chip-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 9px;
  color: #1a1410;
  background: linear-gradient(135deg, var(--bronze), var(--warm));
  font-weight: 900;
}

.status-pill {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  color: #1a1410;
  background: var(--bronze);
  font-size: 0.83rem;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #e8d5b5;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: float 4.8s ease-in-out infinite;
}

.floating-note span {
  color: var(--bronze);
  font-weight: 900;
}

.note-one {
  top: 92px;
  left: 22px;
}

.note-two {
  left: 54px;
  bottom: 122px;
  animation-delay: 1s;
}

.tools-ribbon {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.ribbon-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 20px 0;
  animation: marquee 30s linear infinite;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #e8d5b5;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.14), rgba(184, 115, 51, 0.12));
  font-weight: 800;
  white-space: nowrap;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 42px;
}

.prompt-board {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(184, 115, 51, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.06);
}

.prompt-board article {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(4, 18, 30, 0.52);
}

.prompt-board article::after {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 17px;
  width: 110px;
  height: 26px;
  content: "";
  opacity: 0.55;
  background: repeating-linear-gradient(
    90deg,
    var(--bronze) 0 4px,
    transparent 4px 12px
  );
  border-radius: 999px;
  mask-image: linear-gradient(90deg, transparent, black, transparent);
}

.prompt-board span {
  color: var(--bronze);
  font-weight: 900;
}

.prompt-board h3 {
  margin: 8px 0;
}

.prompt-board p,
.feature-card p,
.speaker-card p,
.steps p,
.pricing p,
.pricing li,
.testimonial-track p,
.faq p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-inline: auto;
}

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

.feature-card,
.speaker-card,
.steps article,
.pricing article,
.testimonial-track article,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.feature-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  transition: transform 200ms ease, background 200ms ease, border 200ms ease;
}

.feature-card::after {
  position: absolute;
  inset-inline-end: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  content: "";
  background: rgba(201, 168, 108, 0.15);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 108, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #1a1410;
  background: linear-gradient(135deg, var(--bronze), var(--warm));
  font-weight: 900;
}

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

.speaker-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform 180ms ease, border 180ms ease;
}

.speaker-card:hover,
.speaker-card.active,
.gallery-card:hover,
.gallery-card.active {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 108, 0.45);
}

.gallery-card {
  cursor: pointer;
}

.gallery-card.filtered-out {
  opacity: 0.35;
  pointer-events: none;
}

.gallery-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bronze-thumb {
  background: linear-gradient(160deg, #d4a574, #8b5a2b);
}

.bronze-thumb.alt {
  background: linear-gradient(200deg, #c9a86c, #6b4423);
  border-radius: 50% 50% 14px 14px;
}

.bronze-thumb.wide {
  background: linear-gradient(135deg, #b87333 30%, #d4a574 70%);
  clip-path: polygon(20% 100%, 50% 10%, 80% 100%);
}

.stone-thumb {
  background: linear-gradient(180deg, #c4b8a8, #7a6f62);
}

.stone-thumb.alt {
  background: linear-gradient(120deg, #a89f92, #5a5248);
  border-radius: 8px;
}

.wood-thumb {
  background: linear-gradient(180deg, #c4a882, #7a5530);
}

.wood-thumb.alt {
  background: linear-gradient(200deg, #a67c52, #5c3d28);
  border-radius: 50% 50% 14px 14px;
}

.wood-thumb.wide {
  background: linear-gradient(135deg, #8b6340 30%, #c4a882 70%);
  clip-path: polygon(20% 100%, 50% 10%, 80% 100%);
}

.wood-thumb.grain {
  background:
    repeating-linear-gradient(175deg, transparent, transparent 3px, rgba(0, 0, 0, 0.08) 3px, rgba(0, 0, 0, 0.08) 4px),
    linear-gradient(180deg, #d4b896, #8b6340);
}

.wood-thumb.deep {
  background: linear-gradient(120deg, #6b4c30, #3d2817);
  border-radius: 8px;
}

.gallery-year {
  color: var(--bronze);
  font-weight: 900;
  font-size: 0.9rem;
}

.speaker-avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.95), rgba(201, 168, 108, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-size: 1.35rem;
  font-weight: 900;
}

.speaker-card h3,
.speaker-card p {
  margin: 0;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}

.mini-wave span {
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: var(--bronze);
  animation: meter 760ms ease-in-out infinite;
}

.mini-wave span:nth-child(2) { animation-delay: 100ms; }
.mini-wave span:nth-child(3) { animation-delay: 200ms; }
.mini-wave span:nth-child(4) { animation-delay: 300ms; }

.podcast {
  position: relative;
}

.chat-studio {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(201, 168, 108, 0.13), rgba(184, 115, 51, 0.12)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.recording-pill {
  justify-self: start;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(184, 115, 51, 0.22);
  font-weight: 900;
  direction: ltr;
}

.chat-bubble {
  width: min(86%, 430px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(2, 13, 23, 0.55);
}

.chat-bubble span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze);
  font-weight: 900;
}

.chat-bubble p {
  margin: 0;
  color: #e8d5b5;
  line-height: 1.75;
}

.chat-bubble.guest {
  justify-self: end;
  background: rgba(255, 255, 255, 0.1);
}

.typing-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--muted);
}

.typing-line span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  animation: blink 1s infinite;
}

.typing-line span:nth-child(2) { animation-delay: 150ms; }
.typing-line span:nth-child(3) { animation-delay: 300ms; }

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

.steps article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #1a1410;
  background: linear-gradient(135deg, var(--warm), var(--bronze));
  font-size: 1.4rem;
  font-weight: 900;
}

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

.use-grid span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8d5b5;
  font-weight: 900;
  text-align: center;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-block: 46px;
}

.stat {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(201, 168, 108, 0.12), rgba(255, 255, 255, 0.06));
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: white;
  font-weight: 900;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

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

.pricing article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 28px;
}

.featured-plan {
  position: relative;
  transform: translateY(-16px);
  border-color: rgba(201, 168, 108, 0.55) !important;
  background:
    radial-gradient(circle at top, rgba(201, 168, 108, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.09) !important;
}

.plan-name {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #e8d5b5;
  background: rgba(201, 168, 108, 0.12);
  font-weight: 900;
}

.pricing h3 {
  margin-bottom: 0;
  font-size: 2.3rem;
}

.pricing small {
  color: var(--muted);
  font-size: 1rem;
}

.pricing ul {
  display: grid;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.pricing li::before {
  margin-inline-end: 8px;
  color: var(--bronze);
  content: "✓";
  font-weight: 900;
}

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

.testimonial-track article {
  padding: 24px;
}

.testimonial-track p {
  min-height: 86px;
  color: #e8d5b5;
}

.testimonial-track strong,
.testimonial-track span {
  display: block;
}

.testimonial-track span {
  margin-top: 4px;
  color: var(--muted);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 20px;
}

.faq summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-bottom: 20px;
}

.cta {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: none;
  opacity: 0.22;
}

.cta-bg.has-image img {
  filter: saturate(0.85) brightness(0.72);
}

.cta-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border: 1px solid rgba(201, 168, 108, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 28%, rgba(184, 115, 51, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(201, 168, 108, 0.14), rgba(184, 115, 51, 0.16));
  box-shadow: var(--shadow);
}

.cta-copy {
  display: grid;
  gap: 18px;
  width: 100%;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--bronze);
  border-bottom: 1px solid rgba(201, 168, 108, 0.35);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-phone:hover {
  color: var(--warm);
  border-color: rgba(212, 165, 116, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-actions .button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 108, 0.28);
  background: rgba(20, 16, 12, 0.45);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}

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

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 108, 0.65);
  background: rgba(201, 168, 108, 0.14);
  color: var(--bronze);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 !important;
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 108, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--bronze);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(201, 168, 108, 0.16);
  border-color: rgba(201, 168, 108, 0.55);
}

.about-side,
.studio-side {
  display: grid;
  gap: 16px;
}

.section-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(201, 168, 108, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.section-media:not(.has-image) {
  display: none;
}

.about-media,
.studio-media {
  aspect-ratio: 4 / 3;
}

.vision-banner {
  aspect-ratio: 21 / 6;
  max-height: 280px;
  margin-bottom: 28px;
}

.brand-mark.has-logo {
  display: grid;
  place-items: center;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pillar-image,
.step-image,
.plan-image {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 14px;
}

.pillar-image {
  aspect-ratio: 16 / 9;
}

.step-image {
  aspect-ratio: 4 / 3;
  margin: -8px -8px 16px;
}

.plan-image {
  aspect-ratio: 16 / 10;
  margin: -4px -4px 18px;
}

.feature-card.has-cover {
  padding-top: 0;
}

.feature-card .card-cover {
  height: 148px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.feature-card .card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-grid span.has-image {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.inspiration-image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.inspiration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-track article.has-avatar {
  display: grid;
  gap: 12px;
}

.highlight-avatar {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.highlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps article.has-step-image {
  padding-top: 0;
}

.cta-card h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 28px;
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 14px;
}

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

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

@keyframes wave {
  0%,
  100% { transform: scaleY(0.65); }
  50% { transform: scaleY(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 108, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(201, 168, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 108, 0); }
}

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

@keyframes meter {
  0%,
  100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1.5); }
}

@keyframes float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes drift {
  to { transform: translate3d(34px, -24px, 0) scale(1.08); }
}

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

@keyframes blink {
  0%,
  100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 28px, 760px);
  }

  .site-header {
    border-radius: 24px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

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

  .site-header.nav-open .main-nav {
    order: 3;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.nav-open .header-actions {
    order: 4;
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .site-header.nav-open .header-actions > * {
    flex: 1;
    text-align: center;
  }

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

  .hero {
    gap: 24px;
    min-height: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .feature-grid,
  .voice-grid,
  .steps,
  .pricing-grid,
  .testimonial-track,
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .featured-plan {
    transform: none;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 22px, 520px);
  }

  .site-header {
    top: 8px;
    margin-top: 8px;
    padding: 10px;
  }

  .brand-text small {
    display: none;
  }

  .section-pad {
    padding: 68px 0;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 24px;
  }

  .orbit {
    display: none;
  }

  .sculpture-showcase {
    padding: 18px;
    border-radius: 22px;
  }

  .material-filters {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .material-filters .setting-chip {
    min-width: calc(50% - 4px);
  }

  .floating-note {
    display: none;
  }

  .feature-grid,
  .voice-grid,
  .steps,
  .pricing-grid,
  .testimonial-track,
  .stats-band,
  .use-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .speaker-card {
    grid-template-columns: auto 1fr;
  }

  .gallery-year {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .cta-card {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    justify-content: center;
    width: 100%;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
    border-radius: 14px;
  }
}

.gallery-card .gallery-photo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  padding: 4px;
  background:
    radial-gradient(circle at 50% 70%, rgba(201, 168, 108, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sculpture-visual .featured-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 18px 24px 12px;
  border-radius: 20px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 72%, rgba(201, 168, 108, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(20, 16, 12, 0.45), rgba(30, 24, 18, 0.82));
}

.vision-banner img {
  object-fit: contain;
  object-position: center;
  padding: 24px 48px;
  max-height: 280px;
}

body.cms-loading main {
  opacity: 0.72;
  transition: opacity 300ms ease;
}

body.cms-ready main {
  opacity: 1;
}

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