:root {
  --bg-top: #eef4ff;
  --bg-mid: #fff6ef;
  --bg-bottom: #f4fbf7;
  --card: rgba(255, 255, 255, 0.88);
  --card-stroke: rgba(33, 44, 71, 0.08);
  --text: #162033;
  --muted: #52617b;
  --blue: #2864ff;
  --orange: #ff8557;
  --green: #2ca66f;
  --danger: #c73d4d;
  --shadow: 0 24px 60px rgba(22, 32, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "SF Pro Display", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(40, 100, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 133, 87, 0.12), transparent 24%),
    linear-gradient(135deg, var(--bg-top), var(--bg-mid) 52%, var(--bg-bottom));
  min-height: 100vh;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
.page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 10px;
}

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

.brand img {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(40, 100, 255, 0.18);
}

.brand span {
  display: grid;
}

.brand small {
  color: var(--muted);
}

.site-nav,
.site-footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page-shell {
  padding: 18px 0 64px;
}

.hero-card,
.panel,
.metric-card {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(220px, 260px);
  gap: 28px;
  align-items: start;
}

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

.hero-copy h1,
.panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.panel h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 32, 51, 0.58);
}

.lead,
.section-summary,
.inline-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions,
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.app-store-link img {
  display: block;
  width: 180px;
  height: auto;
}

.app-store-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  border-radius: 18px;
  padding: 12px 16px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(22, 32, 51, 0.2);
}

.button {
  appearance: none;
  border: 0;
  border-radius: 18px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), #183ecf);
  box-shadow: 0 18px 34px rgba(40, 100, 255, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 51, 0.1);
}

.button-danger {
  color: white;
  background: linear-gradient(135deg, var(--danger), #9f2437);
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 51, 0.08);
  color: var(--muted);
}

.content-grid,
.feature-band {
  display: grid;
  gap: 20px;
}

.hero-carousel {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.hero-carousel-stage {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1470 / 3000;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-carousel-footer {
  width: min(100%, 260px);
  display: flex;
}

.hero-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-carousel-dot {
  appearance: none;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 32, 51, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-carousel-dot.is-active {
  background: var(--blue);
  transform: scale(1.18);
}

.hero-carousel-dot:hover {
  background: rgba(40, 100, 255, 0.55);
}

.device-card {
  margin: 0;
  height: 100%;
}

.device-frame {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 26px 52px rgba(22, 32, 51, 0.24));
}

.device-frame-compact {
  aspect-ratio: 1470 / 3000;
}

.device-screen-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: url("/assets/iphone-17-pro-portrait-screen-mask.png");
  mask-image: url("/assets/iphone-17-pro-portrait-screen-mask.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

.device-screen {
  position: absolute;
  top: 2.2%;
  left: 5.102%;
  display: block;
  width: 89.796%;
  height: 95.6%;
  border-radius: 9.4%;
  object-fit: cover;
}

.device-bezel {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.support-grid {
  align-items: start;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.accent-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 242, 0.94));
}

.feature-list,
.legal-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.6;
}

.overview-panel {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  padding: 30px;
}

.workflow-panel,
.premium-panel,
.coverage-panel {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.overview-copy {
  max-width: 900px;
}

.overview-copy .section-summary + .section-summary {
  margin-top: 14px;
}

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

.overview-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.overview-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-panel {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.workflow-grid,
.premium-grid,
.coverage-grid {
  display: grid;
  gap: 16px;
}

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

.workflow-card,
.premium-card,
.coverage-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.workflow-card h3,
.premium-card h3,
.coverage-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.workflow-card p,
.premium-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.coverage-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.coverage-card li + li {
  margin-top: 4px;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #183ecf);
  color: white;
  font-weight: 800;
}

.premium-panel {
  background:
    linear-gradient(180deg, rgba(22, 32, 51, 0.94), rgba(34, 49, 78, 0.96)),
    radial-gradient(circle at top right, rgba(40, 100, 255, 0.2), transparent 28%);
  border-radius: var(--radius-xl);
}

.premium-panel,
.premium-panel h2,
.premium-panel h3 {
  color: white;
}

.premium-panel .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.premium-panel .section-summary,
.premium-panel p {
  color: rgba(237, 243, 255, 0.82);
}

.premium-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.closing-cta-copy {
  max-width: 760px;
}

.closing-cta-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

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

.proof-grid {
  display: grid;
  gap: 16px;
}

.metric-card {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.proof-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-shell {
  display: grid;
  gap: 24px;
}

.article-section {
  display: grid;
  gap: 22px;
}

.article-feed-grid,
.related-article-grid {
  display: grid;
  gap: 16px;
}

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

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

.article-search-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.article-rss-hero-link {
  width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 32, 51, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

.article-rss-hero-link:hover {
  border-color: rgba(0, 98, 255, 0.3);
  text-decoration: none;
}

.article-rss-hero-link svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
  flex: 0 0 auto;
}

.article-search-controls label {
  grid-column: 1 / -1;
}

.article-search-controls input {
  min-height: 52px;
}

.article-clear-filter {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 51, 0.1);
  font-weight: 800;
}

.article-clear-filter:hover {
  text-decoration: none;
}

.article-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tag-filter-link,
.article-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 51, 0.08);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.article-tag-filter-link.is-selected,
.article-tag:hover,
.article-tag-filter-link:hover {
  color: white;
  background: var(--blue);
  text-decoration: none;
}

.article-card,
.article-callout,
.article-link-card,
.related-article-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.article-card-media-link {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 32, 51, 0.08);
  aspect-ratio: 16 / 9;
}

.article-card-image,
.article-hero-img,
.related-article-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-copy {
  display: grid;
  gap: 8px;
}

.article-card-kind {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 32, 51, 0.56);
}

.article-card h3,
.article-link-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.article-card p,
.article-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.article-card-footer,
.article-meta-row,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-card-footer {
  color: rgba(82, 97, 123, 0.86);
  font-size: 0.86rem;
}

.article-meta-row {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-tags {
  margin-top: 14px;
}

.article-empty-state {
  margin: 0;
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(22, 32, 51, 0.18);
}

.article-notice {
  max-width: 760px;
  margin: 18px 0 0;
  border-left: 4px solid var(--orange);
  padding: 10px 0 10px 14px;
  color: rgba(82, 97, 123, 0.96);
  line-height: 1.55;
}

.article-detail {
  display: grid;
  gap: 22px;
}

.article-hero,
.article-page-nav,
.article-body {
  width: 100%;
  max-width: 880px;
  justify-self: center;
}

.article-page-nav {
  width: 100%;
  max-width: 880px;
  justify-self: center;
}

.article-page-nav-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.article-page-nav-panel {
  display: grid;
  gap: 18px;
  border-radius: 22px;
  padding: 22px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-back-link {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 32, 51, 0.1);
  color: var(--text);
  font-weight: 800;
}

.article-back-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  white-space: nowrap;
}

.article-back-link:hover {
  border-color: rgba(0, 98, 255, 0.3);
  text-decoration: none;
}

.article-nav-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.article-nav-header h2 {
  margin: 6px 0 0;
  font-size: 1.35rem;
}

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

.article-nav-group h3 {
  margin: 0 0 10px;
  color: rgba(22, 32, 51, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.article-nav-link {
  display: grid;
  gap: 5px;
  border-radius: 16px;
  padding: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-nav-link:hover {
  border-color: rgba(0, 98, 255, 0.3);
  text-decoration: none;
}

.article-nav-link span {
  color: rgba(82, 97, 123, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-nav-link strong {
  line-height: 1.3;
}

.article-nav-link em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.article-hero h1 {
  max-width: 860px;
}

.article-hero-image,
.article-image-block,
.article-figure {
  width: min(100%, 720px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-hero-image {
  margin-top: 18px;
}

.article-hero-image img,
.article-image-block img,
.article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-hero-image figcaption,
.article-image-block figcaption,
.article-figure figcaption {
  padding: 14px 16px 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-image-credit {
  margin: 4px 0 0;
  padding: 0 16px 14px;
  color: rgba(82, 97, 123, 0.74);
  font-size: 0.82rem;
}

.article-body h2,
.article-body h3 {
  margin: 28px 0 10px;
  line-height: 1.15;
}

.article-body h2:first-child,
.article-body h3:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li,
.article-body dd,
.article-body td {
  color: var(--muted);
  line-height: 1.75;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 22px;
}

.article-callout {
  margin: 24px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 242, 0.96));
}

.article-callout h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.article-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.article-fact-grid div {
  border-radius: 18px;
  padding: 16px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-fact-grid dt {
  margin-bottom: 8px;
  color: rgba(22, 32, 51, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-fact-grid dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.article-sources {
  margin-top: 30px;
  border-top: 1px solid rgba(22, 32, 51, 0.08);
  padding-top: 22px;
}

.article-sources ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-link-card {
  margin: 24px 0;
}

.article-chart {
  margin: 24px 0;
  border-radius: 22px;
  padding: 20px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-chart-header h2 {
  margin-top: 0;
}

.article-chart-header p {
  margin: 0;
}

.article-chart ol {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.article-chart li {
  display: grid;
  grid-template-columns: minmax(80px, 0.28fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-left: 4px solid var(--blue);
  padding: 4px 0 4px 14px;
}

.article-chart li span {
  color: var(--text);
  font-weight: 900;
}

.article-chart li strong {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.related-article-card {
  display: grid;
  gap: 14px;
}

.related-article-card .related-article-image {
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.related-article-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.3;
}

.related-article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 18px;
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.article-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.8);
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(22, 32, 51, 0.08);
}

.article-table th {
  color: var(--text);
  background: rgba(246, 248, 252, 0.96);
}

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

.proof-media-card {
  margin: 0;
}

.proof-media-card .device-frame {
  filter: drop-shadow(0 20px 38px rgba(22, 32, 51, 0.18));
}

.metric-value {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 800;
}

.fleet-shell {
  display: grid;
  gap: 24px;
}

.fleet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 32px;
  align-items: stretch;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.9)),
    radial-gradient(circle at top right, rgba(44, 166, 111, 0.16), transparent 34%);
}

.fleet-hero-copy {
  max-width: 780px;
}

.fleet-hero-copy h1,
.fleet-section h2 {
  margin: 0 0 12px;
  line-height: 1;
}

.fleet-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.fleet-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
}

.fleet-hero-rail,
.fleet-license-grid,
.fleet-flow-grid {
  display: grid;
  gap: 14px;
}

.fleet-hero-rail {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
}

.fleet-hero-media,
.fleet-inline-media,
.fleet-card-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(246, 248, 252, 0.94);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.fleet-hero-media {
  align-self: stretch;
  min-height: 320px;
}

.fleet-hero-media img,
.fleet-inline-media img,
.fleet-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-inline-media {
  margin-top: 18px;
  aspect-ratio: 16 / 10;
}

.fleet-hero-rail div,
.fleet-license-grid div,
.fleet-flow-item {
  border-radius: 18px;
  padding: 18px;
  background: rgba(246, 248, 252, 0.94);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.fleet-hero-rail strong,
.fleet-license-grid strong {
  display: block;
  margin-bottom: 8px;
}

.fleet-hero-rail span,
.fleet-license-grid span,
.fleet-flow-item p {
  color: var(--muted);
  line-height: 1.6;
}

.fleet-section {
  display: grid;
  gap: 22px;
}

.fleet-section-copy {
  max-width: 860px;
}

.fleet-audience {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.75fr);
  align-items: center;
}

.fleet-audience-media {
  aspect-ratio: 16 / 9;
}

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

.fleet-flow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.fleet-flow-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.fleet-flow-item p {
  margin: 0;
}

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

.fleet-check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.fleet-tools-media {
  margin-top: 22px;
  aspect-ratio: 16 / 10;
}

.fleet-contact {
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.fleet-form {
  display: grid;
  gap: 16px;
}

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

.fleet-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.fleet-consent input {
  width: auto;
  margin-top: 4px;
}

.fleet-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fleet-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fleet-form-footer .form-status {
  flex: 1 1 260px;
  margin: 0;
}

.fleet-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.callout,
.account-summary,
.record-card {
  border-radius: 20px;
  padding: 16px;
  background: rgba(246, 248, 252, 0.92);
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.support-form,
.delete-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(22, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 16px;
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2em;
  color: var(--muted);
}

.record-list {
  display: grid;
  gap: 14px;
}

.record-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.record-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-shell {
  display: grid;
  gap: 22px;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding: 0 0 36px;
}

.site-footer-copy {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.site-footer-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer-copy > p:first-child {
  font-size: 0.95rem;
}

.site-footer-company {
  font-size: 0.79rem;
  color: rgba(82, 97, 123, 0.9);
}

.site-footer-company a {
  color: inherit;
}

@media (max-width: 900px) {
  .hero-card,
  .fleet-hero,
  .fleet-contact,
  .content-grid,
  .feature-band,
  .overview-grid,
  .coverage-grid,
  .workflow-grid,
  .premium-grid,
  .fleet-flow-grid,
  .fleet-license-grid,
  .fleet-split,
  .fleet-hero-rail,
  .fleet-audience,
  .proof-grid,
  .proof-media-grid,
  .article-feed-grid,
  .related-article-grid,
  .article-nav-columns,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    justify-items: center;
  }

  .hero-carousel-footer,
  .hero-carousel-stage {
    width: min(100%, 360px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .panel,
  .metric-card {
    padding: 20px;
  }

  .overview-panel {
    padding: 20px;
  }

  .article-search-controls,
  .article-fact-grid,
  .fleet-form-grid {
    grid-template-columns: 1fr;
  }

  .article-page-nav-top,
  .article-nav-header {
    flex-direction: column;
  }

  .article-page-nav-panel {
    padding: 18px;
  }

  .article-back-link {
    width: 100%;
    max-width: none;
  }

  .article-chart li {
    grid-template-columns: 1fr;
  }
}
