:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --green: #12b76a;
  --red: #f04438;
  --yellow: #fdb022;
  --purple: #7c3aed;
  --shadow: 0 24px 80px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 48px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--yellow));
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: #175cd3;
  box-shadow: 0 14px 30px rgba(23, 92, 211, 0.24);
}

.secondary-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 20px;
  padding: 120px clamp(20px, 5vw, 72px) 48px;
  overflow: hidden;
  background: #07111f;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.78) 42%, rgba(7, 17, 31, 0.22) 100%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0ea5e9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ecosystem-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.ecosystem-strip span {
  display: grid;
  place-items: center;
  min-height: 74px;
  background: #ffffff;
  color: #344054;
  font-weight: 800;
}

.section {
  padding: 96px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.suite-section {
  background: var(--soft);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.suite-card,
.process-grid article,
.stack-panel {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.04);
}

.suite-card.feature-card {
  background: #101828;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.suite-card h3,
.service-row h3,
.process-grid h3,
.stack-panel h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.suite-card p,
.service-row p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
}

.icon-blue { background: var(--blue); }
.icon-red { background: var(--red); }
.icon-green { background: var(--green); }
.icon-yellow { background: var(--yellow); color: #101828; }
.icon-cyan { background: var(--cyan); }
.icon-purple { background: var(--purple); }

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.feature-card .text-link {
  color: #7dd3fc;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 36px;
  align-items: center;
  min-height: 620px;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.36), transparent 32%),
    linear-gradient(135deg, #08111f 0%, #10233d 52%, #0b1728 100%);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.interface-preview,
.encoder-panel {
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.interface-preview {
  display: grid;
  align-content: center;
  gap: 16px;
}

.call-window {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 230px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.72), rgba(6, 182, 212, 0.52)),
    #101828;
}

.avatar-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  font-weight: 900;
}

.call-window strong {
  font-size: 22px;
}

.call-window small {
  color: rgba(255, 255, 255, 0.76);
}

.call-controls,
.encoder-options,
.pipeline,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.call-controls span,
.encoder-options span,
.pipeline span,
.contact-cards span {
  padding: 10px 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.encoder-panel {
  display: grid;
  align-content: center;
  gap: 22px;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px dashed rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.16);
  font-weight: 900;
}

.progress-line {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-line span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: center;
  background: var(--soft);
}

.split-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.large-tags span,
.pipeline span,
.contact-cards span {
  color: #344054;
  background: #ffffff;
  border: 1px solid var(--line);
}

.simple-hero {
  grid-template-columns: 1fr;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-row span,
.process-grid span {
  color: var(--blue);
  font-weight: 900;
}

.stack-panel {
  position: sticky;
  top: 96px;
}

.stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stack-items span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344054;
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.process-section {
  background: #101828;
  color: #ffffff;
}

.process-section .eyebrow {
  color: #7dd3fc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.65fr);
  gap: 40px;
  align-items: start;
  padding: 96px clamp(20px, 5vw, 72px);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.standalone-contact {
  min-height: 720px;
  padding-top: 140px;
  background: var(--soft);
}

.contact-cards {
  margin-top: 24px;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: 40px;
  align-items: center;
  min-height: 100vh;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 20%, rgba(18, 183, 106, 0.32), transparent 28%),
    linear-gradient(135deg, #08111f 0%, #0e2b47 52%, #08111f 100%);
}

.auth-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.auth-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.auth-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.auth-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.auth-card input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}

.auth-card textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.accounts-auth-body {
  min-height: 100vh;
  background: #f6f8fb;
}

.accounts-auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: clamp(20px, 4vw, 44px);
}

.accounts-auth-brand,
.myspace-header .accounts-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
}

.accounts-auth-panel {
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.accounts-auth-panel .auth-card {
  width: min(100%, 460px);
}

.myspace-body {
  min-height: 100vh;
  background: var(--soft);
}

.myspace-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.compact-button {
  min-height: 40px;
  padding: 0 14px;
}

.myspace-page {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(420px, 0.72fr);
  gap: 32px;
  align-items: start;
  padding: clamp(28px, 5vw, 72px);
}

.myspace-copy {
  position: sticky;
  top: 108px;
}

.myspace-copy h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.myspace-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.myspace-card {
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
}

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

.check-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
}

.check-row input {
  width: auto;
}

.form-alert {
  padding: 12px 14px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  background: #fef2f2;
  font-size: 14px;
  font-weight: 700;
}

.form-success {
  padding: 12px 14px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
  background: #f0fdf4;
  font-size: 14px;
  font-weight: 700;
}

.auth-switch,
.auth-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.auth-switch a {
  color: var(--blue);
  font-weight: 900;
}

.dashboard-page {
  align-items: start;
}

.dashboard-card {
  margin-top: 38px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.identity-box {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.identity-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-box strong {
  color: var(--ink);
  font-size: 18px;
}

.product-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.calling-product {
  background: #191919;
  color: #ffffff;
}

.calling-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #2b2f36;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.1);
}

.calling-logo,
.calling-topbar nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calling-logo span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a00, #12b76a, #2563eb);
  font-weight: 900;
}

.calling-topbar nav {
  gap: 28px;
  font-weight: 800;
}

.calling-topbar nav a {
  color: #344054;
}

.calling-product-hero {
  min-height: calc(100vh - 76px);
  padding: 120px clamp(18px, 4vw, 56px) 90px;
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 122, 0, 0.14), transparent 18%),
    radial-gradient(circle at 72% 52%, rgba(18, 183, 106, 0.12), transparent 20%),
    #1b1b1b;
}

.credit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto 120px;
  padding: 26px 32px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.03));
}

.credit-banner strong,
.credit-banner span {
  display: block;
}

.credit-banner strong {
  margin-bottom: 10px;
  font-size: 24px;
}

.credit-banner span {
  color: rgba(255, 255, 255, 0.74);
}

.credit-banner a {
  flex: 0 0 auto;
  padding: 14px 26px;
  border-radius: 999px;
  color: #111827;
  background: #ff8a00;
  font-weight: 900;
}

.calling-headline {
  max-width: 1680px;
  margin: 0 auto;
  text-align: center;
}

.calling-headline h1 {
  margin: 0 auto;
  max-width: 1550px;
  font-size: clamp(54px, 8vw, 132px);
  line-height: 1.02;
  letter-spacing: 0;
}

.calling-headline p {
  max-width: 760px;
  margin: 52px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 34px);
  line-height: 1.45;
}

.calling-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.light-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 800;
}

.calling-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 36px;
  padding: 96px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: #ffffff;
}

.calling-feature-band h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.calling-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calling-feature-grid article,
.console-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.calling-feature-grid h3,
.console-grid strong {
  margin: 0 0 8px;
  font-size: 22px;
}

.calling-feature-grid p,
.console-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.console-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: calc(100vh - 76px);
  color: var(--ink);
  background: var(--soft);
}

.console-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 28px;
  background: #ffffff;
  border-right: 1px solid var(--line);
}

.console-sidebar strong {
  margin-bottom: 20px;
  font-size: 20px;
}

.console-sidebar a {
  padding: 12px;
  border-radius: 8px;
  color: #344054;
  font-weight: 800;
}

.console-sidebar a:hover {
  background: var(--soft);
}

.console-main {
  padding: 42px;
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.console-topline h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}

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

.console-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-grid strong {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 58%, rgba(7, 17, 31, 0.42) 100%);
  }

  .hero-visual img {
    object-position: center;
  }

  .ecosystem-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .suite-grid,
  .services-layout,
  .process-grid,
  .contact-section,
  .page-hero,
  .split-band,
  .auth-page,
  .myspace-page,
  .form-grid-two {
    grid-template-columns: 1fr;
  }

  .myspace-copy {
    position: static;
  }

  .stack-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-actions a {
    width: 100%;
  }

  .ecosystem-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .calling-topbar,
  .credit-banner,
  .console-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .calling-topbar nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .calling-feature-band,
  .calling-feature-grid,
  .console-page,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .calling-headline {
    text-align: left;
  }

  .calling-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
