:root {
  --bg: #0a0a10;
  --bg-elev: #11111a;
  --bg-soft: #171722;
  --text: #f5f7ff;
  --muted: #b4b9cc;
  --line: #2a2c3a;
  --accent: #7c7cff;
  --accent-2: #3dd9c4;
  --good: #7effb8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --container: 1160px;
  --hero-container: 1696px;
  --hero-media-container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% -20%, #23203b 0%, var(--bg) 35%, #07070b 100%);
  color: var(--text);
  font-family: Geist, Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.45;
}

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

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

.hero > .container {
  width: min(var(--hero-container), calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 14, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand span {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #d9dcec;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(124, 124, 255, 0.18);
  color: #fff;
}

.launch-lab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(126, 255, 184, 0.38);
  background: linear-gradient(135deg, rgba(126, 255, 184, 0.2), rgba(124, 124, 255, 0.2));
  color: #f3fff9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.launch-lab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 255, 184, 0.62);
  background: linear-gradient(135deg, rgba(126, 255, 184, 0.28), rgba(124, 124, 255, 0.28));
}

.hero {
  position: relative;
  padding: 0 0 20px;
}

.hero-shell {
  min-height: calc(100vh - 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(12, 14, 24, 0.58), rgba(12, 14, 24, 0.74)),
    url('/background.png') center center / cover no-repeat,
    #242943;
  box-shadow: var(--shadow);
}

.hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.7rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 auto 10px;
  max-width: 900px;
}

.hero p {
  margin: 0 auto;
  max-width: 760px;
  color: #d4d9ef;
  font-size: clamp(1.02rem, 1.8vw, 1.34rem);
}

.hero-actions {
  margin-top: 20px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  color: #eef2ff;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-cta.primary {
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.34), rgba(61, 217, 196, 0.24));
  border-color: rgba(124, 124, 255, 0.45);
}

.hero-cta.ghost {
  background: rgba(8, 10, 17, 0.42);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-cta:hover {
  background: rgba(8, 10, 17, 0.56);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.hero-cta.primary:hover {
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.46), rgba(61, 217, 196, 0.34));
  border-color: rgba(124, 124, 255, 0.7);
}

.hero-cta span {
  font-size: 1.05em;
}

.clip-stage {
  position: relative;
  margin: 30px auto 42px;
  width: min(var(--hero-media-container), 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #0c0f19;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  overflow: visible;
}

.clip-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0e15;
  border-radius: 10px;
  overflow: hidden;
}

.clip-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clip-empty {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(124, 124, 255, 0.18), rgba(8, 8, 12, 0.85));
}

.clip-empty b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.clip-tabs {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(8, 10, 18, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  z-index: 4;
  max-width: calc(100% - 20px);
}

.clip-tab {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e8ebfb;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.83rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clip-tab:hover,
.clip-tab[aria-selected="true"] {
  border-color: rgba(124, 124, 255, 0.72);
  background: rgba(124, 124, 255, 0.24);
}

.section {
  padding: 82px 0;
}

.timeline-section .container {
  position: relative;
  padding-left: clamp(70px, 6vw, 88px);
}

.timeline-section .container::before {
  content: "";
  position: absolute;
  left: clamp(26px, 3.3vw, 38px);
  top: -84px;
  bottom: -84px;
  width: 2px;
  background: linear-gradient(180deg, rgba(191, 205, 255, 0.22), rgba(169, 183, 255, 0.72), rgba(191, 205, 255, 0.22));
}

.timeline-section.timeline-start .container::before {
  top: 50%;
}

.timeline-section.timeline-end .container::before {
  bottom: 50%;
}

.timeline-section .container::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: calc(clamp(26px, 3.3vw, 38px) - 16px);
  top: 50%;
  transform: translateY(-50%);
  background: url('/node.png') center/contain no-repeat;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45));
}

.section-title {
  max-width: 760px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

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

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

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 22px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.showcase {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
}

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

.stat-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.stat-list b {
  font-size: 1.08rem;
}

.stat-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  border: 1px solid rgba(124, 124, 255, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.16), rgba(61, 217, 196, 0.1));
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.button {
  display: inline-block;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
}

.button.primary {
  color: #05050a;
  background: linear-gradient(90deg, #98a0ff, #7effb8);
}

.button:disabled {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.75;
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

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

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(124, 124, 255, 0.75);
  background: linear-gradient(180deg, rgba(124, 124, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 14px;
}

.price .num {
  font-size: 2rem;
  font-weight: 700;
}

.price .term {
  color: var(--muted);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.checklist li {
  color: #d9ddf2;
  font-size: 0.92rem;
}

.table-wrap {
  margin-top: 26px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare th,
.compare td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b6bdd8;
}

.compare td {
  font-size: 0.92rem;
}

.compare tr:last-child td {
  border-bottom: 0;
}

.page-title {
  padding: 82px 0 28px;
}

.page-title h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: -0.025em;
}

.page-title p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .answer {
  padding: 0 18px 16px;
  color: var(--muted);
}

/* Demo page */
.demo-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 16px;
}

.demo-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
}

.demo-card h2,
.demo-card h3 {
  margin-top: 0;
}

.availability-pill {
  display: inline-flex;
  margin: 10px 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 124, 255, 0.45);
  padding: 6px 12px;
  font-size: 0.88rem;
  color: #dce2ff;
  background: rgba(124, 124, 255, 0.16);
}

.availability-pill.warn {
  border-color: rgba(255, 167, 110, 0.5);
  background: rgba(255, 167, 110, 0.14);
  color: #ffe8d7;
}

.availability-pill.error {
  border-color: rgba(255, 105, 105, 0.58);
  background: rgba(255, 105, 105, 0.12);
  color: #ffd2d2;
}

.demo-form {
  display: grid;
  gap: 10px;
}

.demo-form label {
  font-size: 0.9rem;
  color: #d8deff;
  font-weight: 500;
}

.demo-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 12px 13px;
  font-size: 0.95rem;
}

.demo-form input:focus {
  outline: none;
  border-color: rgba(124, 124, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.2);
}

.demo-submit {
  margin-top: 8px;
  border: 1px solid rgba(124, 124, 255, 0.42);
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.45), rgba(61, 217, 196, 0.34));
  color: #f8fbff;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.demo-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.56), rgba(61, 217, 196, 0.42));
  border-color: rgba(124, 124, 255, 0.68);
}

.demo-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.demo-feedback {
  min-height: 1.25rem;
  margin: 4px 0 0;
  color: #cfd5ef;
  font-size: 0.9rem;
}

.demo-feedback.error {
  color: #ffb5b5;
}

.demo-feedback.success {
  color: #96f9c2;
}

.demo-list {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  color: #d5dcfa;
}

.demo-list li {
  margin-bottom: 8px;
}

.callout {
  margin-top: 16px;
  border: 1px solid rgba(124, 124, 255, 0.3);
  background: rgba(124, 124, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
}

.callout h5 {
  margin: 0 0 8px;
  font-size: 0.96rem;
}

.callout ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #dde4ff;
}

.callout .figure {
  margin-top: 12px;
}

.callout img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: block;
}

.callout figcaption {
  margin-top: 8px;
  color: #c8d1f1;
  font-size: 0.85rem;
}

.inline-link {
  color: #c9d4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(201, 212, 255, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-link:hover {
  color: #f1f5ff;
  text-decoration-color: rgba(241, 245, 255, 0.9);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.discord-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.youtube-highlight {
  margin-top: 24px;
}

.video-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px;
}

.video-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.video-panel-head h3 {
  margin: 0;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #070912;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-caption {
  margin: 10px 0 0;
  color: #c8d1ee;
  font-size: 0.92rem;
}

/* Docs page */
.doc-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
}

.doc-block-head h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.doc-block-head p {
  margin: 0;
  color: var(--muted);
}

.credential-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.credential-controls input[type="search"] {
  flex: 1 1 320px;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 11px 12px;
  font-size: 0.93rem;
}

.credential-controls input[type="search"]:focus {
  outline: none;
  border-color: rgba(124, 124, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.2);
}

.credential-count {
  font-size: 0.88rem;
  color: #ced6f7;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.credential-table-wrap {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: auto;
  background: rgba(8, 10, 18, 0.35);
}

.credential-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.credential-table th,
.credential-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.credential-table th {
  color: #dce2ff;
  background: rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 0;
}

.credential-table td {
  color: #d4dbf7;
}

.credential-table tr:last-child td {
  border-bottom: 0;
}

.docs-loading {
  margin: 0;
  padding: 14px;
  color: #cfd5ef;
}

.docs-video-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.docs-video-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.docs-video-copy {
  padding: 12px 14px 14px;
}

.docs-video-copy h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.docs-video-copy p {
  margin: 0 0 8px;
  color: #c7cfeb;
  font-size: 0.9rem;
}

/* FAQ page (AWS-inspired structure) */
.faq-aws-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}

.faq-aws-nav {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.faq-aws-nav h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #e6ebff;
}

.faq-aws-nav a {
  display: block;
  color: #c5cdee;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.faq-aws-nav a:hover {
  background: rgba(124, 124, 255, 0.18);
  color: #fff;
}

.faq-category + .faq-category {
  margin-top: 28px;
}

.faq-category h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.faq-aws-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-aws-item + .faq-aws-item {
  margin-top: 10px;
}

.faq-aws-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.96rem;
}

.faq-aws-item summary::-webkit-details-marker {
  display: none;
}

.faq-aws-item[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-aws-item .answer {
  padding: 12px 16px 16px;
  color: #d0d7f1;
}

.faq-aws-item .answer p {
  margin: 0 0 10px;
}

.faq-aws-item .answer p:last-child {
  margin-bottom: 0;
}

.faq-media {
  display: block;
  width: min(100%, 460px);
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin: 10px 0;
}

.time-left-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.time-left-row input[type="text"],
.pw-field input {
  padding: 10px 11px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 10, 18, 0.7);
  color: #f3f6ff;
  font-family: inherit;
  min-width: 220px;
}

.time-left-row input[type="text"]:focus,
.pw-field input:focus {
  outline: none;
  border-color: rgba(124, 124, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.2);
}

.button.small {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  border: 1px solid rgba(124, 124, 255, 0.45);
  color: #eff3ff;
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.35), rgba(61, 217, 196, 0.24));
}

.button.small:hover {
  border-color: rgba(124, 124, 255, 0.68);
  background: linear-gradient(90deg, rgba(124, 124, 255, 0.5), rgba(61, 217, 196, 0.32));
}

.muted {
  color: #bdc6e7;
  font-size: 0.88rem;
}

.time-left-result {
  color: #dbe2fb;
  font-size: 0.92rem;
}

.pw-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pw-toggle {
  height: 38px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #eef2ff;
  cursor: pointer;
  font-size: 0.82rem;
}

.pw-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #b2b9d2;
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .faq-aws-layout {
    grid-template-columns: 1fr;
  }

  .faq-aws-nav {
    position: static;
  }
}

@media (max-width: 980px) {
  .showcase,
  .card-grid,
  .pricing-grid,
  .docs-video-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header .inner {
    min-height: 64px;
  }

  .hero > .container {
    width: min(var(--hero-container), calc(100% - 28px));
  }

  .hero-shell {
    min-height: auto;
    padding: 34px 26px 24px;
  }

  .timeline-section .container {
    padding-left: 68px;
  }

  .timeline-section .container::before {
    left: 24px;
  }

  .timeline-section .container::after {
    width: 30px;
    height: 30px;
    left: 9px;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-right {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .launch-lab-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .hero > .container {
    width: min(var(--hero-container), calc(100% - 20px));
  }

  .hero {
    padding-top: 0;
  }

  .hero-shell {
    min-height: auto;
    padding: 24px 16px 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .clip-stage {
    margin-top: 20px;
    margin-bottom: 34px;
  }

  .clip-tabs {
    bottom: -24px;
    max-width: calc(100% - 16px);
  }

  .timeline-section .container {
    padding-left: 48px;
  }

  .timeline-section .container::before {
    left: 14px;
    top: -60px;
    bottom: -60px;
  }

  .timeline-section .container::after {
    width: 24px;
    height: 24px;
    left: 2px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .site-header .inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-cta {
    flex: 1 1 auto;
    justify-content: center;
  }

  .video-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .credential-controls {
    align-items: stretch;
  }

  .credential-controls input[type="search"] {
    min-width: 100%;
  }

  .time-left-row input[type="text"],
  .pw-field input {
    min-width: 100%;
  }

  .pw-field {
    width: 100%;
  }
}

/* ---------- CloudLabBox Mar 2026 UI pass ---------- */

.community-inline {
  margin: 10px 0 0;
  color: #e1e7ff;
  font-size: 0.92rem;
}

.reviews-shell {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 520px);
  gap: 16px;
  align-items: start;
  justify-content: start;
}

.reviews-stack-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.reviews-image-card {
  display: inline-block;
  width: fit-content;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.reviews-image-card-featured {
  justify-self: start;
}

.review-image {
  width: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.google-live-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.google-live-card p {
  margin: 10px 0 14px;
  color: #c9d2ef;
  font-size: 0.93rem;
}

.google-live-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.google-live-header h3 {
  margin: 0;
}

.google-live-links {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.google-live-frame {
  width: 100%;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #080b14;
}

.google-live-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.credential-toggle {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #edf2ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.credential-toggle:hover {
  background: rgba(124, 124, 255, 0.22);
  border-color: rgba(124, 124, 255, 0.6);
}

.credential-table-wrap.is-collapsed {
  display: none;
}

.credential-count.is-hidden {
  display: none;
}

.doc-help-callout {
  border: 1px solid rgba(124, 124, 255, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.13), rgba(61, 217, 196, 0.08));
  padding: 18px;
}

.doc-help-callout h3 {
  margin: 0 0 8px;
}

.doc-help-callout p {
  margin: 0 0 10px;
  color: #d3dbf5;
}

.faq-video-embed {
  width: min(100%, 640px);
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #070912;
  aspect-ratio: 16 / 9;
}

.faq-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Pricing page (Render-inspired card layout while keeping site styling) */
.pricing-title {
  padding-bottom: 20px;
}

.infra-note {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.infra-note h2 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

.infra-note p {
  margin: 0 0 10px;
  color: #cdd6f2;
}

.infra-note ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #d8dff8;
}

.infra-note li {
  margin-bottom: 6px;
}

.pricing-render-section {
  padding-top: 8px;
}

.pricing-render-controls {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.pricing-render-controls h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.pricing-mode-description {
  margin: 0;
  color: #c5cde8;
  font-size: 0.92rem;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.billing-toggle button {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.03);
  color: #dee5fd;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.billing-toggle button:hover {
  border-color: rgba(124, 124, 255, 0.5);
}

.billing-toggle button.active {
  border-color: rgba(124, 124, 255, 0.75);
  background: rgba(124, 124, 255, 0.2);
  color: #fff;
}

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

.plan-tier-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}

.plan-tier-card.featured {
  border-color: rgba(124, 124, 255, 0.75);
  background: linear-gradient(180deg, rgba(124, 124, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.plan-tier-head h3 {
  margin: 0;
  font-size: 1rem;
}

.plan-tier-head span {
  color: #c6ceeb;
  font-size: 0.82rem;
}

.plan-tier-copy {
  margin: 0;
  color: #cfd6f2;
  font-size: 0.89rem;
  line-height: 1.45;
  min-height: 58px;
}

.plan-tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.price-total {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.price-term {
  font-size: 0.8rem;
  color: #bac4e5;
}

.plan-tier-effective {
  margin: 0;
  color: #aeb8da;
  font-size: 0.82rem;
}

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

.pricing-notes article {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
}

.pricing-notes h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.pricing-notes p {
  margin: 0;
  color: #c9d1ed;
  font-size: 0.88rem;
}

/* Account page */
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.account-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
}

.account-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.account-muted {
  margin: 0 0 12px;
  color: #c8d1ee;
  font-size: 0.9rem;
}

.account-form {
  display: grid;
  gap: 8px;
}

.account-form label {
  font-size: 0.88rem;
  color: #d4dcf8;
  font-weight: 500;
}

.account-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 11px 12px;
  font-size: 0.92rem;
}

.account-form input:focus {
  outline: none;
  border-color: rgba(124, 124, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(124, 124, 255, 0.2);
}

.account-current {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
}

.account-current p {
  margin: 0 0 6px;
  color: #d3dcf8;
  font-size: 0.9rem;
}

.account-current p:last-child {
  margin-bottom: 0;
}

.account-mode-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.account-mode-toggle button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #dde4fc;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.86rem;
  cursor: pointer;
}

.account-mode-toggle button.active {
  border-color: rgba(124, 124, 255, 0.75);
  background: rgba(124, 124, 255, 0.2);
  color: #fff;
}

.account-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
}

.account-panel.is-hidden {
  display: none;
}

.duration-row {
  display: flex;
  gap: 8px;
  margin: 8px 0 10px;
}

.duration-row input,
.duration-row select {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 10px 11px;
  font-size: 0.9rem;
}

.duration-row input {
  width: 120px;
}

.duration-row select {
  min-width: 140px;
}

.account-plan-grid {
  margin: 8px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.account-plan-option {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #e8edff;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 3px;
  cursor: pointer;
}

.account-plan-option.active {
  border-color: rgba(124, 124, 255, 0.78);
  background: rgba(124, 124, 255, 0.2);
}

.account-plan-option strong {
  font-size: 0.94rem;
}

.account-plan-option span {
  color: #d1d9f5;
  font-size: 0.84rem;
}

.account-plan-option em {
  color: #b8c1e4;
  font-size: 0.8rem;
  font-style: normal;
}

.account-checkout-box {
  margin-top: 12px;
  border: 1px solid rgba(124, 124, 255, 0.28);
  border-radius: 12px;
  background: rgba(124, 124, 255, 0.1);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.account-summary {
  margin: 0;
  color: #dbe3fe;
  font-size: 0.9rem;
}

.account-price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.account-price-line span {
  color: #d7def9;
  font-size: 0.88rem;
}

.account-price-line strong {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

@media (max-width: 1300px) {
  .plan-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .reviews-grid,
  .pricing-notes,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .reviews-stack-column {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .plan-grid-5 {
    grid-template-columns: 1fr;
  }

  .duration-row {
    flex-direction: column;
  }

  .duration-row input,
  .duration-row select {
    width: 100%;
  }
}

/* ===== 2026-03-09 CloudLabBox plan/account/product refresh ===== */
.launch-lab-btn,
.button.primary,
.hero-cta.primary {
  background: #5b6bff;
  border-color: #5b6bff;
  color: #ffffff;
}

.launch-lab-btn:hover,
.button.primary:hover,
.hero-cta.primary:hover {
  background: #7080ff;
  border-color: #7080ff;
  transform: translateY(-1px);
}

.hero-cta.primary:hover {
  box-shadow: 0 10px 22px rgba(91, 107, 255, 0.26);
}

.cta {
  background: rgba(91, 107, 255, 0.14);
  border-color: rgba(91, 107, 255, 0.4);
}

.plan-tier-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plan-tier-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--plan-accent, rgba(124, 124, 255, 0.75));
}

.plan-tier-card:hover,
.plan-tier-card.selected {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--plan-accent, #7c7cff) 70%, white 10%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.plan-tier-card.selected {
  background: linear-gradient(180deg, color-mix(in srgb, var(--plan-accent, #7c7cff) 18%, transparent), rgba(255, 255, 255, 0.04));
}

.plan-tier-card[data-plan-key="lite"] {
  --plan-accent: #51a2ff;
}

.plan-tier-card[data-plan-key="standard"] {
  --plan-accent: #30c1c7;
}

.plan-tier-card[data-plan-key="professional"] {
  --plan-accent: #8b74ff;
}

.plan-tier-card[data-plan-key="organization"] {
  --plan-accent: #f59f44;
}

.plan-tier-card[data-plan-key="enterprise"] {
  --plan-accent: #ff6f91;
}

.plan-tier-card.featured {
  border-color: color-mix(in srgb, var(--plan-accent, #8b74ff) 80%, white 10%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--plan-accent, #8b74ff) 18%, transparent), rgba(255, 255, 255, 0.04));
}

.plan-tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.plan-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: color-mix(in srgb, var(--plan-accent, #7c7cff) 22%, transparent);
  color: #f7f9ff;
  white-space: nowrap;
}

.plan-select-btn {
  width: 100%;
  margin-top: 0;
}

.plan-tier-card[data-plan-key="lite"] .plan-select-btn,
.account-plan-option[data-plan-key="lite"].active {
  background: #51a2ff;
  border-color: #51a2ff;
}

.plan-tier-card[data-plan-key="standard"] .plan-select-btn,
.account-plan-option[data-plan-key="standard"].active {
  background: #30c1c7;
  border-color: #30c1c7;
}

.plan-tier-card[data-plan-key="professional"] .plan-select-btn,
.account-plan-option[data-plan-key="professional"].active {
  background: #8b74ff;
  border-color: #8b74ff;
}

.plan-tier-card[data-plan-key="organization"] .plan-select-btn,
.account-plan-option[data-plan-key="organization"].active {
  background: #f59f44;
  border-color: #f59f44;
}

.plan-tier-card[data-plan-key="enterprise"] .plan-select-btn,
.account-plan-option[data-plan-key="enterprise"].active {
  background: #ff6f91;
  border-color: #ff6f91;
}

.pricing-checkout-shell {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.pricing-checkout-copy h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.pricing-checkout-copy p {
  margin: 0;
  color: #cbd4ef;
}

.pricing-selection-preview {
  margin-top: 16px;
}

.pricing-selection-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-selection-card strong {
  font-size: 1rem;
}

.pricing-selection-card span {
  color: #d9e1fb;
  font-size: 0.9rem;
}

.pricing-selection-card.plan-lite { border-color: rgba(81, 162, 255, 0.45); }
.pricing-selection-card.plan-standard { border-color: rgba(48, 193, 199, 0.45); }
.pricing-selection-card.plan-professional { border-color: rgba(139, 116, 255, 0.45); }
.pricing-selection-card.plan-organization { border-color: rgba(245, 159, 68, 0.45); }
.pricing-selection-card.plan-enterprise { border-color: rgba(255, 111, 145, 0.45); }

.pricing-signup-form {
  display: grid;
  gap: 8px;
}

.pricing-signup-form label,
.account-inline-label {
  font-size: 0.88rem;
  color: #d4dcf8;
  font-weight: 500;
}

.pricing-signup-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 11px 12px;
  font-size: 0.92rem;
}

.pricing-status,
.account-inline-note {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  color: #d7defa;
  font-size: 0.9rem;
}

.pricing-checkout-btn {
  margin-top: 4px;
}

.account-plan-option {
  border-width: 1px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.account-plan-option:hover {
  transform: translateY(-1px);
}

.account-plan-option.is-muted {
  opacity: 0.72;
}

.account-plan-option.active {
  color: #fff;
}

.billing-toggle-account {
  margin-top: 10px;
  margin-bottom: 10px;
}

.image-catalog-shell {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  display: grid;
  gap: 16px;
}

.image-catalog-toolbar {
  display: grid;
  gap: 10px;
}

.image-search-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #dfe6ff;
}

.image-search-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 10, 18, 0.74);
  color: #f4f6ff;
  padding: 13px 14px;
  font-size: 0.95rem;
}

.image-search-input:focus {
  outline: none;
  border-color: rgba(91, 107, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(91, 107, 255, 0.18);
}

.image-search-meta {
  color: #c7d0ec;
  font-size: 0.9rem;
}

.image-doc-head p {
  margin: 0 0 14px;
  color: #cad3ef;
}

.image-vendor-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.image-vendor-summary.is-hidden {
  display: none;
}

.image-vendor-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfe5fb;
  font-size: 0.82rem;
}

.image-vendor-pill strong {
  color: #fff;
}

.image-catalog-results {
  display: grid;
  gap: 10px;
}

.image-catalog-results.is-collapsed {
  display: none;
}

.image-vendor-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.image-vendor-card summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
}

.image-vendor-card summary::-webkit-details-marker {
  display: none;
}

.image-vendor-card strong {
  color: #c4cff0;
  font-size: 0.88rem;
}

.image-vendor-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.image-item-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(91, 107, 255, 0.1);
  border: 1px solid rgba(91, 107, 255, 0.18);
  color: #e6ebff;
  font-size: 0.82rem;
}

.image-empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px;
  color: #d4dbf7;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.google-links-card {
  display: grid;
  gap: 14px;
}

@media (max-width: 980px) {
  .pricing-checkout-shell,
  .account-grid {
    grid-template-columns: 1fr;
  }
}


.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #cad3ef;
  font-size: 0.92rem;
}

.page-breadcrumbs a {
  color: #e8ecff;
}

.seo-links-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-link-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.seo-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(124,124,255,0.45);
  background: rgba(124,124,255,0.08);
}

.seo-link-card strong {
  font-size: 1.02rem;
}

.seo-link-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-split {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

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

.seo-checklist li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #eaf0ff;
}

.seo-checklist li span {
  color: var(--muted);
}

.seo-faq-grid {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.seo-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.seo-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.seo-stat-box {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.seo-stat-box strong {
  font-size: 1.2rem;
}

@media (max-width: 980px) {
  .seo-links-grid,
  .seo-split {
    grid-template-columns: 1fr;
  }
}
