:root {
  --ai-shift-navy: #071b3f;
  --ai-shift-blue: #1267e8;
  --ai-shift-blue-dark: #0755d8;
  --ai-shift-line: #d8e5f5;
  --ai-shift-text: #0d2244;
  --ai-shift-muted: #587095;
  --ai-shift-bg: #f4faff;
  --ai-shift-card: #ffffff;
}

.ai-shift-body {
  margin: 0;
  background: var(--ai-shift-bg);
  color: var(--ai-shift-text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.jinr-ai-shift-body {
  min-width: 0;
}

.ai-shift-body * {
  box-sizing: border-box;
}

.ai-shift-body a {
  color: inherit;
}

.ai-shift-body .ai-shift-button,
.ai-shift-body .ai-shift-button span,
.ai-shift-body .ai-shift-header__login,
.ai-shift-body .ai-shift-header__primary,
.ai-shift-body .ai-shift-header__nav a,
.ai-shift-body .ai-shift-footer a {
  color: inherit;
}

.ai-shift-container {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
}

.ai-shift-header {
  background: linear-gradient(180deg, #fbfdff 0%, #f4faff 100%);
  padding: 28px 0 18px;
}

.ai-shift-header__inner {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ai-shift-header__logo,
.ai-shift-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.ai-shift-header__logo-img {
  width: auto;
  height: 27px;
  max-width: 190px;
  object-fit: contain;
}

.ai-shift-logo-mark {
  position: relative;
  width: 27px;
  height: 27px;
  display: inline-block;
  flex: 0 0 auto;
}

.ai-shift-logo-mark::before,
.ai-shift-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.ai-shift-logo-mark::before {
  background: linear-gradient(135deg, #1f7cf4, #0f58da);
}

.ai-shift-logo-mark::after {
  inset: 7px;
  background: #fff;
}

.ai-shift-logo-mark--light::after {
  background: #071b3f;
}

.ai-shift-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex: 1 1 auto;
}

.ai-shift-header__nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.ai-shift-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ai-shift-header__login,
.ai-shift-header__primary {
  min-width: 118px;
  height: 46px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.ai-shift-header__login {
  background: #fff;
  border: 1px solid #73849d;
  color: var(--ai-shift-navy) !important;
}

.ai-shift-header__primary {
  background: var(--ai-shift-blue);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(18, 103, 232, 0.24);
}

.ai-shift-main {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #f4faff 38%, #f8fcff 72%, #fff 100%);
}

.ai-shift-hero {
  padding: 48px 0 34px;
}

.ai-shift-hero__grid {
  display: grid;
  grid-template-columns: 465px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.ai-shift-eyebrow {
  margin: 0 0 28px;
  color: var(--ai-shift-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.ai-shift-hero__copy h1 {
  margin: 0;
  color: #071b3f;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
}

.ai-shift-hero__lead {
  margin: 28px 0 26px;
  color: #20365b;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.ai-shift-checks {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.ai-shift-checks li {
  position: relative;
  padding-left: 30px;
  color: var(--ai-shift-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.ai-shift-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--ai-shift-blue);
  border-radius: 50%;
}

.ai-shift-checks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--ai-shift-blue);
  border-bottom: 2px solid var(--ai-shift-blue);
  transform: rotate(-45deg);
}

.ai-shift-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ai-shift-button {
  min-width: 218px;
  height: 62px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.ai-shift-button--primary {
  background: var(--ai-shift-blue);
  color: #fff !important;
  box-shadow: 0 16px 32px rgba(18, 103, 232, 0.25);
}

.ai-shift-body .ai-shift-button--primary,
.ai-shift-body .ai-shift-button--primary span,
.ai-shift-body .ai-shift-header__primary,
.ai-shift-body .ai-shift-header__primary span {
  color: #fff !important;
}

.ai-shift-button--secondary {
  background: #fff;
  color: var(--ai-shift-text) !important;
  border: 1px solid #52657d;
}

.ai-shift-button--light {
  min-width: 176px;
  height: 48px;
  background: #fff;
  color: var(--ai-shift-blue-dark) !important;
}

.ai-shift-button--light-secondary {
  min-width: 250px;
  height: 48px;
  background: #fff;
  color: var(--ai-shift-blue-dark) !important;
}

.ai-shift-body .ai-shift-button--secondary,
.ai-shift-body .ai-shift-button--secondary span,
.ai-shift-body .ai-shift-button--light,
.ai-shift-body .ai-shift-button--light span,
.ai-shift-body .ai-shift-button--light-secondary,
.ai-shift-body .ai-shift-button--light-secondary span {
  color: var(--ai-shift-blue-dark) !important;
}

.ai-shift-button__icon {
  color: currentColor;
  font-size: 9px;
}

.ai-shift-button__doc {
  width: 15px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.ai-shift-button__doc::before,
.ai-shift-button__doc::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 2px;
  background: currentColor;
}

.ai-shift-button__doc::before {
  top: 5px;
}

.ai-shift-button__doc::after {
  top: 10px;
}

.ai-shift-dashboard {
  height: 622px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  background: #fff;
  border: 1px solid #e1ebf8;
  border-radius: 8px;
  box-shadow: 0 28px 55px rgba(9, 45, 92, 0.13);
  overflow: hidden;
}

.ai-shift-dashboard__sidebar {
  background: linear-gradient(180deg, #06224d, #05162f);
  padding: 28px 18px;
  color: #dce9ff;
}

.ai-shift-dashboard__mark {
  width: 28px;
  height: 28px;
  margin: 0 0 28px;
  border: 4px solid #fff;
  border-radius: 8px;
  transform: rotate(45deg);
}

.ai-shift-dashboard__menu {
  display: grid;
  gap: 12px;
}

.ai-shift-dashboard__menu span {
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  color: #d8e8ff;
}

.ai-shift-dashboard__menu span.is-active {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.ai-shift-dashboard__panel {
  padding: 28px 20px 24px;
  background: #f8fbff;
}

.ai-shift-dashboard__top {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.ai-shift-dashboard__top strong {
  color: #0b1f42;
  font-size: 16px;
  font-weight: 900;
}

.ai-shift-dashboard__top > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-shift-dashboard__top p {
  margin: 0;
  color: #2e4160;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
}

.ai-shift-bell {
  width: 14px;
  height: 14px;
  border: 2px solid #1d2f50;
  border-radius: 50% 50% 45% 45%;
}

.ai-shift-user {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ai-shift-blue);
}

.ai-shift-dashboard__section-title {
  margin: 0 0 16px;
  color: #2b3a52;
  font-size: 12px;
  font-weight: 900;
}

.ai-shift-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.ai-shift-metric,
.ai-shift-card {
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(22, 65, 118, 0.06);
}

.ai-shift-metric {
  min-height: 92px;
  padding: 16px 14px;
}

.ai-shift-metric span {
  display: block;
  margin-bottom: 8px;
  color: #485d7a;
  font-size: 10px;
  font-weight: 900;
}

.ai-shift-metric strong {
  display: block;
  color: #0d244d;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.ai-shift-metric small {
  margin-left: 2px;
  font-size: 12px;
}

.ai-shift-metric em {
  display: block;
  margin-top: 9px;
  color: #2d6de7;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.ai-shift-metric em.is-green {
  color: #17a76d;
}

.ai-shift-metric em.is-red {
  color: #f35e4f;
}

.ai-shift-dashboard__analytics {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 16px;
  margin-bottom: 20px;
}

.ai-shift-card {
  min-height: 154px;
  padding: 18px;
}

.ai-shift-card h2 {
  margin: 0 0 14px;
  color: #314761;
  font-size: 12px;
  font-weight: 900;
}

.ai-shift-donut {
  width: 100px;
  height: 100px;
  margin: 4px auto 0;
  border-radius: 50%;
  background: conic-gradient(var(--ai-shift-blue) 0 86%, #e7eef9 86% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-shift-donut::before {
  content: "";
  position: absolute;
  inset: 13px;
  background: #fff;
  border-radius: 50%;
}

.ai-shift-donut strong {
  position: relative;
  color: #0d244d;
  font-size: 25px;
  font-weight: 900;
}

.ai-shift-card dl {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.ai-shift-chart {
  height: 110px;
  position: relative;
  border-left: 1px solid #d9e5f4;
  border-bottom: 1px solid #d9e5f4;
  background: repeating-linear-gradient(to top, transparent 0 27px, #edf3fb 28px);
}

.ai-shift-chart::before {
  content: "";
  position: absolute;
  inset: 18px 8px 26px 8px;
  background: linear-gradient(135deg, transparent 0 12%, #1e6beb 12% 15%, transparent 15% 28%, #1e6beb 28% 31%, transparent 31% 43%, #1e6beb 43% 46%, transparent 46% 58%, #1e6beb 58% 61%, transparent 61% 72%, #1e6beb 72% 75%, transparent 75% 87%, #1e6beb 87% 90%, transparent 90%);
}

.ai-shift-chart span {
  position: absolute;
  left: calc(9% + var(--i) * 13%);
  top: var(--y);
  width: 7px;
  height: 7px;
  background: #1e6beb;
  border-radius: 50%;
}

.ai-shift-dashboard__logs {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.ai-shift-dashboard__logs .ai-shift-card {
  min-height: 176px;
}

.ai-shift-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #344861;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.ai-shift-card p span {
  margin-left: auto;
  color: #7c8da4;
  font-size: 9px;
  font-weight: 700;
}

.ai-shift-card i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex: 0 0 auto;
}

.ai-shift-card i.is-blue { background: #2e75f0; }
.ai-shift-card i.is-purple { background: #7759d8; }
.ai-shift-card i.is-green { background: #20ad73; }
.ai-shift-card i.is-red { background: #f05247; }
.ai-shift-card i.is-orange { background: #ff8a34; }

.ai-shift-rail {
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid #e3edf9;
  border-bottom: 1px solid #e3edf9;
}

.ai-shift-rail__grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ai-shift-rail__grid > div {
  display: grid;
  grid-template-columns: 36px auto;
  align-content: center;
  column-gap: 12px;
  padding: 0 28px;
  border-right: 1px solid #dce8f6;
}

.ai-shift-rail__grid > div:last-child {
  border-right: 0;
}

.ai-shift-rail strong {
  color: #1c3154;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.ai-shift-rail p {
  margin: 4px 0 0;
  color: var(--ai-shift-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.ai-icon {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
  color: var(--ai-shift-blue);
}

.ai-icon--cost {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.ai-icon--cost::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 3px;
  height: 14px;
  background: currentColor;
}

.ai-icon--meter {
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.ai-icon--meter::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-right: 3px solid currentColor;
  border-top: 3px solid currentColor;
}

.ai-icon--contract {
  border: 3px solid currentColor;
  border-radius: 4px;
}

.ai-icon--contract::before,
.ai-icon--contract::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 3px;
  background: currentColor;
}

.ai-icon--contract::before { top: 8px; }
.ai-icon--contract::after { top: 15px; }

.ai-icon--bar::before,
.ai-icon--bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 5px;
  background: currentColor;
  border-radius: 3px 3px 0 0;
}

.ai-icon--bar {
  border-left: 5px solid currentColor;
  border-bottom: 0;
}

.ai-icon--bar::before {
  left: 11px;
  height: 20px;
}

.ai-icon--bar::after {
  left: 22px;
  height: 28px;
}

.ai-shift-section {
  padding: 66px 0 0;
}

.ai-shift-section__head {
  text-align: center;
  margin-bottom: 30px;
}

.ai-shift-section__head h2 {
  margin: 0 0 12px;
  color: #10264b;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
}

.ai-shift-section__head p {
  margin: 0;
  color: #17345f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.ai-shift-feature-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.ai-shift-feature-card {
  min-height: 184px;
  background: #fff;
  border: 1px solid #e3edf7;
  border-radius: 8px;
  padding: 28px 17px 22px;
  box-shadow: 0 13px 28px rgba(31, 92, 150, 0.06);
  text-align: center;
}

.ai-shift-feature-card h3 {
  margin: 22px 0 14px;
  color: #10264b;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
}

.ai-shift-feature-card p {
  margin: 0;
  color: #213653;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}

.ai-feature-icon {
  width: 43px;
  height: 43px;
  display: inline-block;
  position: relative;
  color: var(--ai-shift-blue);
}

.ai-feature-icon--calendar {
  border: 3px solid currentColor;
  border-radius: 5px;
}

.ai-feature-icon--calendar::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 13px;
  height: 3px;
  background: currentColor;
}

.ai-feature-icon--calendar::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 22px;
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.ai-feature-icon--clock {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.ai-feature-icon--clock::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 9px;
  width: 3px;
  height: 13px;
  background: currentColor;
}

.ai-feature-icon--clock::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  width: 12px;
  height: 3px;
  background: currentColor;
  transform: rotate(30deg);
  transform-origin: left center;
}

.ai-feature-icon--search {
  border: 3px solid currentColor;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin: 5px 5px 4px 0;
}

.ai-feature-icon--search::after {
  content: "";
  position: absolute;
  right: -11px;
  bottom: -8px;
  width: 16px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
}

.ai-feature-icon--doc,
.ai-feature-icon--receipt {
  border: 3px solid currentColor;
  border-radius: 4px;
}

.ai-feature-icon--doc::before,
.ai-feature-icon--receipt::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 13px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor;
}

.ai-feature-icon--report::before,
.ai-feature-icon--report::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 7px;
  background: currentColor;
  border-radius: 4px 4px 0 0;
}

.ai-feature-icon--report {
  border-left: 7px solid currentColor;
}

.ai-feature-icon--report::before {
  left: 16px;
  height: 28px;
}

.ai-feature-icon--report::after {
  left: 32px;
  height: 38px;
}

.ai-feature-icon--receipt::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 3px;
  background: currentColor;
}

.ai-feature-icon--mail {
  border: 3px solid currentColor;
  border-radius: 4px;
}

.ai-feature-icon--mail::before,
.ai-feature-icon--mail::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 24px;
  height: 3px;
  background: currentColor;
}

.ai-feature-icon--mail::before {
  left: 0;
  transform: rotate(32deg);
}

.ai-feature-icon--mail::after {
  right: 0;
  transform: rotate(-32deg);
}

.ai-shift-section--cases {
  padding-top: 60px;
}

.ai-shift-case-grid {
  width: min(100%, 1020px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.ai-shift-case-card {
  min-height: 258px;
  background: #fff;
  border: 1px solid #e3edf7;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(29, 83, 139, 0.08);
  padding: 34px 30px 28px;
}

.ai-shift-case-card p {
  margin: 0 0 26px;
  color: #4d617c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.ai-shift-case-card h3 {
  margin: 0 0 26px;
  color: #142a50;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.ai-shift-case-card a {
  color: var(--ai-shift-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.ai-shift-case-card a::after {
  content: " →";
}

.ai-shift-section--pricing {
  padding-top: 60px;
}

.ai-shift-price-card {
  width: min(100%, 740px);
  min-height: 158px;
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid #dce8f7;
  border-radius: 8px;
  box-shadow: 0 15px 34px rgba(26, 86, 151, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.ai-shift-price-card__amount {
  padding: 28px 48px;
  text-align: center;
  border-right: 1px solid #d7e4f3;
}

.ai-shift-price-card__amount p {
  margin: 0 0 20px;
  color: #1a3157;
  font-size: 14px;
  font-weight: 800;
}

.ai-shift-price-card__amount strong {
  display: block;
  color: #112a51;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.ai-shift-price-card__amount strong span {
  font-size: 55px;
}

.ai-shift-price-card__amount small {
  font-size: 12px;
}

.ai-shift-price-card__amount em {
  display: block;
  margin-top: 20px;
  color: var(--ai-shift-blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.ai-shift-price-card__list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 28px 42px;
  list-style: none;
}

.ai-shift-price-card__list li {
  position: relative;
  padding-left: 28px;
  color: #213a60;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.ai-shift-price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 2px solid var(--ai-shift-blue);
  border-radius: 50%;
}

.ai-shift-price-card__list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--ai-shift-blue);
  border-bottom: 2px solid var(--ai-shift-blue);
  transform: rotate(-45deg);
}

.ai-shift-pricing-note {
  width: min(100%, 740px);
  margin: 0 auto;
  color: #5b6e86;
  font-size: 13px;
  font-weight: 700;
}

.ai-shift-pricing-link {
  width: min(100%, 740px);
  margin: 10px auto 0;
  display: block;
  color: var(--ai-shift-blue);
  text-align: right;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.ai-shift-pricing-link::after {
  content: " →";
}

.ai-shift-cta {
  padding: 72px 0 54px;
}

.ai-shift-cta__card {
  min-height: 216px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1167ee 0%, #0758dc 58%, #0e7cf4 100%);
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  padding: 46px 48px 0;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ai-shift-cta__copy {
  align-self: center;
  padding-bottom: 38px;
  position: relative;
  z-index: 1;
}

.ai-shift-cta__copy h2 {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.4;
}

.ai-shift-cta__copy p {
  margin: 0 0 26px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.ai-shift-devices {
  height: 216px;
  position: relative;
}

.ai-shift-laptop {
  position: absolute;
  right: 74px;
  bottom: -9px;
  width: 296px;
  height: 190px;
  perspective: 600px;
}

.ai-shift-laptop__screen {
  height: 170px;
  border: 10px solid #15223a;
  border-bottom-width: 14px;
  border-radius: 8px 8px 4px 4px;
  background: #f8fbff;
  overflow: hidden;
  transform: rotateX(0deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.22);
}

.ai-shift-laptop__base {
  width: 350px;
  height: 26px;
  margin-left: -27px;
  background: linear-gradient(180deg, #dce4ee, #aebacd);
  border-radius: 0 0 20px 20px;
}

.ai-mini-dashboard,
.ai-mini-phone {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, #08224c 0 18%, transparent 18%),
    linear-gradient(#fff, #fff);
  position: relative;
}

.ai-mini-dashboard::before {
  content: "";
  position: absolute;
  left: 25%;
  right: 8%;
  top: 17%;
  height: 34px;
  background:
    linear-gradient(90deg, #eef5ff 0 23%, transparent 23% 26%, #eef5ff 26% 49%, transparent 49% 52%, #eef5ff 52% 75%, transparent 75% 78%, #eef5ff 78%);
  border-radius: 5px;
}

.ai-mini-dashboard::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 8%;
  top: 48%;
  height: 70px;
  background:
    linear-gradient(90deg, #eef5ff 0 48%, transparent 48% 52%, #eef5ff 52%),
    linear-gradient(180deg, transparent 0 54%, #1d6cf0 54% 57%, transparent 57%);
  border-radius: 5px;
}

.ai-shift-phone {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 84px;
  height: 156px;
  border: 8px solid #16233d;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.ai-mini-phone {
  background:
    radial-gradient(circle at 50% 32%, #fff 0 18px, transparent 19px),
    conic-gradient(var(--ai-shift-blue) 0 80%, #eaf1fb 80% 100%);
}

.ai-mini-phone::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 42px;
  background: repeating-linear-gradient(to bottom, #eaf1fb 0 6px, transparent 6px 12px);
}

.ai-shift-anchor {
  position: relative;
  top: -1px;
}

.ai-shift-footer {
  background: linear-gradient(135deg, #071f43 0%, #061933 100%);
  color: #fff;
  padding: 54px 0 62px;
}

.ai-shift-footer__inner {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 92px;
}

.ai-shift-footer__brand p {
  margin: 30px 0 34px;
  color: #dce8fb;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.ai-shift-footer__brand small {
  color: #c4d2e7;
  font-size: 12px;
  font-weight: 700;
}

.ai-shift-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

.ai-shift-footer__nav h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.ai-shift-footer__nav a {
  display: block;
  margin-bottom: 14px;
  color: #dce8fb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .ai-shift-header__nav {
    gap: 22px;
  }

  .ai-shift-hero__grid {
    grid-template-columns: 1fr;
  }

  .ai-shift-hero__copy {
    max-width: 760px;
  }

  .ai-shift-dashboard {
    max-width: 720px;
  }

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

  .ai-shift-cta__card {
    grid-template-columns: 1fr 330px;
  }
}

@media (max-width: 900px) {
  .ai-shift-header__inner {
    flex-wrap: wrap;
  }

  .ai-shift-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .ai-shift-rail__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-shift-rail__grid > div {
    min-height: 86px;
    border-bottom: 1px solid #dce8f6;
  }

  .ai-shift-rail__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .ai-shift-case-grid,
  .ai-shift-price-card,
  .ai-shift-cta__card,
  .ai-shift-footer__inner {
    grid-template-columns: 1fr;
  }

  .ai-shift-cta__card {
    padding-right: 36px;
  }

  .ai-shift-devices {
    display: none;
  }

  .ai-shift-footer__inner {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .ai-shift-container,
  .ai-shift-header__inner,
  .ai-shift-footer__inner {
    width: min(100% - 32px, 1180px);
  }

  .ai-shift-header {
    padding-top: 18px;
  }

  .ai-shift-header__actions {
    width: 100%;
  }

  .ai-shift-header__login,
  .ai-shift-header__primary {
    flex: 1 1 0;
    min-width: 0;
  }

  .ai-shift-hero {
    padding-top: 34px;
  }

  .ai-shift-eyebrow {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .ai-shift-hero__copy h1 {
    font-size: 34px;
    line-height: 1.45;
  }

  .ai-shift-hero__lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .ai-shift-checks li {
    font-size: 14px;
  }

  .ai-shift-button {
    width: 100%;
    min-width: 0;
  }

  .ai-shift-dashboard {
    height: auto;
    grid-template-columns: 1fr;
  }

  .ai-shift-dashboard__sidebar {
    display: none;
  }

  .ai-shift-dashboard__panel {
    padding: 22px 14px;
  }

  .ai-shift-metrics,
  .ai-shift-dashboard__analytics,
  .ai-shift-dashboard__logs {
    grid-template-columns: 1fr;
  }

  .ai-shift-card {
    min-height: 140px;
  }

  .ai-shift-rail__grid {
    grid-template-columns: 1fr;
  }

  .ai-shift-rail__grid > div {
    border-right: 0;
  }

  .ai-shift-section {
    padding-top: 48px;
  }

  .ai-shift-section__head h2 {
    font-size: 24px;
  }

  .ai-shift-section__head p {
    font-size: 15px;
  }

  .ai-shift-feature-grid {
    grid-template-columns: 1fr;
  }

  .ai-shift-feature-card {
    min-height: auto;
  }

  .ai-shift-feature-card p {
    text-align: center;
    font-size: 13px;
  }

  .ai-shift-case-card h3 {
    font-size: 18px;
  }

  .ai-shift-price-card__amount {
    border-right: 0;
    border-bottom: 1px solid #d7e4f3;
  }

  .ai-shift-price-card__amount,
  .ai-shift-price-card__list {
    padding: 26px 24px;
  }

  .ai-shift-cta {
    padding-top: 52px;
  }

  .ai-shift-cta__card {
    padding: 34px 24px;
  }

  .ai-shift-cta__copy {
    padding-bottom: 0;
  }

  .ai-shift-cta__copy h2 {
    font-size: 24px;
  }

  .ai-shift-cta__copy p {
    font-size: 14px;
  }

  .ai-shift-footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
