/* === Page-specific styles === */

/* === HOME === */
.hero { padding: 80px 0 0; position: relative; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-title {
  font-size: clamp(36px, 5.4vw, 82px);
  margin-bottom: 12px;
  max-width: none;
  white-space: nowrap;
}
.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mute);
  max-width: 560px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hero-orn {
  margin-top: 100px;
  height: 200px;
  position: relative;
}

/* Stats */
.stats { padding: 100px 0 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.stat {
  padding: 40px 24px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-size: 56px;
  line-height: 1;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 300;
}
.stat-label {}

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}
.section-title {
  font-size: clamp(48px, 5.5vw, 84px);
}

/* Features */
.features { padding: 140px 0 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.feature-card {
  padding: 60px 40px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  background: var(--bg);
  transition: background 0.3s;
}
.feature-card:nth-child(2n) { border-right: 0; }
.feature-card:hover { background: var(--bg-elev); }
.feature-num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 40px;
}
.feature-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.feature-desc {
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}

/* How */
.how { padding: 140px 0 0; }
.how-stages {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.how-row {
  display: grid;
  grid-template-columns: 160px 1fr 360px;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.how-key { display: flex; flex-direction: column; gap: 8px; }
.how-num {
  font-size: 64px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.how-dur {}
.how-title {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 400;
}
.how-desc {
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}

/* Family */
.family { padding: 140px 0 0; }
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.family-card {
  border: 1px solid var(--line-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg);
}
.family-card:hover {
  border-color: var(--gold-line);
  background: var(--bg-elev);
}
.family-card-top {
  display: flex;
  justify-content: space-between;
}
.family-card-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.family-name { font-size: 28px; font-weight: 400; }
.family-desc { font-size: 14px; }
.family-link {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Closer */
.closer { padding: 160px 0 0; }
.closer-inner {
  border-top: 1px solid var(--gold-line);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.closer-mark { margin-bottom: 8px; }
.closer-title { font-size: clamp(56px, 7vw, 96px); }
.closer-desc {
  color: var(--text-mute);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  max-width: 520px;
  line-height: 1.55;
}

/* === PRODUCTS PAGE === */
.ph-hero { padding: 80px 0 24px; }
.ph-title {
  font-size: clamp(64px, 8.5vw, 124px);
  margin: 24px 0 36px;
  max-width: 1100px;
}
.ph-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-mute);
  font-family: var(--serif);
  font-style: italic;
  max-width: 700px;
}

.prod-index { padding: 60px 0 0; }
.prod-index-head, .prod-index-row {
  display: grid;
  grid-template-columns: 80px 200px 1fr 200px 40px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.prod-index-head { border-bottom: 1px solid var(--gold-line); padding-bottom: 14px; }
.prod-index-row { cursor: pointer; transition: padding 0.2s, background 0.2s; }
.prod-index-row:hover { padding-left: 12px; }
.prod-index-row:hover .prod-arrow { transform: translateX(6px); }
.prod-no { color: var(--gold); font-size: 14px; }
.prod-iname { font-size: 28px; font-weight: 400; }
.prod-status { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-mute); }
.status-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.prod-arrow { font-family: var(--mono); transition: transform 0.2s; text-align: right; }

.prod-cards { padding: 120px 0 0; display: flex; flex-direction: column; gap: 140px; }

/* === Product shelf === */
.prod-shelf { padding: 60px 0 0; }
.prod-shelf-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 60px;
}
.prod-shelf-stage {
  position: relative;
  padding: 0;
}
.prod-shelf-ceiling {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  letter-spacing: 0.4em;
  font-size: 9px;
}
.prod-shelf-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 340px));
  justify-content: center;
  gap: 48px;
}
.prod-shelf-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid var(--line-soft);
  padding: 0 0 24px;
  transition: background 0.4s ease;
}
.prod-shelf-item:last-child { border-right: 0; }
.prod-shelf-item.clickable { cursor: pointer; }
.prod-shelf-item.clickable:hover { background: linear-gradient(180deg, var(--gold-soft) 0%, transparent 60%); }
.prod-shelf-item.clickable:hover .prod-shelf-render { transform: translateY(-6px); }
.prod-shelf-item.clickable:hover .prod-shelf-spotlight { opacity: 1; }
.prod-shelf-item.clickable:hover .prod-shelf-link { color: var(--gold-bright); }

/* Vitrine — the glass display box */
.prod-shelf-vitrine {
  position: relative;
  height: 270px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 24px 0;
  overflow: hidden;
}
.prod-shelf-spotlight {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160px;
  background: radial-gradient(ellipse at top, var(--gold-soft) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.prod-shelf-render {
  position: relative;
  width: 52.5%;
  height: 80%;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 2;
}
.prod-shelf-render .ph { width: 100%; height: 100%; }
.prod-shelf-reflection {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 24px;
  background: radial-gradient(ellipse at center top, rgba(0,0,0,0.55) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(2px);
  z-index: 1;
}

/* Shelf board */
.prod-shelf-board {
  position: relative;
  height: 14px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 60%, var(--gold-soft) 100%);
  border-top: 1px solid var(--gold-bright);
  box-shadow:
    0 1px 0 var(--gold-deep) inset,
    0 8px 16px -8px rgba(0,0,0,0.6);
}
.prod-shelf-board-edge {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(180deg, var(--gold-deep), transparent);
  opacity: 0.5;
}

/* Plate */
.prod-shelf-plate {
  padding: 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-shelf-plate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.prod-shelf-name {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}
.prod-shelf-cat {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.prod-shelf-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mute);
}
.prod-shelf-link {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}

@media (max-width: 720px) {
  .prod-shelf-row { grid-template-columns: 1fr; }
  .prod-shelf-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .prod-shelf-item:last-child { border-bottom: 0; }
}

/* Svenn product frame */
.zb-product-frame {
  width: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
  box-shadow:
    0 30px 60px -30px rgba(255, 212, 0, 0.18),
    0 16px 40px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.zb-product {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zb-product-3d .zb-stage,
.zb-product-modern .zb-stage {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: drop-shadow(0 24px 32px rgba(255, 212, 0, 0.18));
}
.zb-product-frame:hover .zb-stage {
  transform: rotateX(2deg) rotateY(2deg) scale(1.03);
}
.prod-shelf-render .zb-product { max-height: 100%; }

/* tOOn product visual — mirrors zb-product framing with a cooler glow */
.to-product {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.to-product .to-stage {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: drop-shadow(0 24px 32px rgba(200, 234, 58, 0.25));
}
.zb-product-frame:hover .to-stage,
.prod-shelf-item:hover .to-stage {
  transform: rotateX(2deg) rotateY(2deg) scale(1.03);
}
.prod-shelf-render .to-product { max-height: 100%; }

/* Two-column hero variant for the tOOn detail page */
.to-hero-grid {
  grid-template-columns: 1.2fr 1fr !important;
  gap: 80px !important;
  align-items: center;
}
/* Product visual sits at half size within the hero column */
.to-hero-grid .dt-hero-r { align-items: center; }
.to-hero-grid .zb-product-frame {
  width: 50%;
  max-width: 220px;
  margin: 0 auto;
}
.prod-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.prod-card.rev { direction: rtl; }
.prod-card.rev > * { direction: ltr; }
.prod-card-vis { position: relative; }
.prod-card-meta {
  margin-top: 24px;
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.meta-row { display: flex; flex-direction: column; gap: 6px; }
.meta-big { font-size: 32px; line-height: 1; color: var(--gold); font-family: var(--serif); }

.prod-card-body { padding-top: 20px; display: flex; flex-direction: column; gap: 20px; }
.prod-card-title { font-size: clamp(56px, 6vw, 88px); }
.prod-card-desc { font-size: 18px; color: var(--text-mute); line-height: 1.6; max-width: 520px; }
.prod-cap {
  list-style: none;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
}
.prod-cap li {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.prod-cap li:last-child { border-bottom: 1px solid var(--line-soft); }
.cap-no { color: var(--gold); font-size: 12px; }
.prod-card-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.services { padding: 160px 0 0; }
.services-inner {
  border-top: 1px solid var(--gold-line);
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.services-title { font-size: clamp(48px, 5vw, 72px); }
.services-desc { font-size: 18px; color: var(--text-mute); line-height: 1.6; margin-bottom: 32px; max-width: 560px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-soft); }
.services-tag {
  padding: 20px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 22px;
}
.services-tag:nth-child(3n) { border-right: 0; }

/* === DETAILS PAGE === */
.crumb {
  padding: 24px 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.crumb-link { color: var(--text-mute); cursor: pointer; }
.crumb-link:hover { color: var(--gold); }
.crumb-sep { color: var(--text-dim); }
.crumb-current { color: var(--gold); }

.dt-hero { padding: 40px 0 80px; }
.dt-hero-grid { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: start; }
.dt-title { font-size: clamp(56px, 7vw, 104px); margin: 24px 0 32px; }
.dt-lede { font-size: 19px; color: var(--text-mute); line-height: 1.6; max-width: 520px; font-family: var(--serif); font-style: italic; }
.dt-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.dt-tags { display: flex; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.dt-tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--text-mute);
}

.dt-hero-r { display: flex; flex-direction: column; gap: 24px; }
.dt-spec { padding: 20px 24px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.dt-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.dt-spec-row:last-child { border-bottom: 0; }

.dt-tabs-wrap {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.dt-tabs {
  display: flex;
  gap: 8px;
  padding: 0 40px;
}
.dt-tab {
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.dt-tab:hover { color: var(--text); }
.dt-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.dt-section { padding: 100px 0; }
.dt-section-title { font-size: clamp(48px, 5.5vw, 80px); }

.dt-overview { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.dt-overview-body { display: flex; flex-direction: column; gap: 24px; font-size: 17px; line-height: 1.65; color: var(--text-mute); max-width: 640px; }
.dt-overview-body p { font-family: var(--serif); font-size: 20px; }
.dt-quote {
  margin-top: 24px;
  padding: 32px 40px;
  border-left: 1px solid var(--gold);
  position: relative;
}
.dt-quote-mark { position: absolute; left: 16px; top: 14px; font-size: 64px; color: var(--gold); line-height: 1; font-style: italic; }
.dt-quote-text { font-size: 22px; line-height: 1.5; color: var(--text); font-style: italic; font-weight: 300; }
.dt-quote-by { margin-top: 20px; color: var(--text-mute); }

.dt-feat-head, .dt-arch-head, .dt-specs-head, .dt-pair-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: end; }

.dt-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft); }
.dt-feat { padding: 48px 36px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.dt-feat-no { font-size: 12px; color: var(--gold); letter-spacing: 0.18em; margin-bottom: 32px; }
.dt-feat-t { font-size: 26px; font-weight: 400; margin-bottom: 12px; }
.dt-feat-d { color: var(--text-mute); font-size: 15px; line-height: 1.6; }

.dt-arch-vis { border: 1px solid var(--line); padding: 40px; background: var(--bg-elev); }
.dt-arch-cap { margin-top: 16px; text-align: center; }

.dt-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 60px; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); padding: 20px 0; }
.dt-specs-grid .dt-spec-row { font-size: 14px; padding: 14px 0; }

.dt-pair { padding: 60px 0 0; }
.dt-pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dt-pair-card { border: 1px solid var(--line-soft); padding: 24px; cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; gap: 16px; }
.dt-pair-card:hover { border-color: var(--gold-line); background: var(--bg-elev); }
.dt-pair-body { display: flex; flex-direction: column; gap: 6px; }
.dt-pair-body h3 { font-size: 28px; font-weight: 400; }

.dt-cta { padding: 120px 0 0; }
.dt-cta-inner {
  border-top: 1px solid var(--gold-line);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.dt-cta-inner h2 { font-size: clamp(48px, 6vw, 80px); }

/* Product details — content tone */
.details-page .dt-lede,
.details-page .dt-overview-body,
.details-page .dt-overview-body p,
.details-page .dt-feat-d,
.details-page .dt-cta-inner h2,
.details-page .dt-cta-inner p {
  color: rgb(234, 214, 175);
}

/* === CONTACT === */
.ct-hero { padding: 80px 0 60px; }
.ct-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
.ct-title { font-size: clamp(64px, 9vw, 132px); margin: 24px 0 32px; }
.ct-lede { font-size: 20px; color: var(--text-mute); line-height: 1.6; max-width: 560px; font-family: var(--serif); font-style: italic; }
.ct-meta { display: flex; flex-direction: column; gap: 0; padding: 24px 28px; border: 1px solid var(--gold-line); }
.ct-meta-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line-soft); font-size: 13px; }
.ct-meta-row:last-child { border-bottom: 0; }

.ct-channels { padding: 100px 0 0; }
.ct-channel-head { margin-bottom: 32px; }
.ct-channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--gold-line); border-left: 1px solid var(--line-soft); }
.ct-channel { padding: 48px 36px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 14px; transition: background 0.3s; }
.ct-channel:hover { background: var(--bg-elev); }
.ct-channel-no { color: var(--gold); font-size: 14px; letter-spacing: 0.18em; }
.ct-channel-t { font-size: 28px; font-weight: 400; }
.ct-channel-d { color: var(--text-mute); font-size: 15px; line-height: 1.6; max-width: 320px; flex: 1; }
.ct-channel-a {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.ct-channel-a:hover { color: var(--gold-bright); }

.ct-form-section { padding: 120px 0 0; }
.ct-form-grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.ct-form-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.ct-aside-mark { color: var(--gold); margin-bottom: 8px; }
.ct-aside-title { font-size: clamp(40px, 4.5vw, 64px); }
.ct-aside-rule { height: 1px; background: var(--gold-line); margin: 16px 0 8px; }
.ct-aside-list { display: flex; flex-direction: column; gap: 14px; }
.ct-aside-item { display: grid; grid-template-columns: 36px 1fr; gap: 8px; align-items: start; font-size: 14px; color: var(--text-mute); }
.ct-aside-item .mono-num { color: var(--gold); font-size: 11px; padding-top: 4px; }

.ct-aside-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  max-width: 320px;
}
.ct-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.ct-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.ct-step:last-child { border-bottom: 0; }
.ct-step-num {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.15em;
  padding-top: 4px;
}
.ct-step-body { display: flex; flex-direction: column; gap: 4px; }
.ct-step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  margin: 0;
}
.ct-step-desc {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0;
}

.ct-form { display: flex; flex-direction: column; gap: 20px; }
.ct-section-title { padding: 8px 0; color: var(--gold) !important; border-bottom: 1px solid var(--gold-line); margin-bottom: 8px; }
.ct-row { display: grid; gap: 16px; }
.ct-row.two { grid-template-columns: 1fr 1fr; }
.ct-field { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; border-bottom: 1px solid var(--line); transition: border-color 0.2s; }
.ct-field.focused { border-bottom-color: var(--gold); }
.ct-field label { display: block; }
.ct-field input, .ct-field textarea, .ct-field select {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 0;
  font-size: 17px;
  font-family: var(--serif);
  width: 100%;
}
.ct-field input::placeholder, .ct-field textarea::placeholder { color: var(--text-dim); font-style: italic; }
.ct-field.text { padding-bottom: 0; border-bottom-color: var(--line); }
.ct-field.text textarea { font-family: var(--serif); resize: vertical; min-height: 100px; padding: 12px 0; }
.ct-select-wrap { position: relative; }
.ct-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
}
.ct-select-wrap select option { background: var(--bg-elev); color: var(--text); }
.ct-select-caret { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; }

.ct-foot { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-top: 32px; margin-top: 16px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.ct-fine { font-size: 12px; max-width: 340px; line-height: 1.5; }

.ct-sent { padding: 60px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; border: 1px solid var(--gold-line); }
.ct-sent-t { font-size: clamp(40px, 5vw, 64px); }

.ct-offices { padding: 140px 0 0; }
.ct-offices-head { margin-bottom: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.ct-section-title { font-size: clamp(48px, 5vw, 72px); }
.ct-offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ct-office { border: 1px solid var(--line-soft); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.ct-office-head { display: flex; justify-content: space-between; align-items: center; }
.ct-office-c { font-size: 32px; font-weight: 400; }
.ct-office-rows { display: flex; flex-direction: column; }
.ct-office-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line-soft); font-size: 12px; }
.ct-office-row:last-child { border-bottom: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero-foot, .dt-hero-grid, .ct-hero-grid, .dt-overview, .section-head, .dt-feat-head, .dt-arch-head, .dt-specs-head, .dt-pair-head, .ct-offices-head, .services-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .family-grid, .ct-channels-grid, .ct-offices-grid, .dt-feat-grid, .dt-pair-grid, .prod-card { grid-template-columns: 1fr !important; }
  .how-row { grid-template-columns: 1fr; gap: 16px; }
  .ct-form-grid { grid-template-columns: 1fr; }
  .ct-form-aside { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dt-specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ct-row.two { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-tag { border-right: 0; }
  .hero-cta { justify-content: flex-start; }
  .dt-tabs { overflow-x: auto; }
}


/* === Voice Agent === */
.va-launcher {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #f4f4f4 0%, #c8c8c8 38%, #8a8a8a 62%, #d8d8d8 100%);
  color: #17140f;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 14px 30px -10px rgba(220, 220, 220, 0.45),
    0 0 0 6px rgba(200, 200, 200, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.25s, box-shadow 0.3s;
  overflow: hidden;
}
.va-launcher::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(125deg,
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.55) 48%,
    rgba(255,255,255,0) 66%);
  background-size: 220% 220%;
  background-position: 100% 100%;
  pointer-events: none;
  animation: vaShine 4.5s ease-in-out infinite;
}
@keyframes vaShine {
  0%   { background-position: 130% 130%; }
  100% { background-position: -30% -30%; }
}
.va-launcher:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 18px 36px -10px rgba(240, 240, 240, 0.55),
    0 0 0 8px rgba(220, 220, 220, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(0, 0, 0, 0.25);
}
.va-launcher.open {
  background: var(--bg-elev);
  color: #d8d8d8;
  border-color: rgba(200, 200, 200, 0.35);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
}
.va-launcher.open::before { display: none; }
.va-launcher > svg { position: relative; z-index: 1; }

.va-panel {
  position: fixed;
  right: 28px;
  bottom: 96px;
  z-index: 79;
  width: 380px;
  max-width: calc(100vw - 56px);
  max-height: min(560px, calc(100vh - 130px));
  background: var(--bg-elev);
  border: 1px solid var(--gold-line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201, 169, 97, 0.06);
  overflow: hidden;
}
.va-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.va-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.va-eyebrow {
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.va-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.va-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.va-close:hover {
  color: var(--gold);
  border-color: var(--gold-line);
}

.va-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: thin;
}
.va-empty {
  padding: 20px 0;
}
.va-empty-line {
  font-size: 17px;
  font-style: italic;
  color: var(--text-mute);
  line-height: 1.5;
}
.va-turn {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.va-turn-role {
  font-size: 10px;
  letter-spacing: 0.2em;
}
.va-turn-user .va-turn-role { color: var(--text-dim); }
.va-turn-agent .va-turn-role { color: var(--gold); }
.va-turn-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.va-turn-text-agent {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.va-turn-interim .va-turn-text { color: var(--text-mute); font-style: italic; }

.va-foot {
  padding: 14px 22px 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}
.va-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.va-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: background 0.2s;
}
.va-status-dot.va-status-listening {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
  animation: vaPulse 1.2s ease-in-out infinite;
}
.va-status-dot.va-status-thinking {
  background: var(--gold-bright);
  animation: vaPulse 0.9s ease-in-out infinite;
}
.va-status-dot.va-status-speaking {
  background: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(232, 200, 122, 0.22);
}
@keyframes vaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.va-status-text {
  color: var(--text-mute);
  font-size: 10px;
}

.va-mic {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.va-mic:hover:not(:disabled) {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.va-mic:active:not(:disabled) { transform: scale(0.96); }
.va-mic:disabled { opacity: 0.5; cursor: not-allowed; }
.va-mic-listening {
  background: var(--gold);
  color: #17140f;
  border-color: var(--gold);
}
.va-mic-listening:hover { background: var(--gold-bright); }
.va-mic-ring,
.va-mic-ring-2 {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
}
.va-mic-listening .va-mic-ring {
  animation: vaMicRing 1.6s ease-out infinite;
}
.va-mic-listening .va-mic-ring-2 {
  animation: vaMicRing 1.6s ease-out infinite;
  animation-delay: 0.55s;
}
@keyframes vaMicRing {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

.va-unsupported {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.4;
  max-width: 280px;
}

@media (max-width: 720px) {
  .va-panel {
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    bottom: 86px;
  }
  .va-launcher {
    right: 16px;
    bottom: 16px;
  }
}
