.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #041747;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-devices.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
}

.hero-inner {
  width: min(var(--max), 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 720px;
}

.hero-text .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--brand);
  font-size: 0.7rem;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  margin-top: 1rem;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--brand);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  max-width: 60ch;
}

.hero-btns {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.hero-btns .btn {
  border-radius: 0;
}

.hero .btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  backdrop-filter: blur(5px);
}

.hero .btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1rem;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 0.65rem;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.highlight-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 300px;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 66, 0.15), rgba(5, 20, 66, 0.78));
}

.promo-copy {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  color: #fff;
}

.verify-board {
  border-radius: 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
}

.verify-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.verify-item {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.verify-item img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.verify-item p {
  padding: 0.55rem;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.category-chip {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.22s ease;
  border-radius: 0;
}

.category-chip:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.category-chip strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.category-chip span {
  font-size: 0.75rem;
  color: var(--ink-muted);
  white-space: nowrap;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.5rem;
}

.panel h3 {
  margin-bottom: 0.5rem;
}

.story-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.story-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.2s ease;
}

.story-item:hover {
  opacity: 0.85;
}

.story-item img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.story-item h4 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.story-item p {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.magazine-row {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.magazine-row img {
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.marketing-banner {
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.marketing-banner img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.marketing-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5, 20, 66, 0.85), rgba(5, 20, 66, 0.2));
}

.marketing-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  display: grid;
  align-content: center;
  padding: clamp(1.1rem, 3vw, 2.2rem);
  max-width: 560px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.biz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.biz-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.biz-card .body {
  padding: 0.6rem;
}

.biz-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.biz-card p {
  font-size: 0.77rem;
}

.job-cta {
  background: linear-gradient(120deg, #031647, #0a2d80);
  border-radius: 0;
  color: #fff;
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.job-cta h3 {
  margin-bottom: 0.5rem;
}

.job-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.job-cta img {
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.slider-wrap {
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.quote {
  padding: 1rem;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.quote footer {
  border-top: 1px solid var(--line);
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
}

.slider-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 23, 73, 0.2);
  cursor: pointer;
}

.slider-dots button.active {
  background: linear-gradient(125deg, var(--brand), var(--brand-2));
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.steps figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.steps figure img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.step-list li {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0.9rem;
  position: relative;
  padding-left: 3rem;
}

.step-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(130deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.help-card {
  padding: 1.1rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.newsletter {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.newsletter img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(5, 20, 66, 0.88), rgba(5, 20, 66, 0.45));
}

.newsletter .content {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 1rem;
}

.newsletter form {
  display: flex;
  gap: 0.45rem;
  width: min(620px, 100%);
}

.newsletter input {
  flex: 1;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  padding: 0.72rem 0.9rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1100px) {
  .highlight-wrap,
  .steps,
  .faq-grid,
  .job-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 2.5rem 1.5rem;
  }

  .hero-text p {
    margin-inline: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .verify-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .hero {
    min-height: 500px;
  }

  .hero-inner {
    padding: 2.8rem 0;
  }

  .feature-grid,
  .media-split,
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .magazine-row {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    flex-direction: column;
  }
}
