.site-nav a[aria-current="page"] {
  color: #fff;
}

.home-hero {
  min-height: 790px;
}

.featured-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(154, 196, 232, 0.2);
  border-radius: 24px;
  background: rgba(8, 22, 38, 0.88);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease;
}

.featured-product-card:hover,
.featured-product-card:focus-visible {
  border-color: rgba(140, 198, 255, 0.55);
  transform: translateY(-5px);
}

.featured-product-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1024 / 500;
  object-fit: cover;
}

.featured-product-meta {
  padding: 28px 30px 32px;
}

.featured-product-meta span,
.legal-meta,
.store-status {
  color: var(--blue-bright);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-product-meta strong {
  display: block;
  margin: 6px 0 5px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.featured-product-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-spotlight {
  background: #eef3f6;
  color: var(--ink);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-copy h2,
.content-hero h1,
.product-hero h1 {
  margin: 14px 0 22px;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}

.spotlight-lead {
  max-width: 570px;
  color: #617283;
  font-size: 18px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 0;
}

.feature-pills span {
  padding: 7px 11px;
  border: 1px solid #d6e0e8;
  border-radius: 999px;
  color: #60788f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-spotlight .text-link {
  color: var(--ink);
}

.phone-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}

.phone-pair img {
  width: min(43%, 285px);
  border: 8px solid #091525;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(8, 22, 38, 0.2);
}

.phone-pair img:first-child {
  transform: rotate(-5deg) translateX(22px);
}

.phone-pair img:last-child {
  transform: rotate(5deg) translateX(-22px) translateY(30px);
}

.studio-section {
  background: var(--ink);
}

.studio-section .section-heading p,
.screenshot-section .section-heading p {
  color: var(--muted);
}

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

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

.product-list-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, rgba(77, 157, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.018);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

a.product-list-card:hover,
a.product-list-card:focus-visible {
  border-color: rgba(140, 198, 255, 0.42);
  background:
    radial-gradient(circle at 0 0, rgba(77, 157, 255, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.028);
  transform: translateY(-4px);
}

.product-list-card > img,
.hostshift-logo-wrap {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.hostshift-logo-wrap {
  display: grid;
  border: 1px solid rgba(140, 198, 255, 0.22);
  background:
    radial-gradient(circle at center, rgba(27, 108, 255, 0.14), transparent 70%),
    #050b1e;
  place-items: center;
}

.hostshift-logo-wrap img {
  display: block;
  width: 76px;
  height: auto;
}

.product-list-card span {
  color: var(--blue-bright);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-list-card h3 {
  margin: 5px 0 8px;
  color: #f2f7fb;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.product-list-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-list-card strong {
  color: #d9e8f5;
  font-size: 12px;
  font-weight: 700;
}

.hostshift-product strong {
  color: #7f93a8;
}

.simple-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.018);
}

.simple-card > span {
  color: var(--blue-bright);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.simple-card h3 {
  margin: 80px 0 12px;
  font-size: 25px;
  font-weight: 580;
  letter-spacing: -0.035em;
}

.simple-card p {
  margin: 0;
  color: var(--muted);
}

.footer-layout-links {
  grid-template-columns: auto 1fr auto;
}

.content-page {
  background: #eef3f6;
  color: var(--ink);
}

.content-page .site-header {
  background: rgba(7, 17, 31, 0.94);
  border-color: var(--line);
}

.content-hero,
.product-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 88px;
  background: var(--ink);
  color: var(--paper);
}

.content-hero .hero-grid,
.product-hero .hero-grid {
  opacity: 0.8;
}

.content-hero p,
.product-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.content-hero p a,
.product-hero p a {
  color: var(--blue-bright);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #7f93a8;
  font-size: 12px;
  font-weight: 650;
}

.breadcrumb a:hover {
  color: #fff;
}

.content-section {
  padding: 85px 0 110px;
}

.content-shell {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
}

.content-shell-wide {
  width: min(calc(100% - 48px), var(--max-width));
}

.info-card,
.faq-item,
.legal-content {
  border: 1px solid #d5dfe6;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 43, 63, 0.035);
}

.info-card {
  padding: 30px;
}

.info-card h2,
.content-heading {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.info-card p,
.faq-item p {
  color: #637485;
}

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

.contact-grid-cards .info-card {
  min-height: 245px;
}

.contact-grid-cards .info-card a,
.legal-content a,
.faq-item a {
  color: #246fbd;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.faq-item {
  padding: 26px 28px;
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.faq-item p {
  margin: 0;
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.product-hero-grid > *,
.spotlight-grid > *,
.how-to-grid > * {
  min-width: 0;
}

.product-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.product-hero-art {
  display: block;
  max-width: 100%;
  width: 100%;
  border: 1px solid rgba(154, 196, 232, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #d5e1eb;
}

.store-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.store-button strong,
.store-button small {
  display: block;
  line-height: 1.1;
}

.store-button small {
  margin-bottom: 4px;
  color: #8295a8;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 14px;
}

.how-to-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.how-to-grid img {
  display: block;
  width: min(100%, 370px);
  margin: auto;
  border: 8px solid #091525;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(8, 22, 38, 0.18);
}

.step-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.step > span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--blue-bright);
  font-family: Consolas, monospace;
  font-size: 11px;
  place-items: center;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: #647586;
}

.screenshot-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.screenshot-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.screenshot-track figure {
  flex: 0 0 min(300px, 72vw);
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-track img {
  display: block;
  width: 100%;
  border: 7px solid #16243a;
  border-radius: 28px;
}

.screenshot-track figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  padding: clamp(28px, 6vw, 64px);
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: #536576;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-meta {
  margin-bottom: 30px;
  color: #527ca8;
}

@media (max-width: 1080px) {
  .spotlight-grid,
  .how-to-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-grid {
    display: block;
  }

  .product-hero-grid > * {
    width: 100%;
    max-width: 100%;
  }

  .product-hero-art {
    max-width: 720px;
    margin-top: 42px;
  }

  .contact-grid-cards {
    grid-template-columns: 1fr;
  }

  .product-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .simple-card-grid,
  .footer-layout-links {
    grid-template-columns: 1fr;
  }

  .phone-pair {
    min-height: 490px;
  }

  .content-shell,
  .content-shell-wide {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .content-hero,
  .product-hero {
    padding: 135px 0 70px;
  }

  .product-hero-grid {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    gap: 40px;
  }

  .product-hero-grid > *,
  .product-hero-art {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .product-hero p,
  .store-status {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .phone-pair {
    min-height: 410px;
  }

  .phone-pair img {
    width: 48%;
    border-width: 5px;
    border-radius: 24px;
  }

  .featured-product-meta {
    padding: 22px;
  }

  .store-actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .product-list-card {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px;
  }

  .product-list-card > img,
  .hostshift-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .hostshift-logo-wrap img {
    width: 53px;
  }

  .product-list-card h3 {
    font-size: 25px;
  }
}
