/* ============================================================
   theme-2026.css — DARK terminal-futuristic theme for the new pages.
   Loaded ONLY when theme2026:true, scoped under .theme-2026.
   Two typefaces only: Geo (display: headers, buttons, nav, wordmark)
   + IBM Plex Mono (everything else / body). No extra display family.
   Terminal feel: sharp corners, hard offset shadows, blinking cursor.
   ============================================================ */

.theme-2026 {
  --indigo: #5e55fd;
  --indigo-bright: #8a80fc;
  --violet: #a78bfa;
  --glow: rgba(94, 85, 253, 0.45);

  --bg: #08080c;
  --surface: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.10);
  --border-2: rgba(255, 255, 255, 0.18);
  --text: #f3f3f7;
  --muted: #b8b8c8;
  --subtle: #858596;

  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
  --display: "Geo", "IBM Plex Mono", monospace;
  --maxw: 1180px;
  --r: 4px;            /* base radius — kept tight for the terminal look */

  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Atmosphere */
.theme-2026::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% -5%, rgba(94,85,253,0.24), transparent 60%),
    radial-gradient(55% 45% at 95% 0%, rgba(167,139,250,0.15), transparent 55%),
    radial-gradient(70% 60% at 50% 112%, rgba(94,85,253,0.12), transparent 60%);
}
.theme-2026::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
  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)'/%3E%3C/svg%3E");
}

/* Resets */
.theme-2026 .t-list { list-style: none; margin: 0; padding: 0; border: 0; background: none; color: inherit; }
.theme-2026 .t-list li { margin: 0; }
.theme-2026 p { margin: 0; }
.theme-2026 a { color: inherit; text-decoration: none; }

/* Type — headers Geo, body IBM Plex Mono */
.theme-2026 h1, .theme-2026 h2, .theme-2026 h3, .theme-2026 h4,
.theme-2026 .t-h1, .theme-2026 .t-h2, .theme-2026 .t-h3 {
  font-family: var(--display); font-weight: 400; letter-spacing: -0.005em; color: var(--text);
}
.t-hl { color: var(--indigo-bright); text-shadow: 0 0 36px rgba(94,85,253,0.55); }

/* Blinking terminal cursor */
.t-cursor { display: inline-block; width: 0.5em; height: 1.05em; background: var(--indigo-bright); margin-left: 0.08em; transform: translateY(0.14em); box-shadow: 0 0 12px var(--glow); animation: t-blink 1.05s steps(1) infinite; }
.t-cursor--h1 { width: 0.42em; height: 0.92em; margin-left: 0.08em; }
@keyframes t-blink { 50% { opacity: 0; } }

/* Terminal prompt (with typewriter) */
.t-term { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--muted); display: inline-flex; align-items: center; }
.t-term__prompt { color: var(--indigo-bright); }
.t-term__cmd { display: inline-block; overflow: hidden; white-space: nowrap; vertical-align: bottom; max-width: 0; animation: t-type 1.6s steps(24) 0.25s forwards; }
@keyframes t-type { to { max-width: 22ch; } }

/* ============================================================
   Header — dark glass (reuses nav.njk); links use Geo (display)
   ============================================================ */
.theme-2026 .nav-bar {
  background: rgba(8,8,12,0.6) !important;
  -webkit-backdrop-filter: saturate(140%) blur(16px); backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.theme-2026 .nav-bar .div-block-23.divshadow { display: none; }
.theme-2026 .nav-bar-wrapper { background: transparent !important; }
.theme-2026 .t-brand-lockup { display: inline-flex; align-items: center; gap: 10px; }
.theme-2026 .t-brand-mark { width: 30px; height: 30px; display: block; }
.theme-2026 .t-brand-name { font-family: var(--display); font-weight: 400; font-size: 22px; letter-spacing: 0.01em; color: #fff; }
.theme-2026 .nav-bar .text-block-13,
.theme-2026 .nav-bar .text-block-14,
.theme-2026 .nav-bar .text-block-15,
.theme-2026 .nav-bar .nav-link.licences-copy,
.theme-2026 .nav-bar .login {
  font-family: var(--display) !important; font-size: 16px !important; letter-spacing: 0.02em; color: #d3d3df !important;
}
.theme-2026 .nav-bar .divtrianglenav { filter: brightness(0) invert(1); opacity: 0.6; }
.theme-2026 .nav-bar .nav-link:hover,
.theme-2026 .nav-bar .w-dropdown.w--open .nav-link { background-color: rgba(255,255,255,0.07); color: #fff !important; }
.theme-2026 .nav-bar .phoneiqphonenumber { color: var(--muted); font-family: var(--mono); font-size: 12px; }
.theme-2026 .nav-bar .phoneiqphonenumbera { border-color: var(--border-2); border-radius: 2px; }
.theme-2026 .nav-bar .button {
  background: var(--indigo) !important; border: 1px solid var(--indigo-bright) !important; border-radius: 0; color: #fff;
  font-family: var(--display); font-weight: 400; font-size: 16px; box-shadow: 4px 4px 0 0 rgba(94,85,253,0.4);
  transition: transform .12s ease, box-shadow .12s ease;
}
.theme-2026 .nav-bar .button:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 rgba(94,85,253,0.4); }
/* dark dropdown panels */
.theme-2026 .nav-menu .dropdown-list.w-dropdown-list {
  background: rgba(14,14,20,0.94) !important; border-radius: 6px !important;
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--border) !important; box-shadow: 0 30px 70px -24px rgba(0,0,0,0.8) !important;
}
.theme-2026 .nav-menu .divnav { border-radius: 4px; }
.theme-2026 .nav-menu .divnav:hover { background-color: rgba(255,255,255,0.06) !important; }
.theme-2026 .nav-menu .link-6, .theme-2026 .nav-menu .link-39 { color: #e7e7ef !important; font-family: var(--mono); font-size: 14px; }
.theme-2026 .nav-menu .heading-38.nav { color: #fff !important; font-family: var(--display); }
.theme-2026 .nav-menu .text-block-105.nav { color: var(--subtle) !important; font-family: var(--mono); font-size: 12px; }
.theme-2026 .nav-menu .officenavdiv { border-left-color: var(--border) !important; }

/* mobile themed header + full-screen menu */
.theme-2026 .navigation-mob { background: rgba(8,8,12,0.74) !important; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.theme-2026 .navigation-mob .menu-mob { background: rgba(255,255,255,0.06); border-radius: 4px; }
.theme-2026 .navigation-mob .image-57 { filter: brightness(0) invert(1); }
.theme-2026 .navigation-mob.w--nav-menu-open .mobile-nav { background: var(--bg) !important; }
.theme-2026 .mobile-nav .mobile-toggle,
.theme-2026 .mobile-nav .mobile-nav-link { color: #e7e7ef !important; border-bottom-color: var(--border) !important; font-family: var(--display) !important; font-size: 17px !important; }
.theme-2026 .mobile-nav .text-block-110,
.theme-2026 .mobile-nav .text-block-115,
.theme-2026 .mobile-nav .text-block-116 { color: #fff !important; font-family: var(--display) !important; }
.theme-2026 .mobile-nav .dropdown-list-4 { background: transparent !important; }
.theme-2026 .mobile-nav .link-6, .theme-2026 .mobile-nav .link-39 { color: #e7e7ef !important; }
.theme-2026 .mobile-nav .heading-38.nav { color: #fff !important; }

/* 2026 IA navigation */
.theme-2026 .nav-2026 { z-index: 1000; }
.theme-2026 .nav-2026-desktop {
  position: sticky; top: 0; width: 100%;
  background: rgba(8,8,12,0.72) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.theme-2026 .nav-2026__wrap {
  max-width: 1280px; min-height: 74px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 22px; background: transparent !important;
}
.theme-2026 .nav-2026__brand { display: inline-flex; align-items: center; padding: 0; flex: 0 0 auto; }
.theme-2026 .nav-2026__navigation { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; min-width: 0; }
.theme-2026 .nav-2026__menu {
  display: flex !important; align-items: center; gap: 4px; flex: 1 1 auto; min-width: 0;
  background: transparent !important; position: static !important; float: none !important;
}
.theme-2026 .nav-2026__dropdown { position: relative; }
.theme-2026 .nav-2026__toggle,
.theme-2026 .nav-2026__link {
  display: inline-flex !important; align-items: center; gap: 7px; min-height: 40px; padding: 8px 11px !important;
  border-radius: 4px; background: transparent !important; color: #d8d8e4 !important;
  font-family: var(--display) !important; font-size: 16px !important; letter-spacing: 0.01em; white-space: nowrap;
}
.theme-2026 .nav-2026__toggle:hover,
.theme-2026 .nav-2026__link:hover,
.theme-2026 .nav-2026__dropdown.w--open .nav-2026__toggle {
  background: rgba(255,255,255,0.075) !important; color: #fff !important;
}
.theme-2026 .nav-2026__badge { margin-left: 0; transform: translateY(-1px); }
.theme-2026 .nav-2026__chevron {
  width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.68; transition: transform .16s ease, opacity .16s ease; flex: 0 0 auto;
}
.theme-2026 .nav-2026__dropdown.w--open .nav-2026__chevron,
.theme-2026 .nav-2026-mobile__dropdown.w--open .nav-2026__chevron {
  transform: rotate(225deg) translate(-1px,-1px); opacity: 1;
}
.theme-2026 .nav-2026__panel {
  display: none; position: absolute; top: calc(100% + 10px); left: 0; min-width: 278px; padding: 0;
  background: rgba(12,12,18,0.96) !important; border: 1px solid var(--border) !important; border-radius: 6px !important;
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -26px rgba(0,0,0,0.86), 6px 6px 0 rgba(94,85,253,0.2) !important;
}
.theme-2026 .nav-2026__dropdown--wide .nav-2026__panel { min-width: 560px; }
.theme-2026 .nav-2026__panel-inner { display: grid; gap: 8px; padding: 12px; }
.theme-2026 .nav-2026__panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.theme-2026 .nav-2026__item {
  display: grid; gap: 3px; padding: 12px 13px; border: 1px solid transparent; border-radius: 4px;
  color: #ececf5; transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.theme-2026 .nav-2026__item:hover { background: rgba(255,255,255,0.06); border-color: rgba(138,128,252,0.28); transform: translateY(-1px); }
.theme-2026 .nav-2026__item-label { font-family: var(--display); font-size: 18px; line-height: 1.08; color: #fff; }
.theme-2026 .nav-2026__item-kicker { font-family: var(--mono); font-size: 12px; line-height: 1.35; color: var(--muted); }
.theme-2026 .nav-2026__right { display: inline-flex; align-items: center; justify-content: flex-end; gap: 13px; flex: 0 0 auto; }
.theme-2026 .nav-2026__phone,
.theme-2026 .nav-2026__login {
  color: #bdbdcb; font-family: var(--mono); font-size: 12px; white-space: nowrap; transition: color .15s ease;
}
.theme-2026 .nav-2026__phone:hover,
.theme-2026 .nav-2026__login:hover { color: #fff; }
.theme-2026 .nav-2026__cta {
  min-height: 38px; padding: 8px 15px !important; display: inline-flex !important; align-items: center; white-space: nowrap;
}
.theme-2026 .nav-2026__seo-links {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.theme-2026 .nav-2026-mobile { display: none; }

@media (max-width: 1100px) {
  .theme-2026 .nav-2026-desktop { display: none !important; }
  .theme-2026 .nav-2026-mobile {
    display: block !important; position: sticky; top: 0; z-index: 1000; min-height: 68px;
    background: rgba(8,8,12,0.78) !important; border-bottom: 1px solid var(--border);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  }
  .theme-2026 .nav-2026-mobile__bar {
    min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 0 18px; background: transparent !important;
  }
  .theme-2026 .nav-2026-mobile__actions { display: flex; align-items: center; gap: 10px; }
  .theme-2026 .nav-2026-mobile__cta { display: inline-flex; align-items: center; min-height: 36px; padding: 7px 12px !important; font-size: 15px !important; }
  .theme-2026 .nav-2026-mobile__button {
    width: 42px; height: 42px; padding: 0; border: 1px solid var(--border-2); border-radius: 4px;
    background: rgba(255,255,255,0.055); display: grid; place-items: center; cursor: pointer;
  }
  .theme-2026 .nav-2026-mobile__hamburger { width: 19px; display: grid; gap: 4px; }
  .theme-2026 .nav-2026-mobile__hamburger span { display: block; height: 2px; background: #fff; box-shadow: 0 0 10px rgba(138,128,252,0.5); }
  .theme-2026.mobile-nav-open { overflow: hidden; }
  .theme-2026 .nav-2026-mobile__menu {
    display: none; position: fixed !important; inset: 68px 0 0 0; z-index: 999; float: none !important;
    width: 100%; height: calc(100vh - 68px); padding: 20px 18px 34px; overflow-y: auto;
    background:
      radial-gradient(60% 45% at 10% 0%, rgba(94,85,253,0.24), transparent 60%),
      linear-gradient(180deg, rgba(8,8,12,0.98), rgba(5,5,8,0.98)) !important;
    border-top: 1px solid var(--border); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .theme-2026 .nav-2026-mobile.w--nav-menu-open .nav-2026-mobile__menu { display: block !important; }
  .theme-2026 .nav-2026-mobile__dropdown { border-bottom: 1px solid var(--border); }
  .theme-2026 .nav-2026-mobile__toggle,
  .theme-2026 .nav-2026-mobile__link {
    width: 100%; min-height: 56px; padding: 15px 0 !important; display: flex !important; align-items: center; gap: 9px;
    color: #f3f3f7 !important; font-family: var(--display) !important; font-size: 24px !important; background: transparent !important;
  }
  .theme-2026 .nav-2026-mobile__toggle { justify-content: flex-start; }
  .theme-2026 .nav-2026-mobile__list {
    display: none; flex-direction: column; gap: 8px; padding: 0 0 16px 10px; background: transparent !important;
    position: static !important; width: 100%;
  }
  .theme-2026 .nav-2026-mobile__list .nav-2026__item {
    padding: 11px 12px; background: rgba(255,255,255,0.035); border-color: rgba(255,255,255,0.075);
  }
  .theme-2026 .nav-2026-mobile__bottom {
    display: grid; gap: 12px; padding-top: 22px;
  }
}

@media (max-width: 520px) {
  .theme-2026 .nav-2026-mobile__cta { display: none !important; }
  .theme-2026 .nav-2026__brand .t-brand-name { font-size: 20px; }
  .theme-2026 .nav-2026-mobile__toggle,
  .theme-2026 .nav-2026-mobile__link { font-size: 22px !important; }
}

/* ============================================================
   Footer (footer-2026.njk)
   ============================================================ */
.theme-2026 .t-footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: #060609; }
.t-footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.t-footer__brand { max-width: 330px; }
.t-footer__tag { color: var(--muted); font-size: 14px; max-width: 320px; margin-top: 14px; line-height: 1.55; }
.t-footer__links { display: flex; align-items: flex-start; gap: 42px; flex-wrap: wrap; }
.t-footer__links--wide { flex: 1 1 620px; justify-content: flex-start; gap: 38px; }
.t-footer__col { display: grid; align-content: start; gap: 10px; min-width: 132px; grid-auto-rows: max-content; }
.t-footer__h { margin: 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--subtle); }
.t-footer__col a { color: #c2c2d0; font-size: 14px; line-height: 1.35; transition: color .15s ease; }
.t-footer__col a:hover { color: #fff; }
.t-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }
.t-footer__legal { font-family: var(--mono); font-size: 12px; color: var(--subtle); display: flex; gap: 18px; flex-wrap: wrap; }
.t-footer__legal a:hover { color: #fff; }
.t-footer__social { display: flex; gap: 10px; }
.t-footer__social a { width: 36px; height: 36px; border-radius: 4px; border: 1px solid var(--border); display: grid; place-items: center; transition: border-color .15s ease, background .15s ease; }
.t-footer__social a:hover { border-color: var(--border-2); background: rgba(255,255,255,0.05); }
.t-footer__social img { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .t-footer__top { display: grid; gap: 34px; }
  .t-footer__links,
  .t-footer__links--wide { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

@media (max-width: 460px) {
  .t-footer__links,
  .t-footer__links--wide { grid-template-columns: 1fr; }
}

/* ============================================================
   .t-* building blocks
   ============================================================ */
.t-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* higher specificity than the `.theme-2026 p { margin:0 }` reset so centered leads actually center */
.theme-2026 .t-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.t-section { padding: 104px 0; }
.t-section--tight { padding: 68px 0; }
.t-center { text-align: center; }
.t-mb-s { margin-bottom: 16px; } .t-mb-m { margin-bottom: 24px; } .t-mb-l { margin-bottom: 56px; }

.t-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--indigo-bright); background: rgba(94,85,253,0.10); border: 1px solid rgba(94,85,253,0.30);
  border-radius: 4px; padding: 7px 14px;
}
.t-eyebrow::before { content: ""; width: 6px; height: 6px; background: var(--indigo-bright); box-shadow: 0 0 10px var(--indigo-bright); }

.t-h1 { font-size: clamp(46px, 7vw, 84px); line-height: 1.0; font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.t-h2 { font-size: clamp(33px, 5vw, 58px); line-height: 1.04; font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.t-h3 { font-size: 23px; font-weight: 400; letter-spacing: 0; margin: 0; }
.t-lead { font-size: clamp(15px, 1.7vw, 18px); line-height: 1.62; color: var(--muted); font-weight: 400; }

/* Buttons — square, bigger type, hard offset shadow (no blur) */
.t-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.t-center .t-cta-row { justify-content: center; }
.t-btn {
  display: inline-flex; align-items: center; gap: 9px; border-radius: 0; padding: 11px 22px;
  font-weight: 400; font-size: 21px; letter-spacing: 0.01em; font-family: var(--display); cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, border-color .2s ease;
}
.t-btn--primary { background: var(--indigo); color: #fff; border-color: var(--indigo-bright); box-shadow: 6px 6px 0 0 rgba(94,85,253,0.4); }
.t-btn--primary:hover { transform: translate(2px,2px); box-shadow: 4px 4px 0 0 rgba(94,85,253,0.4); }
.t-btn--primary:active { transform: translate(6px,6px); box-shadow: 0 0 0 0 rgba(94,85,253,0); }
.t-btn--ghost { background: transparent; border-color: var(--border-2); color: var(--text); box-shadow: 6px 6px 0 0 rgba(255,255,255,0.1); }
.t-btn--ghost:hover { transform: translate(2px,2px); box-shadow: 4px 4px 0 0 rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.34); }
.t-btn--ghost:active { transform: translate(6px,6px); box-shadow: 0 0 0 0; }
.t-badge-beta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(94,85,253,0.2); border: 1px solid rgba(94,85,253,0.4); color: var(--indigo-bright); border-radius: 2px; padding: 2px 7px; margin-left: 8px; }

/* Hero — cinematic, centered */
.t-hero { position: relative; padding: 204px 0 116px; text-align: center; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.t-nowrap { white-space: nowrap; }
.t-hero > .t-wrap { position: relative; z-index: 3; width: 100%; }
.t-hero .t-cta-row, .t-hero .t-wave { justify-content: center; }
.t-hero__aurora { position: absolute; inset: -25% -10% auto -10%; height: 95%; z-index: 0; pointer-events: none; filter: blur(64px); opacity: 0.92;
  background:
    radial-gradient(38% 56% at 22% 26%, rgba(94,85,253,0.55), transparent 60%),
    radial-gradient(40% 50% at 80% 18%, rgba(167,139,250,0.42), transparent 60%),
    radial-gradient(34% 44% at 62% 64%, rgba(56,189,248,0.26), transparent 60%);
  animation: t-aurora 20s ease-in-out infinite alternate; }
@keyframes t-aurora { 0% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(2.5%,-2%,0) scale(1.1); } 100% { transform: translate3d(-2.5%,1.5%,0) scale(1.05); } }
.t-hero__grid { position: absolute; left: 50%; bottom: -1px; width: 200%; height: 46%; transform: translateX(-50%) perspective(440px) rotateX(76deg); transform-origin: bottom center; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(rgba(138,128,252,0.55) 1px, transparent 1px), linear-gradient(90deg, rgba(138,128,252,0.42) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 74%); mask-image: linear-gradient(to top, #000 0%, transparent 74%);
  animation: t-grid 5.5s linear infinite; }
@keyframes t-grid { from { background-position: 0 0; } to { background-position: 0 60px; } }
.t-hero--mega { min-height: 96vh; }
.t-hero--mega .t-h1 { font-size: clamp(34px, 6.8vw, 92px); line-height: 1.08; text-shadow: 0 0 70px rgba(94,85,253,0.3); }
@media (prefers-reduced-motion: reduce) { .t-hero__aurora, .t-hero__grid { animation: none; } }

/* Voice waveform — scaleY (no reflow) */
.t-wave { display: inline-flex; align-items: center; gap: 5px; height: 44px; }
.t-wave span { width: 4px; height: 40px; background: linear-gradient(180deg, var(--indigo-bright), var(--indigo)); box-shadow: 0 0 12px var(--glow); transform: scaleY(0.25); transform-origin: center; animation: t-wave 1.15s ease-in-out infinite; }
.t-wave span:nth-child(1){animation-delay:0s}.t-wave span:nth-child(2){animation-delay:.1s}.t-wave span:nth-child(3){animation-delay:.2s}.t-wave span:nth-child(4){animation-delay:.3s}.t-wave span:nth-child(5){animation-delay:.4s}.t-wave span:nth-child(6){animation-delay:.5s}.t-wave span:nth-child(7){animation-delay:.6s}.t-wave span:nth-child(8){animation-delay:.7s}.t-wave span:nth-child(9){animation-delay:.8s}
@keyframes t-wave { 0%,100%{ transform: scaleY(0.2); opacity:.55 } 50%{ transform: scaleY(1); opacity:1 } }

/* Grids + cards — sharp */
.t-grid { display: grid; gap: 18px; }
.t-grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.t-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 30px; overflow: hidden;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.t-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); }
.t-card:hover { transform: translateY(-3px); border-color: rgba(138,128,252,0.5); background: rgba(255,255,255,0.05); box-shadow: 6px 6px 0 0 rgba(94,85,253,0.18); }
.t-card__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo-bright); margin-bottom: 16px; }
.t-card h3 { margin: 0 0 10px; }
.t-card p { color: #c0c0cf; font-size: 14px; line-height: 1.6; }
.t-card--link .t-arrow { color: var(--indigo-bright); margin-top: 18px; display: inline-block; font-family: var(--mono); transition: transform .2s ease; }
.t-card--link:hover .t-arrow { transform: translateX(5px); }
.t-pillar__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo-bright); }

/* Capability tiles — balanced 3-up */
.t-feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .t-feat, .t-grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .t-feat { grid-template-columns: 1fr; } }
.t-feat .t-card { padding: 26px; }
.t-feat .t-card h3 { font-size: 20px; }

/* Split */
.t-split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .t-split { grid-template-columns: 1fr; gap: 34px; } }

/* Call transcript demo */
.t-transcript { padding: 26px !important; }
.t-transcript__bar { font-family: var(--mono); font-size: 12px; color: var(--indigo-bright); display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.t-transcript__bar .dot { width: 8px; height: 8px; background: #34d399; box-shadow: 0 0 10px #34d399; }
.t-turn { max-width: 82%; padding: 12px 15px; border-radius: 6px; font-size: 14px; line-height: 1.5; margin-bottom: 12px; font-family: var(--mono); }
.t-turn__who { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; display: block; margin-bottom: 5px; }
.t-turn--caller { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: #d7d7e1; border-bottom-left-radius: 2px; }
.t-turn--agent { background: linear-gradient(180deg, rgba(94,85,253,0.26), rgba(94,85,253,0.12)); border: 1px solid rgba(138,128,252,0.4); color: #fff; margin-left: auto; border-bottom-right-radius: 2px; }

/* Powered-by logo row */
.t-powered { text-align: center; }
.t-powered__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--subtle); }
.t-powered__row { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; margin-top: 26px; }
.t-powered__item { display: inline-flex; align-items: center; gap: 13px; font-family: var(--display); font-size: 34px; color: #cfcfd9; }
.t-powered__item img.t-logo-mark { height: 38px; width: auto; opacity: 0.95; }
.t-logo-telnyx { height: 34px; width: auto; vertical-align: middle; opacity: 0.95; }
.t-powered__row .t-logo-wm { height: 38px; width: auto; opacity: 0.92; }

/* Hero title: line 1 fades in, line 2 types out. Hidden ghost reserves the
   full height so the layout never shifts while typing. */
.t-hero__title { position: relative; display: inline-block; }
.t-title-ghost { visibility: hidden; }
.t-title-live { position: absolute; inset: 0; }
.t-fade { opacity: 0; animation: t-fadein .85s ease 0.1s forwards; }
@keyframes t-fadein { to { opacity: 1; } }

/* FAQ */
.t-faq { max-width: 780px; margin: 0 auto; }
.t-faq details { border-bottom: 1px solid var(--border); padding: 24px 2px; }
.t-faq summary { cursor: pointer; font-family: var(--display); font-weight: 400; font-size: 21px; list-style: none; display: flex; justify-content: space-between; gap: 18px; color: var(--text); }
.t-faq summary::-webkit-details-marker { display: none; }
.t-faq summary::after { content: "+"; color: var(--indigo-bright); font-size: 24px; line-height: 1; }
.t-faq details[open] summary::after { content: "−"; }
.t-faq p { color: var(--muted); font-size: 14px; line-height: 1.62; margin-top: 14px; }

/* CTA band */
.t-cta-band { position: relative; overflow: hidden; border: 1px solid rgba(138,128,252,0.35); border-radius: 10px; padding: 68px 40px; text-align: center; background: radial-gradient(120% 140% at 50% -20%, rgba(94,85,253,0.42), rgba(12,12,18,0.6)); }
.t-cta-band .t-cta-row { justify-content: center; }

/* Flagship homepage */
.t-home-hero .t-term { display: flex; width: max-content; max-width: 100%; justify-content: center; margin: 0 auto 28px; }
.t-home-hero__title { margin: 0; }
.theme-2026 .t-home-hero__lead { max-width: min(620px, 52ch); margin: 34px auto 0; }
.t-home-hero__ctas { margin-top: 38px; }
.t-home-hero__wave { margin-top: 48px; }
.t-home-status {
  max-width: 920px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(138,128,252,0.26); background: rgba(10,10,16,0.68);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 6px 6px 0 rgba(94,85,253,0.18);
}
.t-home-status div {
  padding: 15px 16px; border-right: 1px solid var(--border); color: #d7d7e3;
  font-family: var(--mono); font-size: 12px; line-height: 1.35; text-align: left;
}
.t-home-status div:last-child { border-right: 0; }
.t-home-status span { display: block; margin-bottom: 5px; color: var(--indigo-bright); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.t-home-capabilities .t-narrow { margin-top: 16px; }
.t-home-feature { min-height: 238px; }
.t-home-feature:nth-child(2n) { background: rgba(94,85,253,0.045); }
.t-home-feature:nth-child(3n) { border-color: rgba(255,255,255,0.14); }
.t-home-live-call__grid { align-items: center; }
.t-home-live-call h2 { margin: 20px 0 22px; }
.t-home-action-stack {
  display: grid; gap: 10px; max-width: 560px; margin-top: 28px;
  font-family: var(--mono); font-size: 13px; color: #dadae7;
}
.t-home-action-stack div {
  display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--border); background: rgba(255,255,255,0.035);
}
.t-home-action-stack span { color: var(--indigo-bright); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.t-home-transcript { box-shadow: 10px 10px 0 rgba(94,85,253,0.16); }
.t-home-steps {
  position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.t-home-steps::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,128,252,0.55), transparent);
}
.t-home-step { min-height: 230px; }
.t-home-engine__shell {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px;
  border: 1px solid rgba(138,128,252,0.32); border-radius: 10px; padding: 42px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.16), rgba(255,255,255,0.025) 42%, rgba(56,189,248,0.08)),
    rgba(255,255,255,0.03);
  box-shadow: 8px 8px 0 rgba(94,85,253,0.18);
}
.t-home-engine__shell::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 42px 42px;
}
.t-home-engine__copy,
.t-home-engine__logos,
.t-home-engine__points { position: relative; z-index: 1; }
.t-home-engine__copy h2 { margin: 20px 0 20px; max-width: 12ch; }
.t-home-engine__logos { display: flex; align-items: center; justify-content: center; gap: 18px; }
.t-home-engine__logo-card {
  min-width: 190px; min-height: 126px; display: grid; place-items: center;
  border: 1px solid var(--border); background: rgba(5,5,8,0.62); border-radius: 6px;
}
.t-home-engine__logo-card img { max-width: 122px; max-height: 42px; opacity: 0.95; }
.t-home-engine__logo-card img[alt="OpenAI"] { max-width: 112px; }
.t-home-engine__logo-card img[alt="Telnyx"] { max-width: 136px; max-height: 46px; }
.t-home-engine__plus { color: var(--indigo-bright); font-family: var(--display); font-size: 36px; line-height: 1; text-shadow: 0 0 24px rgba(94,85,253,0.6); }
.t-home-engine__points {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 8px;
}
.t-home-engine__points div { padding: 14px 16px; border: 1px solid var(--border); background: rgba(8,8,12,0.5); color: var(--muted); font-size: 13px; }
.t-home-engine__points span { display: block; margin-bottom: 5px; color: #fff; font-family: var(--display); font-size: 20px; }
.t-home-proof__header { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr); gap: 42px; align-items: end; margin-bottom: 34px; }
.t-home-proof__header h2 { margin-top: 20px; }
.t-home-logo-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  overflow: hidden; padding: 14px 18px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.035); border-radius: 8px;
}
.t-home-logo-strip img {
  flex: 0 1 168px; width: 168px; height: 64px; max-width: calc(50vw - 46px); padding: 16px 18px; object-fit: contain;
  background: rgba(255,255,255,0.032); border: 1px solid rgba(255,255,255,0.055); border-radius: 5px;
  opacity: 0.62; filter: brightness(0) invert(1); transition: opacity .15s ease, border-color .15s ease, background .15s ease;
}
.t-home-logo-strip img:hover { opacity: 0.9; border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); }
.t-home-proof__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr); gap: 18px; margin-top: 18px; }
.t-home-quote { margin: 0; }
.t-home-quote blockquote { margin: 0; color: #f0f0f7; font-family: var(--display); font-size: clamp(26px, 3.2vw, 42px); line-height: 1.08; }
.t-home-quote figcaption { margin-top: 22px; color: var(--muted); font-family: var(--mono); font-size: 13px; }
.t-home-proof__metrics { display: grid; gap: 12px; }
.t-home-proof__metrics div { padding: 18px; border: 1px solid var(--border); background: rgba(255,255,255,0.035); color: var(--muted); font-size: 13px; }
.t-home-proof__metrics span { display: block; color: #fff; font-family: var(--display); font-size: 28px; line-height: 1; margin-bottom: 8px; }
.t-home-cti { padding-top: 48px; }
.t-home-cti__band {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: start;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(94,85,253,0.09));
}
.t-home-cti__intro h2 { margin: 20px 0; }
.t-home-cti__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.t-home-cti__links a {
  display: grid; gap: 5px; padding: 18px; border: 1px solid var(--border);
  background: rgba(8,8,12,0.5); border-radius: 5px; color: #fff; font-family: var(--display); font-size: 22px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.t-home-cti__links a:hover { transform: translateY(-2px); border-color: rgba(138,128,252,0.42); background: rgba(255,255,255,0.055); }
.t-home-cti__links span { color: var(--muted); font-family: var(--mono); font-size: 12px; line-height: 1.4; }
.t-home-final .t-cta-band { padding: 88px 40px; }
.t-home-final .t-h2 { min-height: 1.08em; margin: 30px auto 0; max-width: 24ch; }
.t-home-final .t-lead { max-width: 600px; margin: 34px auto 0; color: #cfcfe0; }
.t-home-final .t-cta-row { margin-top: 44px; }

@media (max-width: 980px) {
  .t-home-status { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-home-status div:nth-child(2) { border-right: 0; }
  .t-home-status div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .t-home-steps,
  .t-home-engine__shell,
  .t-home-proof__header,
  .t-home-proof__grid,
  .t-home-cti__band { grid-template-columns: 1fr; }
  .t-home-steps::before { display: none; }
  .t-home-engine__copy h2 { max-width: 100%; }
}

@media (max-width: 700px) {
  .t-home-hero__lead { margin-top: 28px; }
  .t-home-logo-strip { gap: 12px; padding: 12px; }
  .t-home-logo-strip img { flex-basis: 138px; width: 138px; height: 58px; padding: 14px 16px; }
  .t-home-engine__logos,
  .t-home-engine__points,
  .t-home-cti__links { grid-template-columns: 1fr; }
  .t-home-engine__logos { display: grid; }
  .t-home-engine__plus { text-align: center; }
  .t-home-action-stack div { grid-template-columns: 1fr; gap: 5px; }
  .t-home-final .t-cta-band,
  .t-home-engine__shell,
  .t-home-cti__band { padding: 32px 20px; }
}

/* Conversion pages */
.t-hero--compact {
  min-height: auto;
  padding: 154px 0 88px;
  text-align: left;
  align-items: flex-start;
}
.t-conv-hero .t-hero__grid { height: 38%; opacity: 0.36; }
.t-conv-hero .t-cta-row { justify-content: flex-start; margin-top: 34px; }
.t-conv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
}
.t-conv-hero__copy .t-term { margin-bottom: 24px; }
.t-conv-hero__copy .t-h1 { max-width: 11.5ch; }
.t-conv-hero__copy .t-lead { max-width: 650px; margin-top: 26px; }
.t-console {
  padding: 28px !important;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 10px 10px 0 rgba(94,85,253,0.18);
}
.t-console__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 12px;
}
.t-console__bar .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}
.t-console__line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: #e6e6f0;
  font-family: var(--mono);
  font-size: 13px;
}
.t-console__line span {
  color: var(--indigo-bright);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.t-console__wave { justify-content: flex-start !important; margin-top: 30px; }
.t-conv-feature { min-height: 224px; }
.t-conv-feature:nth-child(odd) { background: rgba(94,85,253,0.045); }
.t-signal-rail,
.t-demo-brief,
.t-control-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.t-signal-rail div,
.t-demo-brief div,
.t-control-list div {
  padding: 13px 15px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  color: #dadae7;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.45;
}
.t-signal-rail span,
.t-demo-brief span,
.t-control-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--indigo-bright);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.t-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.t-process-card { min-height: 244px; }
.t-conv-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(138,128,252,0.34);
  border-radius: 10px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.16), rgba(255,255,255,0.025) 48%, rgba(56,189,248,0.07)),
    rgba(255,255,255,0.03);
  box-shadow: 8px 8px 0 rgba(94,85,253,0.16);
}
.t-conv-band .t-h2 { margin-top: 20px; }
.t-voice-engine .t-home-engine__copy h2 { max-width: 11ch; }
.t-form-band .t-h2 {
  min-height: 1.08em;
  max-width: 24ch;
  margin: 30px auto 0;
}
.t-form-band .t-lead {
  max-width: 620px;
  margin: 30px auto 38px;
  color: #cfcfe0;
}
.t-inline-form-wrap { max-width: 560px; margin: 0 auto; }
.t-demo-grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1.04fr);
  align-items: center;
}
.t-calendly-card {
  padding: 18px !important;
  overflow: hidden;
  background: rgba(255,255,255,0.052);
}
.t-calendly-card .t-card__num { padding: 8px 10px 0; }
.t-calendly-card .w-embed {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #101016;
}
.t-calendly-card .calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  height: 780px !important;
  min-height: 780px;
}
.t-login-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.t-form-hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  align-items: center;
}
.t-conv-form-card {
  padding: 30px !important;
  box-shadow: 10px 10px 0 rgba(94,85,253,0.16);
}
.theme-2026 .t-conv-form-card .generalform.w-form { margin: 0; }
.theme-2026 .t-conv-form-card .generalformcontainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.theme-2026 .t-conv-form-card .generalformcontainer > label.sr-only {
  position: absolute;
}
.theme-2026 .t-conv-form-card .inputall {
  width: auto !important;
  margin: 0 !important;
  min-width: 0;
}
.theme-2026 .t-conv-form-card .inputform {
  width: 100% !important;
  min-height: 54px;
  margin: 0 !important;
  padding: 14px 15px !important;
  border: 1px solid var(--border-2) !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,0.062) !important;
  color: #fff !important;
  font-family: var(--mono) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}
.theme-2026 .t-conv-form-card textarea.inputform {
  grid-column: 1 / -1;
  min-height: 148px;
  resize: vertical;
}
.theme-2026 .t-conv-form-card .inputform::placeholder { color: rgba(232,232,244,0.76); }
.theme-2026 .t-conv-form-card .inputform:focus {
  outline: none;
  border-color: rgba(138,128,252,0.72) !important;
  box-shadow: 0 0 0 3px rgba(94,85,253,0.18);
}
.theme-2026 .t-conv-form-card .errorbanner { display: none !important; }
.theme-2026 .t-conv-form-card .cf-turnstile,
.theme-2026 .t-conv-form-card .btnsforms {
  grid-column: 1 / -1;
}
.theme-2026 .t-conv-form-card .cf-turnstile,
.theme-2026 .t-conv-form-card .t-turnstile {
  min-height: 66px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.theme-2026 .t-conv-form-card .cf-turnstile iframe { max-width: 100%; }
.theme-2026 .t-conv-form-card .btnsforms { margin: 0 !important; position: relative; }
.theme-2026 .t-conv-form-card .btnform {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--indigo-bright) !important;
  border-radius: 0 !important;
  background: var(--indigo) !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 22px !important;
  box-shadow: 6px 6px 0 rgba(94,85,253,0.38);
  filter: none !important;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.theme-2026 .t-conv-form-card .btnform:hover {
  transform: translate(2px,2px);
  box-shadow: 4px 4px 0 rgba(94,85,253,0.38);
}
.theme-2026 .t-conv-form-card .btnfake,
.theme-2026 .t-conv-form-card .btnsforms::before,
.theme-2026 .t-conv-form-card .btnsforms::after { display: none !important; content: none !important; }
.theme-2026 .t-conv-form-card .w-form-done,
.theme-2026 .t-conv-form-card .w-form-fail {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: var(--mono);
  font-size: 13px;
}
.theme-2026 .t-conv-form-card .w-form-fail {
  border-color: rgba(255,122,145,0.34);
  color: #ffc9d2;
}
.t-signup-logo-strip { margin-bottom: 18px; }
.t-signup-band { margin-top: 18px; }
.t-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}
.t-contact-grid .t-h2 { margin: 20px 0; }
.t-office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.t-office-grid a {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(255,255,255,0.035);
  color: #f2f2f8;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.08;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.t-office-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(138,128,252,0.45);
  background: rgba(255,255,255,0.055);
}
.t-office-grid span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* PhoneIQ CTI pages */
.t-section-head .t-h2 { margin-top: 18px; }
.t-section-head .t-lead { margin-top: 18px; }
.t-cti-hero {
  min-height: auto;
  padding-bottom: 78px;
  text-align: left;
}
.t-cti-hero .t-hero__grid { height: 39%; opacity: 0.34; }
.t-cti-hero .t-cta-row { justify-content: flex-start; margin-top: 34px; }
.t-cti-hero--center { text-align: center; }
.t-cti-hero--center .t-cta-row { justify-content: center; }
.t-cti-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  gap: 46px;
  align-items: center;
}
.t-cti-hero__copy .t-h1 { max-width: 12ch; }
.t-cti-hero__copy .t-lead { max-width: 690px; margin-top: 26px; }
.t-cti-product-shot {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(138,128,252,0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.15), rgba(255,255,255,0.026) 52%, rgba(56,189,248,0.07)),
    rgba(255,255,255,0.035);
  box-shadow: 10px 10px 0 rgba(94,85,253,0.16);
  overflow: hidden;
}
.t-cti-product-shot::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  pointer-events: none;
}
.t-cti-product-shot img {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,0.42));
}
.t-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(138,128,252,0.24);
  border-radius: 8px;
  background: rgba(10,10,16,0.68);
  box-shadow: 6px 6px 0 rgba(94,85,253,0.14);
}
.t-proof-strip div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  min-height: 86px;
}
.t-proof-strip div:last-child { border-right: 0; }
.t-proof-strip span {
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.t-proof-strip strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1;
}
.t-cti-tabs {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.t-cti-tabs__menu {
  display: grid;
  gap: 12px;
}
.theme-2026 .t-cti-tab {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 20px !important;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.035) !important;
  color: #f3f3f7 !important;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.theme-2026 .t-cti-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(138,128,252,0.38);
  background: rgba(255,255,255,0.055) !important;
}
.theme-2026 .t-cti-tab.w--current {
  border-color: rgba(138,128,252,0.72);
  background: linear-gradient(135deg, rgba(94,85,253,0.24), rgba(255,255,255,0.045)) !important;
  box-shadow: 6px 6px 0 rgba(94,85,253,0.18);
}
.t-cti-tab span {
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.t-cti-tab strong {
  color: #fff;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.t-cti-tab small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.48;
}
.t-cti-tabs__content {
  min-height: 450px;
  border: 1px solid rgba(138,128,252,0.24);
  border-radius: 8px;
  background:
    radial-gradient(70% 80% at 30% 10%, rgba(94,85,253,0.2), transparent 62%),
    rgba(255,255,255,0.035);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.22);
  overflow: hidden;
}
.theme-2026 .t-cti-pane.w-tab-pane { display: none; }
.theme-2026 .t-cti-pane.w-tab-pane.w--tab-active { display: block; }
.t-cti-pane-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8,8,12,0.78) 100%),
    linear-gradient(135deg, rgba(94,85,253,0.18), rgba(52,211,153,0.055));
}
.t-cti-pane-card .t-h3 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}
.t-cti-pane-card p {
  max-width: 690px;
  margin-top: 22px;
  color: #c8c8d6;
  font-size: 15px;
  line-height: 1.68;
}
.t-cti-feature-grid .t-card { min-height: 224px; }
.t-cti-feature-grid .t-card:nth-child(3n + 2) { background: rgba(94,85,253,0.045); }
.t-cti-voice-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(138,128,252,0.34);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.16), rgba(255,255,255,0.024) 48%, rgba(52,211,153,0.06)),
    rgba(255,255,255,0.03);
  box-shadow: 8px 8px 0 rgba(94,85,253,0.15);
}
.t-cti-voice-band .t-lead { margin-bottom: 24px; }
.t-final-cta .t-lead { margin: 18px auto 34px; }
.t-final-cta .t-cta-row { justify-content: center; }
.t-cti-feature-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.t-cti-feature-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}
.t-cti-feature-nav h2 {
  margin: 0 0 6px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.t-cti-feature-nav a {
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #e7e7ef;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.t-cti-feature-nav a:hover {
  transform: translateX(2px);
  border-color: rgba(138,128,252,0.32);
  background: rgba(255,255,255,0.055);
}
.t-cti-feature-accordion {
  display: grid;
  gap: 16px;
}
.t-cti-feature-group {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.026);
  overflow: hidden;
}
.t-cti-feature-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 !important;
  padding: 22px 24px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.t-cti-feature-heading span {
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.t-cti-feature-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}
.t-cti-feature-heading::after {
  content: "+";
  color: var(--indigo-bright);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}
.t-cti-feature-group.piq-accordion-open .t-cti-feature-heading::after { content: "-"; }
.t-cti-feature-group .accordion-card-2 {
  padding: 22px;
}
.t-cti-feature-card:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
  background: rgba(255,255,255,0.035);
}
.t-apps-list {
  display: grid;
  gap: 24px;
}
.t-app-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 30px !important;
}
.t-app-card--flip .t-app-card__media { order: 2; }
.t-app-card--flip .t-app-card__copy { order: 1; }
.t-app-card__media {
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  background:
    radial-gradient(70% 70% at 50% 22%, rgba(94,85,253,0.2), transparent 62%),
    rgba(8,8,12,0.52);
  overflow: hidden;
}
.t-app-card__media img {
  width: min(100%, 620px);
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,0.36));
}
.t-app-card__copy p {
  margin: 14px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}
.t-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.t-app-small-link {
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Pricing page */
.t-pricing-hero { min-height: auto; padding-bottom: 70px; text-align: left; }
.t-pricing-hero .t-hero__grid { height: 38%; opacity: 0.34; }
.t-pricing-hero .t-cta-row { justify-content: flex-start; margin-top: 34px; }
.t-pricing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
}
.t-pricing-hero__grid--solo {
  display: block;
  max-width: 820px;
}
.t-pricing-hero__copy .t-h1 { max-width: 14ch; }
.t-pricing-hero__grid--solo .t-pricing-hero__copy .t-h1 { max-width: 12ch; }
.t-pricing-hero__copy .t-lead { max-width: 690px; margin-top: 26px; }
.t-pricing-console {
  border: 1px solid rgba(138,128,252,0.28);
  border-radius: 6px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.12), rgba(255,255,255,0.028) 52%, rgba(52,211,153,0.05)),
    rgba(255,255,255,0.04);
  box-shadow: 10px 10px 0 rgba(94,85,253,0.18);
}
.t-pricing-console .t-console__bar span {
  width: 8px;
  height: 8px;
  display: block;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52,211,153,0.72);
}
.t-pricing-console .t-console__bar span:nth-child(2) { background: #fbbf24; box-shadow: 0 0 10px rgba(251,191,36,0.55); }
.t-pricing-console .t-console__bar span:nth-child(3) { background: #fb7185; box-shadow: 0 0 10px rgba(251,113,133,0.52); }
.t-pricing-console__row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
}
.t-pricing-console__row:last-child { border-bottom: 0; padding-bottom: 0; }
.t-pricing-console__row span {
  color: var(--indigo-bright);
  font-size: 11px;
  text-transform: uppercase;
}
.t-pricing-console__row strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}
.t-pricing-console__row small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.t-pricing-paths { padding-top: 0; }
.t-pricing-path-card { min-height: 252px; }
.t-pricing-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.t-pricing-choice-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.t-pricing-choice-card .t-h3 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 0.98;
}
.t-pricing-choice-card p {
  margin-top: 18px;
  max-width: 54ch;
  font-size: 15px;
}
.t-pricing-choice-card__sub {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.08;
}
.t-pricing-choice-card--voice {
  background:
    radial-gradient(110% 90% at 18% 0%, rgba(94,85,253,0.28), transparent 58%),
    linear-gradient(135deg, rgba(94,85,253,0.14), rgba(255,255,255,0.035)),
    var(--surface);
  border-color: rgba(138,128,252,0.38);
}
.t-pricing-path-card--voice {
  background:
    linear-gradient(135deg, rgba(94,85,253,0.14), rgba(255,255,255,0.035)),
    var(--surface);
  border-color: rgba(138,128,252,0.34);
}
.theme-2026 .t-pricing-path-card .t-arrow {
  display: inline-block;
  margin-top: 22px;
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 13px;
}
.theme-2026 .t-pricing-choice-card .t-arrow {
  display: inline-block;
  margin-top: 28px;
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 13px;
}

.theme-2026 .section.top-section.grade-3.pricing {
  display: block !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  padding: 70px 0 42px !important;
  background: transparent !important;
}
.theme-2026 .t-pricing-selector .wrapper.pricing,
.theme-2026 .section.haze.pricing1 .wrapper,
.theme-2026 .section.tablepricing .wrapper,
.theme-2026 .section.haze.faq .wrapper,
.theme-2026 .section.prefooter .wrapper {
  max-width: var(--maxw);
  padding-left: 24px;
  padding-right: 24px;
}
.theme-2026 .t-pricing-selector .wrapper.pricing {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-2026 .t-pricing-selector .intro {
  max-width: none;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(138,128,252,0.28);
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
  box-shadow: 8px 8px 0 rgba(94,85,253,0.14);
}
.theme-2026 .t-pricing-selector .heading-30 {
  margin: 0 0 12px;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: clamp(34px, 5vw, 58px) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
}
.theme-2026 .t-pricing-selector .textpricing {
  max-width: 740px;
  margin: 0 auto 24px;
  color: var(--muted) !important;
  font-family: var(--mono) !important;
  font-size: 15px !important;
  line-height: 1.62 !important;
}
.theme-2026 .t-pricing-selector .dropdown-2 { display: none !important; }
.theme-2026 .t-pricing-selector .btnspricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 30px auto 0 !important;
}
.theme-2026 .t-pricing-selector .btnspricing .btnpricing {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px !important;
  border-color: var(--border-2) !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.045) !important;
  box-shadow: 6px 6px 0 rgba(255,255,255,0.08);
}
.theme-2026 .t-pricing-selector .btnspricing .btnpricing:hover {
  border-color: rgba(138,128,252,0.5) !important;
  background: rgba(255,255,255,0.07) !important;
}
.theme-2026 .t-pricing-selector .btnspricing .btnpricing.is-active {
  border-color: var(--indigo-bright) !important;
  background: var(--indigo) !important;
  box-shadow: 6px 6px 0 rgba(94,85,253,0.32);
}
.theme-2026 .t-pricing-selector .btnspricing .btnpricing.is-active,
.theme-2026 .t-pricing-selector .btnspricing .btnpricing.is-active * { color: #fff !important; }
.theme-2026 .t-pricing-selector .text-block-100,
.theme-2026 .t-pricing-selector .text-block-101 {
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 26px !important;
  line-height: 1 !important;
}
.theme-2026 .t-pricing-selector .textbtnpricing {
  margin: 0 !important;
  color: rgba(245,245,250,0.74) !important;
  font-family: var(--mono) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.theme-2026 .section.haze.pricing1,
.theme-2026 .section.tablepricing,
.theme-2026 .section.haze.faq,
.theme-2026 .section.prefooter {
  background: transparent !important;
}
.theme-2026 .section.haze.pricing1 {
  display: block !important;
  margin-top: 0 !important;
  padding: 42px 0 74px !important;
}
.theme-2026 .toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  color: var(--muted);
  font-family: var(--mono);
}
.theme-2026 .toggle-text {
  color: var(--muted) !important;
  font-family: var(--mono) !important;
  font-size: 12px !important;
  text-transform: uppercase;
}
.theme-2026 .toggle-contain {
  width: 70px;
  height: 34px;
  padding: 2px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}
.theme-2026 .toggle-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--indigo-bright);
  box-shadow: 0 0 16px rgba(138,128,252,0.56);
}
.theme-2026 .pricing-box-row { gap: 18px; }
.theme-2026 .pricing-box-row .main-grid.grid3.pricing { gap: 18px; }
.theme-2026 .pricing-v2-card {
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.035) !important;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.24);
}
.theme-2026 .pricing-v2-header {
  background:
    linear-gradient(135deg, rgba(94,85,253,0.35), rgba(12,12,18,0.72)) !important;
  border-bottom: 1px solid var(--border);
}
.theme-2026 .pricing-v2-header .title,
.theme-2026 .pricing-v2-header .title.dark-bg {
  color: #fff !important;
  font-family: var(--mono) !important;
  font-size: 12px !important;
  text-transform: uppercase;
}
.theme-2026 .pricing-v2-tag {
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: clamp(48px, 6vw, 72px) !important;
  line-height: 0.95 !important;
}
.theme-2026 .text-block-103,
.theme-2026 .pricing-v2-billing {
  color: rgba(245,245,250,0.76) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .pricing-v2-card-info {
  background: rgba(10,10,15,0.82) !important;
  color: #f3f3f7 !important;
}
.theme-2026 .pricing-v2-card-info .button {
  width: 100%;
  border: 1px solid var(--indigo-bright) !important;
  border-radius: 0 !important;
  background: var(--indigo) !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 21px !important;
  box-shadow: 5px 5px 0 rgba(94,85,253,0.35);
}
.theme-2026 .pricing-v2-card-info .button:hover {
  transform: translate(2px,2px);
  box-shadow: 3px 3px 0 rgba(94,85,253,0.35);
}
.theme-2026 .pricing-feature {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--muted) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .pricing-feature [class^="text-block-"],
.theme-2026 .pricing-feature [class*=" text-block-"] {
  color: #d9d9e5 !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.theme-2026 .section.tablepricing { padding: 70px 0 !important; }
.theme-2026 .pricing-v3 {
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.03) !important;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.24);
}
.theme-2026 .pricing-v3-plans,
.theme-2026 .pricing-v3-category-header,
.theme-2026 .pricing-v3-row {
  border-color: rgba(255,255,255,0.08) !important;
}
.theme-2026 .pricing-v3-plans {
  background: rgba(94,85,253,0.11) !important;
}
.theme-2026 .pricing-plan-cell,
.theme-2026 .pricing-v3-cell {
  border-color: rgba(255,255,255,0.08) !important;
}
.theme-2026 .pricing-v3-plan-name,
.theme-2026 .pricing-v3-plan-mobile,
.theme-2026 .pricing-v3-category-header [class^="text-block-"],
.theme-2026 .pricing-v3-category-header [class*=" text-block-"] {
  color: #fff !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
}
.theme-2026 .pricing-v3-row-header [class^="text-block-"],
.theme-2026 .pricing-v3-row-header [class*=" text-block-"] {
  color: #d9d9e5 !important;
  font-family: var(--mono) !important;
}
.theme-2026 .info123 {
  color: var(--subtle) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .bgtrianglepricing,
.theme-2026 .bgtrianglepricing2,
.theme-2026 .bgtrianglepricing3,
.theme-2026 .bgtrianglepricing4,
.theme-2026 .pricing-card-circle {
  pointer-events: none;
  opacity: 0.16 !important;
  filter: saturate(0.75) brightness(1.15);
}

.theme-2026 .section.haze.faq { padding: 82px 0 !important; }
.theme-2026 .section.haze.faq .intro {
  margin-bottom: 28px !important;
}
.theme-2026 .section.haze.faq .iconsection { opacity: 0.68; filter: brightness(0) invert(1); }
.theme-2026 .section.haze.faq .heading-31,
.theme-2026 .section.haze.faq .text-light-grey.faq {
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
}
.theme-2026 .section.haze.faq .sidebar-grid.pricing {
  display: block;
}
.theme-2026 .section.haze.faq .accordion-card {
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.035) !important;
  box-shadow: none !important;
}
.theme-2026 .section.haze.faq .accordion-heading {
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
}
.theme-2026 .section.haze.faq .accordion-text {
  color: var(--muted) !important;
  font-family: var(--mono) !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}
.theme-2026 .section.prefooter {
  padding: 74px 0 96px !important;
}
.theme-2026 .section.prefooter .wrapper.prefooter {
  border: 1px solid rgba(138,128,252,0.28);
  border-radius: 6px;
  padding-top: 44px;
  padding-bottom: 44px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.16), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.025);
  box-shadow: 8px 8px 0 rgba(94,85,253,0.16);
}
.theme-2026 .section.prefooter .ptrfooter {
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: clamp(34px, 5vw, 56px) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
}
.theme-2026 .section.prefooter .preefooter {
  max-width: 650px;
  margin: 18px auto 28px !important;
  color: var(--muted) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .section.prefooter .button {
  border: 1px solid var(--indigo-bright) !important;
  border-radius: 0 !important;
  background: var(--indigo) !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 21px !important;
  box-shadow: 5px 5px 0 rgba(94,85,253,0.35);
}
.theme-2026 .section.prefooter .button.white {
  border-color: var(--border-2) !important;
  background: transparent !important;
  box-shadow: 5px 5px 0 rgba(255,255,255,0.1);
}
.theme-2026 .section.prefooter .image-53 { opacity: 0.14; filter: saturate(0.65) brightness(1.1); }

/* Content hubs + company pages */
.t-hub-hero {
  min-height: 72vh;
  padding: 170px 0 96px;
}
.t-hub-hero .t-h1 { max-width: 12.5ch; margin-left: auto; margin-right: auto; }
.t-hub-hero .t-lead { margin-top: 28px; }
.t-hub-ctas { justify-content: center; margin-top: 34px; }
.t-hub-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}
.t-hub-section-head .t-h2 { margin-top: 18px; max-width: 12ch; }
.t-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.t-hub-grid--stories { align-items: stretch; }
.t-hub-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(138,128,252,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  box-shadow: 9px 9px 0 rgba(94,85,253,0.16);
}
.t-hub-feature-card__media {
  min-height: 380px;
  background: rgba(255,255,255,0.04);
}
.t-hub-feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.t-hub-feature-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 44px;
}
.t-hub-feature-card__copy p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
}
.t-story-card {
  display: flex;
  min-height: 392px;
  flex-direction: column;
}
.t-story-card__media {
  height: 138px;
  margin: -30px -30px 24px;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255,255,255,0.045);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(0.15) brightness(1.02);
}
.t-story-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}
.t-story-card__meta span {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 5px 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}
.t-advisor-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.t-advisor-card img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 6px;
  filter: grayscale(1) contrast(1.05);
}
.t-team-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.t-team-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.028);
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.t-team-link:hover {
  transform: translateY(-2px);
  border-color: rgba(138,128,252,0.45);
  background: rgba(255,255,255,0.05);
}
.t-team-link span,
.t-team-link em {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.t-team-link strong {
  overflow: hidden;
  color: #f5f5fa;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-guide-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 18px;
}
.t-guide-card { min-height: 250px; }
.t-guide-card--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 518px;
  background:
    linear-gradient(135deg, rgba(94,85,253,0.2), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.035);
}
.t-affiliate-hero { text-align: left; }
.t-affiliate-hero .t-h1,
.t-affiliate-hero .t-lead { margin-left: 0; margin-right: 0; }
.t-affiliate-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}
.t-affiliate-proof {
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.t-affiliate-form-card h2 { margin-bottom: 22px; }
.t-partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
}
.t-partner-logo {
  display: grid;
  min-height: 142px;
  place-items: center;
  background: rgba(255,255,255,0.04);
  transition: background .16s ease;
}
.t-partner-logo:hover { background: rgba(255,255,255,0.07); }
.t-partner-logo img {
  max-width: 170px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.22);
}
.t-affiliate-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.78fr);
  gap: 46px;
  align-items: start;
}
.t-glossary-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.t-glossary-nav {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
  background: rgba(255,255,255,0.035);
}
.t-glossary-nav a {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 9px 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}
.t-glossary-nav a:hover {
  border-color: rgba(138,128,252,0.3);
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.t-glossary-groups { display: grid; gap: 14px; }
.t-glossary-group {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.032);
}
.t-glossary-heading {
  width: 100%;
  margin: 0;
  padding: 24px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.t-glossary-heading span:first-child {
  display: grid;
  gap: 7px;
}
.t-glossary-heading em {
  color: var(--indigo-bright);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
}
.t-glossary-heading strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.t-glossary-heading small {
  max-width: 700px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
}
.t-glossary-heading .accordion-arrow {
  width: 18px;
  height: 18px;
  margin-top: 8px;
  border-right: 2px solid var(--indigo-bright);
  border-bottom: 2px solid var(--indigo-bright);
  transform: rotate(45deg);
}
.t-glossary-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 24px 24px;
}
.t-glossary-group[data-piq-accordion-bound="true"]:not(.piq-accordion-open) .t-glossary-links {
  padding-top: 0;
  padding-bottom: 0;
}
.t-glossary-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 14px;
  background: rgba(5,5,8,0.38);
  color: #ededf5;
  font-family: var(--mono);
  font-size: 13px;
}
.t-glossary-links a:hover {
  border-color: rgba(138,128,252,0.45);
  background: rgba(255,255,255,0.055);
}
.t-glossary-links span { color: var(--indigo-bright); }

.theme-2026 .section.bblog {
  padding: 54px 0 !important;
  background: transparent !important;
}
.theme-2026 .section.bblog.firstpostsec { padding-top: 22px !important; }
.theme-2026 .rotateshape.blog,
.theme-2026 .chirimbolos.blog { opacity: 0.1 !important; filter: saturate(0.7) brightness(1.15); }
.theme-2026 .wrapper.bloghome,
.theme-2026 .wrapper.bbloghomeall {
  width: 100%;
  max-width: var(--maxw);
  padding-left: 24px;
  padding-right: 24px;
}
.theme-2026 .post-card {
  overflow: hidden;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  background: rgba(255,255,255,0.035) !important;
  color: #fff !important;
  box-shadow: none !important;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.theme-2026 .post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138,128,252,0.45) !important;
  background: rgba(255,255,255,0.055) !important;
}
.theme-2026 .post-card-info,
.theme-2026 .post-card-info.firstpostb {
  background: rgba(12,12,18,0.98) !important;
  color: #fff !important;
}
.theme-2026 .post-card-heading-big,
.theme-2026 .post-card-heading-big.firstpostb {
  color: #fff !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
.theme-2026 .post-card-description,
.theme-2026 .post-card-description.firstpostb,
.theme-2026 .post-card-bottom,
.theme-2026 .post-card-bottom.firstpostb {
  color: var(--muted) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .post-card-category,
.theme-2026 .readingtime.bloghome {
  color: var(--indigo-bright) !important;
  font-family: var(--mono) !important;
}
.theme-2026 .tabs-menu.blog-categories {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.theme-2026 .tab-link.homeblog,
.theme-2026 .linkmenublog {
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  background: rgba(255,255,255,0.035) !important;
  color: #dedee8 !important;
}
.theme-2026 .tab-link.homeblog:hover,
.theme-2026 .linkmenublog:hover {
  border-color: rgba(138,128,252,0.4) !important;
  background: rgba(255,255,255,0.055) !important;
}
.theme-2026 .text-block-118.homebblog.navblog,
.theme-2026 .menublog {
  color: #f3f3f7 !important;
  font-family: var(--mono) !important;
}
.theme-2026 .w-pagination-wrapper.pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}
.theme-2026 .w-pagination-next.button.ghost {
  border: 1px solid var(--border-2) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 21px !important;
  box-shadow: 5px 5px 0 rgba(255,255,255,0.1);
}
.theme-2026 .section-12.prefooterblog,
.theme-2026 .section-12.blogautor {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.025) !important;
}
.theme-2026 .ptrfooter.blog,
.theme-2026 .preefooter.blog,
.theme-2026 .preefooter.logautor {
  color: #fff !important;
  font-family: var(--display) !important;
}

@media (max-width: 980px) {
  .t-hub-section-head,
  .t-hub-feature-card,
  .t-affiliate-hero__grid,
  .t-affiliate-bottom,
  .t-glossary-layout { grid-template-columns: 1fr; }
  .t-hub-grid,
  .t-team-index,
  .t-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-guide-card--featured { grid-row: auto; min-height: 320px; }
  .t-glossary-nav { position: static; }
}

@media (max-width: 620px) {
  .t-hub-hero { min-height: auto; padding: 112px 0 66px; }
  .t-hub-hero .t-h1 { max-width: 100%; }
  .t-hub-grid,
  .t-team-index,
  .t-guide-grid,
  .t-affiliate-proof,
  .t-partner-strip,
  .t-glossary-links { grid-template-columns: 1fr; }
  .t-hub-feature-card__media,
  .t-hub-feature-card__media img { min-height: 260px; }
  .t-hub-feature-card__copy,
  .t-glossary-heading { padding: 28px 20px; }
  .t-glossary-links { padding: 0 20px 20px; }
  .t-advisor-card { grid-template-columns: 1fr; }
  .t-advisor-card img { width: 100%; height: 240px; }
  .t-team-link { grid-template-columns: 34px minmax(0, 1fr); }
  .t-team-link em { grid-column: 2; }
  .t-affiliate-hero__grid,
  .t-affiliate-bottom { gap: 28px; }
}

@media (max-width: 980px) {
  .t-hero--compact { padding: 130px 0 76px; }
  .t-conv-hero__grid,
  .t-demo-grid,
  .t-form-hero-grid,
  .t-conv-band,
  .t-contact-grid,
  .t-pricing-choice-grid,
  .t-pricing-hero__grid,
  .t-cti-hero__grid,
  .t-cti-tabs,
  .t-cti-voice-band,
  .t-cti-feature-layout,
  .t-app-card { grid-template-columns: 1fr; }
  .t-conv-hero__copy .t-h1 { max-width: 100%; }
  .t-pricing-hero__copy .t-h1 { max-width: 100%; }
  .t-cti-hero__copy .t-h1 { max-width: 100%; }
  .t-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-console { min-height: auto; }
  .t-cti-product-shot,
  .t-cti-tabs__content,
  .t-cti-pane-card,
  .t-app-card__media { min-height: 320px; }
  .t-cti-feature-nav { position: static; }
  .t-app-card--flip .t-app-card__media,
  .t-app-card--flip .t-app-card__copy { order: initial; }
}

@media (max-width: 620px) {
  .t-hero--compact { padding: 108px 0 58px; }
  .t-conv-hero .t-cta-row { gap: 12px; }
  .t-conv-hero .t-btn { width: 100%; justify-content: center; }
  .t-cti-hero .t-cta-row { gap: 12px; }
  .t-cti-hero .t-btn,
  .t-final-cta .t-btn,
  .t-app-actions .t-btn { width: 100%; justify-content: center; }
  .t-process-grid,
  .t-proof-strip,
  .theme-2026 .t-conv-form-card .generalformcontainer,
  .t-office-grid,
  .theme-2026 .t-pricing-selector .btnspricing { grid-template-columns: 1fr; }
  .t-proof-strip div { border-right: 0; border-bottom: 1px solid var(--border); }
  .t-proof-strip div:last-child { border-bottom: 0; }
  .t-console__line { grid-template-columns: 1fr; gap: 5px; }
  .t-conv-band,
  .t-conv-form-card,
  .t-cti-voice-band,
  .t-app-card { padding: 28px 18px !important; }
  .t-cti-product-shot { padding: 16px; min-height: 240px; }
  .t-cti-tabs__content,
  .t-cti-pane-card { min-height: 300px; }
  .t-cti-pane-card { padding: 28px 20px; }
  .theme-2026 .t-cti-tab { min-height: auto; }
  .t-cti-feature-heading { padding: 18px; }
  .t-cti-feature-group .accordion-card-2 { padding: 14px; }
  .t-app-card__media { min-height: 250px; }
  .theme-2026 .t-pricing-selector .intro { padding: 26px 18px; }
  .theme-2026 .pricing-v2-card { box-shadow: 5px 5px 0 rgba(0,0,0,0.24); }
  .theme-2026 .section.prefooter .wrapper.prefooter { padding-left: 18px; padding-right: 18px; }
  .t-calendly-card { padding: 12px !important; }
  .t-calendly-card .calendly-inline-widget { height: 1080px !important; min-height: 1080px; }
}

@media (max-width: 767px) {
  .t-signup-hero-grid .t-conv-form-card { order: -1; }
  .t-signup-hero-grid .t-conv-hero__copy { order: 2; }
}

/* Early-access form */
.t-form { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 480px; margin: 0 auto; }
.t-form .t-form-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; }
.t-form input[type="email"] { flex: 1; min-width: 230px; border: 1px solid var(--border-2); background: rgba(255,255,255,0.06); color: #fff; border-radius: 2px; padding: 14px 16px; font-size: 15px; font-family: var(--mono); }
.t-form input[type="email"]::placeholder { color: rgba(232,232,244,0.72); }
.theme-2026 .cf-turnstile[data-theme="dark"] { min-height: 66px; display: flex; align-items: center; justify-content: center; }

/* Load reveal */
.t-reveal { opacity: 0; transform: translateY(16px); animation: t-rise .8s cubic-bezier(.2,.8,.25,1) forwards; }
.t-reveal-1{animation-delay:.05s}.t-reveal-2{animation-delay:.16s}.t-reveal-3{animation-delay:.28s}.t-reveal-4{animation-delay:.4s}.t-reveal-5{animation-delay:.52s}
@keyframes t-rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .t-reveal { animation: none; opacity: 1; transform: none; } .t-wave span { animation: none; transform: scaleY(0.6); } }
