/* ==========================================================================
   PlayFrame Studios — shared styles
   Aesthetic: "engineered foundry" — deep ink surfaces, molten-amber accents,
   JetBrains Mono display/labels + IBM Plex Sans body.
   ========================================================================== */

:root {
  --ink:        #0d0e12;
  --ink-2:      #101218;
  --surface:    #15171f;
  --surface-2:  #1b1e28;
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.14);

  --text:       #ece9e3;
  --muted:      #9b968d;
  --muted-2:    #6f6b63;

  --molten:     #ff6a3d;
  --molten-2:   #ffa94d;
  --ember:      #ffd9a8;

  --max:        1160px;
  --radius:     18px;
  --radius-sm:  12px;

  --display: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans:    "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmospheric background: molten glow + faint grid + grain ----------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(255, 106, 61, 0.16), transparent 60%),
    radial-gradient(48rem 38rem at 6% 8%, rgba(255, 169, 77, 0.08), transparent 55%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

::selection { background: var(--molten); color: #1a0d06; }

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

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

/* Layout primitives -------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--molten-2);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--molten);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.04em; }

.molten {
  background: linear-gradient(110deg, var(--molten), var(--molten-2) 60%, var(--ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(110deg, var(--molten), var(--molten-2));
  color: #200f06;
  font-weight: 600;
  box-shadow: 0 10px 30px -12px rgba(255, 106, 61, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(255, 106, 61, 0.85); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--molten); transform: translateY(-2px); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* Navigation --------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(13, 14, 18, 0.62);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.brand .mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--molten), var(--molten-2));
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px rgba(255, 106, 61, 0.8);
  flex-shrink: 0;
}
.brand .mark span {
  width: 9px; height: 9px;
  border: 2px solid #1a0d06;
  border-radius: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.nav-links > a:hover { color: var(--text); }

/* Products dropdown -------------------------------------------------------- */
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-toggle {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav-dd-toggle:hover,
.nav-dd:focus-within .nav-dd-toggle,
.nav-dd.open .nav-dd-toggle { color: var(--text); }
.nav-chev { font-size: 0.6rem; transition: transform 0.25s var(--ease); }
.nav-dd:hover .nav-chev,
.nav-dd:focus-within .nav-chev,
.nav-dd.open .nav-chev { transform: rotate(180deg); }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 11rem;
  background: linear-gradient(180deg, var(--surface-2), var(--ink-2));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 60;
}
/* invisible bridge so the menu doesn't close while crossing the gap */
.nav-dd-menu::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
  height: 0.9rem;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: block;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-dd-menu a:hover { background: rgba(255, 255, 255, 0.04); color: var(--molten-2); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-toggle { display: none; }

/* Sections ----------------------------------------------------------------- */
section { position: relative; }
.section-pad { padding: clamp(5rem, 11vw, 9rem) 0; }

.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-top: 1.1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }

/* Hero --------------------------------------------------------------------- */
.hero { padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem); }
.hero h1 {
  /* Explicit two-line break (after "and") set in the markup; floor font keeps
     the longest line on one row down to ~340px-wide phones without clipping. */
  font-size: clamp(1.45rem, 5.6vw, 4.5rem);
  max-width: 24ch;
  margin: 1.6rem 0;
}
.hero-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: none; /* span the full section width */
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

/* Services grid ------------------------------------------------------------ */
.grid { display: grid; gap: 1.25rem; }
.grid-services { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(20rem 14rem at 85% 0%, rgba(255, 106, 61, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card:hover::after { opacity: 1; }
/* Card heading: "NN Title" — the number shares the heading's font and color */
.card h3 { font-size: 1.5rem; margin: 0 0 0.7rem; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.4rem;
}
.card .tags span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

/* Operate / Maintain cards (3-up, same card style as Build) ---------------- */
.grid-infra { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .grid-infra { grid-template-columns: 1fr; }
}

/* Foundry spotlight -------------------------------------------------------- */
.spotlight {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(40rem 26rem at 88% 12%, rgba(255, 106, 61, 0.18), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--ink-2));
  padding: clamp(2.4rem, 5vw, 4rem);
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(40rem 30rem at 80% 20%, #000 10%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
/* Full-width header across the top of the panel — keeps the heading on one line */
.spotlight-head { position: relative; margin-bottom: 2.6rem; }
.spotlight-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0.9rem 0 0;
  white-space: nowrap;
}
/* Allow the heading to wrap on small screens where one line can't fit */
@media (max-width: 768px) {
  .spotlight-head h2 { white-space: normal; }
}
.spotlight-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.spotlight p { color: var(--muted); font-size: 1.06rem; }
.spotlight .feature-list { list-style: none; margin: 1.6rem 0 2rem; }
.spotlight .feature-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.98rem;
}
.spotlight .feature-list li::before {
  content: "";
  margin-top: 0.55rem;
  width: 7px; height: 7px; flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--molten), var(--molten-2));
}
.foundry-card {
  background: rgba(10, 11, 15, 0.6);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.6rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.foundry-card .dot-row { display: flex; gap: 0.45rem; margin-bottom: 1.3rem; }
.foundry-card .dot-row i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); }
.foundry-card .line { color: var(--muted); margin: 0.35rem 0; }
.foundry-card .line .k { color: var(--molten-2); }
.foundry-card .line .v { color: var(--text); }
.foundry-card .ok { color: #7fd49a; }

/* Approach / values -------------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.values-2x2 { grid-template-columns: repeat(2, 1fr); }
.value { padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.015); }
.value .ico { font-family: var(--mono); color: var(--molten-2); font-size: 0.8rem; letter-spacing: 0.18em; }
.value h3 { font-size: 1.25rem; margin: 0.8rem 0 0.5rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* Contact ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.contact-aside h2 { font-size: clamp(2rem, 5vw, 3rem); margin: 1rem 0 1.1rem; }
.contact-aside p { color: var(--muted); }
.contact-direct {
  margin-top: 2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-direct .lbl { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.contact-direct a { font-family: var(--display); font-size: 1.4rem; color: var(--ember); transition: color 0.25s var(--ease); }
.contact-direct a:hover { color: var(--molten-2); }

.form {
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}
.field { margin-bottom: 1.2rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 0; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(8, 9, 12, 0.6);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.98rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--molten);
  background: rgba(8, 9, 12, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 106, 61, 0.15);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form .row + .field { margin-top: 1.2rem; }
.form-actions { display: flex; align-items: center; gap: 1.2rem; margin-top: 0.4rem; flex-wrap: wrap; }
.form-status { font-family: var(--mono); font-size: 0.8rem; }
.form-status.ok { color: #7fd49a; }
.form-status.err { color: #ff8a6b; }
.form-status.pending { color: var(--muted); }

/* Footer ------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding: 3.5rem 0 2.5rem; margin-top: 2rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer p.tag { color: var(--muted); margin-top: 1rem; font-size: 0.95rem; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1rem; font-weight: 500; }
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 0.3rem 0; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--molten-2); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.74rem; color: var(--muted-2);
}

/* Inner-page (privacy / support) content ----------------------------------- */
.page-hero { padding: clamp(3.5rem, 8vw, 5.5rem) 0 2rem; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin: 1.2rem 0 0.8rem; }
.page-hero p { color: var(--muted); }
.prose { padding-bottom: 4rem; }
.prose h2 { font-size: 1.5rem; margin: 2.6rem 0 0.9rem; color: var(--text); }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul { color: var(--muted); margin: 0 0 1.2rem 1.4rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--molten-2); text-decoration: underline; text-underline-offset: 3px; }
.callout {
  background: rgba(255, 106, 61, 0.07);
  border: 1px solid rgba(255, 106, 61, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  margin: 2rem 0;
}
.callout .lbl { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--molten-2); }
.callout p { color: var(--text); margin: 0.6rem 0 0; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 0;
  font-family: var(--display); font-size: 1.2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--molten-2); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 1.3rem; }

/* Reveal on load ----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.9s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }
.d6 { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Carousel ----------------------------------------------------------------- */
.grid-products { grid-template-columns: 1fr; }

.carousel { position: relative; margin-top: 3rem; overflow: visible; }
.carousel-track-outer { overflow: hidden; border-radius: var(--radius); touch-action: pan-y; cursor: grab; user-select: none; }
.carousel-track-outer:active { cursor: grabbing; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }

.carousel-slide { min-width: 100%; padding: 0 clamp(0.5rem, 2vw, 1rem); box-sizing: border-box; }
.carousel-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.carousel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(20rem 14rem at 85% 0%, rgba(255, 106, 61, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.carousel-card:hover::after { opacity: 1; }
.carousel-card h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.8rem; }
.carousel-card > p { color: var(--muted); font-size: 1.06rem; line-height: 1.6; }
.carousel-features { list-style: none; margin: 1.6rem 0 2rem; display: grid; gap: 0.65rem; }
.carousel-features li {
  display: flex; gap: 0.75rem; align-items: flex-start; padding: 0;
  color: var(--text); font-size: 0.98rem;
}
.carousel-features li::before {
  content: ""; margin-top: 0.55rem; width: 7px; height: 7px; flex-shrink: 0;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--molten), var(--molten-2));
}
.carousel-meta { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 2rem; font-family: var(--mono); font-size: 0.8rem; }
.carousel-meta .status.ok { color: #7fd49a; }
.carousel-meta .domain { color: var(--muted-2); }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-2);
  color: var(--text); font-size: 1rem; cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
}
.carousel-btn:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--molten); }
.carousel-btn:disabled { opacity: 0.2; cursor: default; }
.carousel-btn.prev { left: -3rem; }
.carousel-btn.next { right: -3rem; }

    /* Terminal-style product info sidebar (inside carousel card) */
.carousel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.product-info-card {
  background: rgba(10, 11, 15, 0.6);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 1.6rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.product-info-card .dot-row { display: flex; gap: 0.45rem; margin-bottom: 1.3rem; }
.product-info-card .dot-row i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); }
.product-info-card .info-line { color: var(--muted); margin: 0.35rem 0; }
.product-info-card .info-line .k { color: var(--molten-2); }
.product-info-card .info-line .v { color: var(--text); }
.product-info-card .info-line .ok { color: #7fd49a; }

   /* Responsive --------------------------------------------------------------- */
@media (max-width: 900px) {
   .spotlight-grid { grid-template-columns: 1fr; gap: 2rem; }
   .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
   .values { grid-template-columns: 1fr; }
   .carousel-grid { grid-template-columns: 1fr; gap: 2rem; }
    .carousel-btn.prev { left: -1rem; }
  .carousel-btn.next { right: -1rem; }
  .carousel-track-outer { border-radius: var(--radius-sm); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .grid-services { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; gap: 0; }
  .field.row .field-inner + .field-inner { margin-top: 1.2rem; }
    /* Let the headline use the full column on phones so it wraps at spaces
       (the 22ch measure is only there to force a clean 2-line break on desktop). */
   .hero h1 { max-width: 100%; }
   .carousel-btn.prev { left: -0.5rem; }
   .carousel-btn.next { right: -0.5rem; }
}
