/* Shivora Labs Site Stylesheet */

:root {
  /* Brand Guidelines Palettes */
  --bg: #05060a;
  --panel: #0d0f16;
  --panel-2: #11141d;
  --panel-3: #151923;
  --line: rgba(232, 234, 241, 0.08);
  --line-strong: rgba(232, 234, 241, 0.16);
  --text: #f6f7fb;
  --soft: #d9dce6;
  --muted: #9fa5b4;
  
  /* Brand Guide Official Accent Colors */
  --cosmic-cyan: #00e5ff;
  --electric-blue: #0052ff;
  --neon-purple: #8a2be2;
  --soft-silver: #e2e4f0;
  --aura-violet: #bd00ff;
  
  /* Accents */
  --gold: #e4c37f;
  --gold-2: #b28742;
  --teal: #6bc8bb;
  --success: #4ade80;
  
  /* Utilities */
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  --radius: 12px;
  --radius-lg: 24px;
  --max: 1140px;
  
  /* Typography */
  --font-display: 'Outfit', 'Sora', 'Inter', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px; /* Offset for sticky header */
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Cosmic Glow Background Elements */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  pointer-events: none;
}

.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.aurora-1 {
  position: absolute;
  top: -200px;
  left: 60%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  filter: blur(80px);
}

.aurora-2 {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 239, 229, 0.1) 0%, transparent 70%);
  filter: blur(100px);
}

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

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

main,
section,
.shell,
.hero-content,
.hero-visual,
.trust-row,
.snapshot,
.product-panel,
.contact-wrap {
  min-width: 0;
}

.shell {
  width: min(var(--max), calc(100% - 48px));
  max-width: calc(100vw - 48px);
  margin: 0 auto;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  background: rgba(5, 6, 10, 0.9);
  border-color: rgba(232, 234, 241, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-family: var(--font-display);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: rotate(5deg) scale(1.05);
}

.brand span {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--cosmic-cyan);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cosmic-cyan), var(--electric-blue));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  gap: 8px;
  white-space: nowrap;
}

.button.secondary {
  background: var(--glass);
  color: var(--soft);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  color: #05060a;
  background: linear-gradient(135deg, #ffffff, var(--soft-silver));
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--cosmic-cyan), var(--electric-blue));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(82, 239, 229, 0.25);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.mobile-drawer a:hover {
  color: var(--text);
}

/* Global Section Layout */
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(36px, 5vw, 60px);
  min-height: calc(100svh - 80px);
}

.hero-content {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 26px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(82, 239, 229, 0.15);
  border-radius: 999px;
  background: rgba(82, 239, 229, 0.05);
  color: var(--cosmic-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cosmic-cyan);
  box-shadow: 0 0 10px var(--cosmic-cyan);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.6vw, 4.05rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, var(--cosmic-cyan) 60%, var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.6;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.trust-item {
  min-height: 112px;
  padding: 18px;
  border-radius: 0;
  border: 0;
  background: rgba(13, 15, 22, 0.4);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}

.trust-item:hover {
  border-color: rgba(82, 239, 229, 0.2);
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Brand Card */
.hero-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: stretch;
}

.brand-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 300px;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
}

.brand-card .glow-sphere {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(126, 215, 197, 0.12) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.brand-card img {
  position: relative;
  z-index: 2;
  width: min(82%, 390px);
  height: auto;
  object-fit: contain;
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.snapshot div {
  min-height: 112px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.snapshot div:last-child {
  border-right: none;
}

.snapshot span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.snapshot strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
}

.section-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-kicker {
  color: var(--cosmic-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lede {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  background: rgba(13, 15, 22, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 280px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cosmic-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(82, 239, 229, 0.25);
  background: rgba(13, 15, 22, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(82, 239, 229, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

/* Special styling for Web Development card to standout as recommended studio output */
.service-card.featured {
  background: rgba(20, 20, 20, 0.75);
  border-color: rgba(201, 168, 76, 0.25);
}

.service-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.service-card.featured:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  color: var(--cosmic-cyan);
  transform: scale(1.08);
}

.service-card.featured:hover .service-icon {
  color: var(--neon-purple);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* About Trust */
.about-trust {
  padding-top: 24px;
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(13, 15, 22, 0.42);
  box-shadow: var(--shadow);
}

.about-panel h2 {
  max-width: 780px;
}

.about-panel > p {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.about-proof div {
  min-height: 118px;
  padding: 20px;
  background: rgba(7, 9, 16, 0.68);
}

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

.about-proof strong {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

/* Product Panel & CSS Phone Mockup */
.product-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: rgba(13, 15, 22, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  min-height: 0;
  max-width: 900px;
  margin: 0 auto;
}

.product-copy {
  padding: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: max-content;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.product-title img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-title span {
  color: var(--cosmic-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.35vw, 2.12rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-copy p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--cosmic-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cosmic-cyan);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 0.95rem;
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--cosmic-cyan);
  flex-shrink: 0;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* CSS Mockup Container */
.product-visual {
  background: linear-gradient(135deg, #0d1326 0%, #060814 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 410px;
  padding: clamp(18px, 3.5vw, 30px);
  border-left: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(82, 239, 229, 0.08) 0%, transparent 70%);
  filter: blur(30px);
}

/* CSS Phone Frame */
.phone-mockup {
  width: min(220px, 70vw);
  height: min(440px, calc(100svh - 280px));
  min-height: 360px;
  background: #090a0f;
  border: 10px solid #1a1e29;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 4px rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

/* Speaker & Camera Notch */
.phone-notch {
  width: 110px;
  height: 20px;
  background: #1a1e29;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-notch::before {
  content: "";
  width: 40px;
  height: 4px;
  background: #0d0f16;
  border-radius: 2px;
}

/* Product Pipeline */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.coming-card {
  background: rgba(13, 15, 22, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s;
  position: relative;
}

.coming-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.status-pill {
  width: fit-content;
  border: 1px solid rgba(82, 239, 229, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--cosmic-cyan);
  background: rgba(82, 239, 229, 0.05);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coming-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.coming-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: auto;
}

.mini-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.mini-links a:hover {
  color: var(--text);
}

.process-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
  margin-top: clamp(28px, 3vw, 40px);
}

.process-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

/* Studio Process Timeline Layout */
.process-grid-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 32px;
}

.process-grid-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.process-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--muted);
  transition: all 0.3s;
}

.process-step:hover .process-badge {
  background: var(--bg);
  border-color: var(--cosmic-cyan);
  color: var(--cosmic-cyan);
  box-shadow: 0 0 15px rgba(82, 239, 229, 0.2);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Wrap Area */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 15, 22, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.contact-card p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.contact-side {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-side dl {
  display: grid;
  gap: 28px;
}

.contact-side dt {
  color: var(--cosmic-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-side dd {
  color: var(--soft-silver);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Inline form inside CTA area */
.contact-mini-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.contact-mini-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-mini-form .field.full-width {
  grid-column: span 2;
}

.contact-mini-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--soft);
}

.contact-mini-form input,
.contact-mini-form select,
.contact-mini-form textarea {
  background: rgba(5, 6, 10, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.contact-mini-form input:focus,
.contact-mini-form select:focus,
.contact-mini-form textarea:focus {
  outline: none;
  border-color: var(--cosmic-cyan);
  box-shadow: 0 0 0 3px rgba(82, 239, 229, 0.1);
}

.contact-mini-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-mini-form .actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* Footer Section */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: rgba(3, 4, 8, 0.5);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand {
  font-size: 1.15rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-col h4 {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--cosmic-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
}

.footer-legal-block {
  display: grid;
  gap: 4px;
}

.footer-legal-block strong {
  color: var(--text);
  font-size: 0.9rem;
}

.footer-legal-block span {
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--text);
}

.back-to-top {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s;
}

.back-to-top:hover {
  color: var(--cosmic-cyan);
}

/* Shivora Assistant */
.assistant-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  font-family: var(--font-sans);
}

.assistant-launcher {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(82, 239, 229, 0.28);
  border-radius: 999px;
  padding: 0 18px 0 10px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(17, 20, 29, 0.92), rgba(7, 9, 16, 0.96)),
    var(--panel);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(82, 239, 229, 0.1);
  cursor: pointer;
}

.assistant-launcher img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.assistant-launcher span {
  font-weight: 750;
  font-size: 0.9rem;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 120px));
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(82, 239, 229, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(17, 20, 29, 0.98), rgba(7, 8, 14, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(18px);
}

.assistant-widget.is-open .assistant-panel {
  display: grid;
}

.assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.assistant-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-title img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.assistant-title strong,
.assistant-title span {
  display: block;
}

.assistant-title strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.assistant-title span {
  color: var(--muted);
  font-size: 0.78rem;
}

.assistant-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.assistant-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow-y: auto;
}

.assistant-message {
  max-width: 88%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 13px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.9rem;
  line-height: 1.45;
}

.assistant-message.user {
  align-self: flex-end;
  border-color: rgba(82, 239, 229, 0.2);
  color: var(--text);
  background: rgba(82, 239, 229, 0.08);
}

.assistant-message.bot {
  align-self: flex-start;
}

.assistant-message a {
  color: var(--cosmic-cyan);
  font-weight: 700;
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.assistant-chip {
  border: 1px solid rgba(82, 239, 229, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--soft);
  background: rgba(82, 239, 229, 0.055);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.assistant-footer {
  border-top: 1px solid var(--line);
  padding: 12px;
}

.assistant-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.assistant-input-row input,
.assistant-handoff input,
.assistant-handoff textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--text);
  background: rgba(5, 6, 10, 0.64);
  font: inherit;
  font-size: 0.88rem;
}

.assistant-input-row button,
.assistant-handoff button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 14px;
  color: #05060a;
  background: linear-gradient(135deg, #ffffff, var(--soft-silver));
  font-weight: 760;
  cursor: pointer;
}

.assistant-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.assistant-secondary {
  border: 0;
  padding: 0;
  color: var(--cosmic-cyan);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.assistant-handoff {
  display: none;
  gap: 9px;
  margin-top: 10px;
}

.assistant-handoff.is-visible {
  display: grid;
}

.assistant-handoff textarea {
  min-height: 74px;
  resize: vertical;
}

.assistant-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Responsive Breakpoints */
@media (max-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid-timeline::before {
    display: none;
  }
  
  .product-panel {
    grid-template-columns: 1fr;
  }
  
  .product-visual {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 40px;
  }
  
  .eyebrow, .hero-copy, .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }
  
  .trust-row {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links,
  .nav .button,
  .nav > .button {
    display: none !important;
  }
  
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .assistant-widget {
    right: 16px;
    bottom: 16px;
  }

  .assistant-launcher span {
    display: none;
  }

  .assistant-launcher {
    min-height: 54px;
    padding: 0 9px;
  }

  .assistant-panel {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 82px;
    width: min(360px, calc(100vw - 24px));
    max-height: calc(100svh - 106px);
  }

  .assistant-message {
    max-width: 100%;
  }

  .assistant-input-row {
    grid-template-columns: 1fr;
  }

  .assistant-input-row button {
    width: 100%;
  }

  .assistant-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .shell {
    width: min(var(--max), calc(100% - 32px));
    max-width: calc(100vw - 32px);
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }
  
  section {
    padding: 48px 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.55rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }

  .hero {
    padding-top: 42px;
    text-align: left;
  }

  .hero-content,
  .hero-visual {
    min-width: 0;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: left;
    letter-spacing: 0.12em;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .button {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 14px;
  }

  .trust-row,
  .snapshot {
    width: 100%;
    max-width: 100%;
  }

  .product-copy {
    padding: 24px;
  }

  .product-links,
  .contact-mini-form .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-visual {
    min-height: 360px;
    padding: 20px;
  }

  .phone-mockup {
    width: min(210px, 72vw);
    height: 390px;
    min-height: 0;
    border-width: 8px;
    border-radius: 34px;
  }
  
  .trust-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .coming-grid,
  .about-proof,
  .process-grid-timeline {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .contact-mini-form {
    grid-template-columns: 1fr;
  }
  
  .contact-mini-form .field.full-width {
    grid-column: span 1;
  }
  
  .contact-mini-form .actions {
    grid-column: span 1;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Editorial premium experiment */
:root {
  --bg: #0d0d0d;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.055);
  --panel-3: rgba(255, 255, 255, 0.08);
  --line: rgba(245, 245, 240, 0.1);
  --line-strong: rgba(245, 245, 240, 0.18);
  --text: #f5f5f0;
  --soft: #dedbd0;
  --muted: #a1a1a1;
  --cosmic-cyan: #52efe5;
  --electric-blue: #6f8dff;
  --neon-purple: #c9a84c;
  --soft-silver: #f5f5f0;
  --gold: #c9a84c;
  --gold-2: #f0d78c;
  --teal: #7ed7c5;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
  --radius: 8px;
  --radius-lg: 8px;
  --max: 1180px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Work Sans', system-ui, -apple-system, sans-serif;
}

body {
  background:
    linear-gradient(90deg, rgba(245, 245, 240, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(245, 245, 240, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 74% 13%, rgba(201, 168, 76, 0.16), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(82, 239, 229, 0.08), transparent 28%),
    var(--bg);
  background-size: 120px 120px, 120px 120px, auto, auto, auto;
}

body::before,
.aurora-bg {
  display: none;
}

.site-header {
  background: rgba(13, 13, 13, 0.84);
  border-bottom-color: var(--line);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.94);
  border-color: var(--line-strong);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
}

.nav .brand {
  justify-self: start;
}

.nav > .button {
  justify-self: end;
}

.brand {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.brand img {
  border: 1px solid rgba(240, 215, 140, 0.5);
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.16);
}

.brand span {
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

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

.nav-links {
  gap: 26px;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-links a::after {
  background: var(--gold);
}

.button {
  border-radius: 8px;
  letter-spacing: 0;
  font-weight: 600;
}

.button.primary {
  border-color: rgba(240, 215, 140, 0.6);
  color: #10100f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 38px rgba(201, 168, 76, 0.18);
}

.button.primary:hover {
  color: #0d0d0d;
  background: linear-gradient(135deg, #fff1b8, var(--gold));
  box-shadow: 0 22px 44px rgba(201, 168, 76, 0.26);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

section {
  padding: clamp(34px, 4vw, 54px) 0;
}

section[id] {
  scroll-margin-top: 78px;
}

#studio,
#cadens,
#pipeline,
#process,
#contact {
  padding-top: clamp(56px, 6vw, 80px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

#process {
  padding-bottom: clamp(32px, 3.5vw, 48px);
}

.page-section {
  display: flex;
  flex-direction: column;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(44px, 5vw, 72px);
  min-height: auto;
  align-items: stretch;
  padding-top: clamp(58px, 6vw, 86px);
}

.hero-content {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.hero-content > div:first-child,
.hero-visual .featured-work-card {
  align-self: start;
}

.hero-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(240, 215, 140, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-signature img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 215, 140, 0.48);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.16);
}

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

.hero-signature strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.1;
}

.hero-signature span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.product-title span,
.snapshot span,
.contact-side dt,
.footer-links-col h4 {
  color: var(--gold-2);
  letter-spacing: 0.14em;
}

.eyebrow {
  border-color: rgba(240, 215, 140, 0.34);
  background: rgba(201, 168, 76, 0.08);
  border-radius: 999px;
}

.eyebrow::before {
  background: var(--gold-2);
  box-shadow: 0 0 12px rgba(240, 215, 140, 0.65);
}

h1,
h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5.25vw, 5.1rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.05rem, 3vw, 2.75rem);
  line-height: 1;
}

h3,
.service-card h3,
.coming-card h3,
.process-step h3 {
  letter-spacing: 0;
}

.text-gradient {
  color: var(--muted);
  background: none;
}

.hero-copy,
.section-lede {
  color: var(--soft);
  font-weight: 300;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
}

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

.process-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(100%, 650px);
  margin-top: 12px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.process-breadcrumb span {
  flex: 1 1 145px;
  padding: 12px 16px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.process-breadcrumb span:last-child {
  border-right: 0;
}

.trust-row,
.snapshot,
.about-proof {
  border-radius: 8px;
  background: var(--line);
}

.trust-item,
.snapshot div,
.about-proof div,
.service-card,
.coming-card,
.process-step,
.contact-card,
.contact-side,
.about-panel,
.product-panel {
  background: rgba(255, 255, 255, 0.035);
}

.trust-item {
  min-height: 98px;
}

.hero-visual {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.brand-card {
  max-width: none;
  min-height: auto;
}

.featured-work-card {
  display: grid;
  gap: 18px;
  place-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 13, 0.76);
  box-shadow: var(--shadow);
}

.work-card-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.work-card-head span,
.cadens-session-card span,
.session-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-card-head h2 {
  margin: 6px 0 0;
  font-size: clamp(2.75rem, 4.7vw, 4.3rem);
}

.work-card-head p {
  color: var(--gold-2);
  font-size: 1rem;
}

.work-card-head img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(240, 215, 140, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.cadens-session-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(82, 239, 229, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(82, 239, 229, 0.12), rgba(255, 255, 255, 0.025) 46%, rgba(201, 168, 76, 0.06)),
    rgba(5, 10, 12, 0.72);
}

.session-topline,
.session-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.session-topline strong {
  margin-right: auto;
  color: var(--text);
  font-size: 0.92rem;
}

.session-metric {
  display: grid;
  gap: 4px;
}

.session-metric strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 3.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
}

.session-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 245, 240, 0.1);
}

.session-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold-2));
}

.session-grid > div {
  flex: 1;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.session-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
}

.text-link-arrow {
  width: fit-content;
  color: var(--gold-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.snapshot {
  background: transparent;
}

.snapshot div {
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
}

.section-head {
  max-width: 940px;
  margin-bottom: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.service-card,
.coming-card {
  min-height: 228px;
  border-color: var(--line);
  box-shadow: none;
}

.service-card {
  gap: 24px;
  padding: 24px 22px;
}

.coming-card {
  gap: 16px;
  padding: 26px 24px;
}

.service-card::before {
  background: var(--gold);
}

.service-card.featured {
  border-color: rgba(240, 215, 140, 0.28);
  background: rgba(201, 168, 76, 0.06);
}

.service-card.featured::before {
  background: var(--gold-2);
}

.service-card:hover,
.service-card.featured:hover,
.coming-card:hover {
  border-color: rgba(240, 215, 140, 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.service-icon {
  color: var(--gold-2);
}

.about-panel,
.product-panel,
.contact-card,
.contact-side {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.product-panel {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  background: rgba(255, 255, 255, 0.035);
}

.product-copy {
  justify-content: flex-start;
  padding: clamp(20px, 2.6vw, 28px);
}

.product-title img {
  border-color: rgba(240, 215, 140, 0.32);
}

.status-indicator,
.status-pill,
.mini-links a,
.assistant-secondary,
.assistant-message a,
.back-to-top:hover,
.footer-links-col a:hover {
  color: var(--gold-2);
}

.status-dot {
  background: var(--teal);
}

.product-visual {
  background:
    linear-gradient(145deg, rgba(82, 239, 229, 0.08), rgba(201, 168, 76, 0.06)),
    rgba(255, 255, 255, 0.025);
  min-height: 230px;
  align-items: center;
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

.product-visual img {
  width: min(136px, 30vw) !important;
}

.product-panel .button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.product-visual::after {
  background: radial-gradient(circle, rgba(240, 215, 140, 0.1) 0%, transparent 70%);
}

.process-grid-timeline::before {
  background: var(--line-strong);
}

.process-step {
  gap: 14px;
  min-height: 164px;
  padding: 0;
  border: 0;
}

.process-badge {
  border-radius: 8px;
  border-color: var(--line-strong);
  color: var(--gold-2);
}

.process-step:hover .process-badge {
  border-color: var(--gold-2);
  color: var(--gold-2);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.16);
}

.contact-mini-form input:focus,
.contact-mini-form select:focus,
.contact-mini-form textarea:focus,
.assistant-input-row input:focus,
.assistant-handoff input:focus,
.assistant-handoff textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.contact-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: stretch;
}

.contact-card,
.contact-side {
  height: 100%;
}

.contact-card {
  padding: clamp(24px, 2.8vw, 32px);
}

.contact-card h2 {
  max-width: 680px;
  font-size: clamp(2.25rem, 3.4vw, 3rem);
}

.contact-card p {
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-side {
  justify-content: space-between;
  min-height: 100%;
}

.contact-side dl {
  align-content: start;
}

#inline-form-status.is-visible,
#inline-form-status[style*="block"] {
  display: block !important;
}

.contact-mini-form {
  gap: 12px 16px;
  margin-top: 18px;
  padding-top: 18px;
}

.contact-mini-form .field {
  gap: 6px;
}

.contact-mini-form input,
.contact-mini-form select {
  min-height: 42px;
}

.contact-mini-form textarea {
  min-height: 74px;
}

.contact-mini-form .actions {
  margin-top: 4px;
}

.site-footer {
  background: rgba(5, 5, 5, 0.68);
}

.assistant-launcher {
  border-color: rgba(240, 215, 140, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(13, 13, 13, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.assistant-panel,
.assistant-message,
.assistant-chip,
.assistant-handoff input,
.assistant-handoff textarea,
.assistant-input-row input {
  border-radius: 8px;
}

.assistant-chip {
  border-color: rgba(240, 215, 140, 0.22);
  background: rgba(201, 168, 76, 0.07);
}

.assistant-input-row button,
.assistant-handoff button {
  color: #10100f;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  main {
    padding-bottom: 420px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .process-breadcrumb span {
    flex-basis: 50%;
    border-bottom: 1px solid var(--line);
  }

  .hero-signature {
    width: 100%;
  }

  .work-card-head,
  .session-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-card-head img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 900px) {
  .hero,
  .product-panel,
  .contact-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual,
  .featured-work-card,
  .product-visual,
  .phone-mockup {
    max-width: 100%;
  }
}
