/**
 * Platform Collaboration — iframe bundle layout (container, breadcrumb, sections, hero CTAs).
 * Loaded via plt-standalone-page.php only — not imported in main.css.
 */

/* --- plt iframe layout (plt-standalone-page.php) --- */

/* ============ CONTAINER ============ */

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* ============ BREADCRUMB (separate from hero) ============ */

#_plt_breadcrumb,
.amy-platform-breadcrumb {
  width: 100%;
  box-sizing: border-box;
}

.amy-platform-breadcrumb .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.amy-platform-breadcrumb .crumb,
#_plt_breadcrumb .crumb {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.amy-platform-breadcrumb .crumb > .dot,
.amy-platform-breadcrumb .crumb .dot,
#_plt_breadcrumb .crumb > .dot,
#_plt_breadcrumb .crumb .dot {
  display: none !important;
}

.amy-platform-breadcrumb .crumb a,
#_plt_breadcrumb .crumb a {
  color: var(--ink-3);
  text-decoration: none;
}

.amy-platform-breadcrumb .crumb a:hover,
#_plt_breadcrumb .crumb a:hover {
  color: var(--ink);
}

.amy-platform-breadcrumb .crumb span[style*="color:var(--ink)"],
#_plt_breadcrumb .crumb span[style*="color:var(--ink)"] {
  color: var(--ink) !important;
  font-weight: 500;
}

html[data-theme="light"] .amy-platform-breadcrumb .crumb,
html[data-theme="light"] #_plt_breadcrumb .crumb {
  color: rgba(26, 20, 19, 0.48);
}

html[data-theme="light"] .amy-platform-breadcrumb .crumb a,
html[data-theme="light"] #_plt_breadcrumb .crumb a {
  color: rgba(26, 20, 19, 0.48);
}

html[data-theme="light"] .amy-platform-breadcrumb .crumb a:hover,
html[data-theme="light"] #_plt_breadcrumb .crumb a:hover,
html[data-theme="light"] .amy-platform-breadcrumb .crumb span[style*="color:var(--ink)"],
html[data-theme="light"] #_plt_breadcrumb .crumb span[style*="color:var(--ink)"] {
  color: #1a1413 !important;
}

/* ============ SECTION SHELL ============ */

header.hero,
section.section,
section.section-alt,
section.connect-band,
section.agents-section,
section.cta {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

section.section,
section.agents-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

section.section-alt {
  padding-top: 120px;
  padding-bottom: 120px;
}

section.connect-band {
  padding-top: 60px;
}

section.cta {
  padding-top: 0;
  padding-bottom: 60px;
}

/* ============ HERO ============ */

header.hero {
  padding-top: 0;
  padding-bottom: 60px;
  margin-top: 0;
}

header.hero > .container > .crumb,
header.hero > .crumb {
  display: none !important;
}

.hero-grid,
.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero .preview {
  height: 490px;
  min-height: 0;
  max-height: none;
}

header.hero h1 {
  text-wrap: balance;
}

/* ============ HERO CTAs ============ */

.hero .cta-row,
.amy-ev-hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 28px;
}

.hero .cta-row .btn,
.amy-ev-hero-ctas .btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-2, var(--line));
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  letter-spacing: -0.01em;
}

.hero .cta-row .btn:hover,
.amy-ev-hero-ctas .btn:hover {
  transform: translateY(-1px);
}

.hero .cta-row .btn.primary,
.amy-ev-hero-ctas .btn.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.hero .cta-row .btn .arr,
.amy-ev-hero-ctas .btn .arr {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

.hero .cta-row .btn.primary .arr,
.amy-ev-hero-ctas .btn.primary .arr {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

html[data-theme="dark"] .amy-ev-hero-ctas .btn.primary,
html[data-theme="dark"] .hero .cta-row .btn.primary {
  background: #f5f5f7 !important;
  color: #0a0a0b !important;
  border-color: #f5f5f7 !important;
}

html[data-theme="dark"] .amy-ev-hero-ctas .btn.primary .arr,
html[data-theme="dark"] .hero .cta-row .btn.primary .arr {
  color: #0a0a0b !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

html[data-theme="dark"] .amy-ev-hero-ctas .btn:not(.primary),
html[data-theme="dark"] .hero .cta-row .btn:not(.primary) {
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .amy-ev-hero-ctas .btn:not(.primary):hover,
html[data-theme="dark"] .hero .cta-row .btn:not(.primary):hover {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .amy-ev-hero-ctas .btn.primary,
html[data-theme="light"] .hero .cta-row .btn.primary {
  background: #1a1413 !important;
  color: #fbf6f1 !important;
  border-color: #1a1413 !important;
}

html[data-theme="light"] .amy-ev-hero-ctas .btn:not(.primary):hover,
html[data-theme="light"] .hero .cta-row .btn:not(.primary):hover {
  background: #f5ede4 !important;
}

/* ============ DEEP GRID ============ */

article.deep.s-12 {
  min-height: auto;
}

/* ============ PAGE-SPECIFIC (Collaboration) ============ */

.cap {
  min-height: auto !important;
}

.cb-card:hover {
  border-color: var(--rose) !important;
}

section.connect-band {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

section.intro {
  padding-top: 60px !important;
  padding-bottom: 120px !important;
}

section.status-flow {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.pillar-grid {
  gap: 20px !important;
  margin-top: 30px !important;
}

.section h2 {
  margin: 0 0 30px !important;
  padding-bottom: 0 !important;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1100px) {
.hero-grid,
  .hero .grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero .preview {
    height: 440px;
  }
 
}

@media (max-width: 991px) {
section.section,
  section.section-alt,
  section.connect-band,
  section.agents-section,
  section.cta,
  header.hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  section.section-alt {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  section.cta {
    padding-top: 0 !important;
    padding-bottom: 60px;
  }

  header.hero {
    padding-top: 0;
    padding-bottom: 60px;
  }

  section.intro {
    padding-top: 0!important;
    padding-bottom: 60px !important;
}
section.status-flow {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
section.connect-band {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
}

@media (max-width: 767px) {
.container {
    padding-left: 25px;
    padding-right: 25px;
  }
  section.intro {
    padding-top: 0!important;
    padding-bottom: 50px !important;
}
section.status-flow {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
section.connect-band {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
  section.section,
  section.connect-band,
  section.agents-section,
  section.cta,
  section.section-alt {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  section.cta {
    padding-top: 0 !important;
    padding-bottom: 50px;
  }

  header.hero {
    padding-bottom: 50px;
  }

  /* Mobile type scale: 16|15|14.5|14 → 14px; 13.5 → 13px; 12.5 → 12px */
  .hero .lede,
  .hero > .lede,
  .hero p.lede,
  .hero .body,
  .opp p,
  .panel p,
  .panel .copy,
  .panel p.copy,
  .section > .lede,
  .section > p.lede,
  .section .lede,
  .pillar p,
  .hiw-row .hiw-body p,
  .hiw-block p,
  .cnx-row .ds,
  .cta .btn,
  .amy-ev-hero-ctas .btn,
  .hero .cta-row .btn,
  .btn {
    font-size: 14px !important;
  }

  .feat p,
  .feat ul li,
  .cap p,
  .hiw-list li,
  .cb-card p {
    font-size: 13px !important;
  }

  .conn-tile,
  .subnav a,
  .nav .links a {
    font-size: 12px !important;
  }
}
