:root {
  --navy: #00072c;
  --blue: #4462ff;
  --soft-blue: #f2f5ff;
  --muted: #69718d;
  --line: #e5e9f4;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--navy); font-family: Arial, Helvetica, sans-serif; margin: 0; }
a { color: inherit; text-decoration: none; }
.hero { background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 70%); min-height: 570px; overflow: hidden; padding: 28px clamp(24px, 6vw, 96px) 92px; position: relative; }
.hero-glow { background: var(--blue); border-radius: 999px; filter: blur(2px); opacity: .08; pointer-events: none; position: absolute; }
.hero-glow-left { height: 330px; left: -150px; top: 260px; width: 330px; }
.hero-glow-right { height: 480px; right: -180px; top: -210px; width: 480px; }
.site-header, .hero-content, .shops-section, .site-footer { margin: 0 auto; max-width: 1180px; position: relative; }
.site-header { align-items: center; display: flex; justify-content: space-between; }
.brand img { display: block; height: auto; width: 148px; }
.status-pill { align-items: center; background: rgba(255,255,255,.8); border: 1px solid rgba(68,98,255,.16); border-radius: 999px; color: var(--blue); display: inline-flex; font-size: 13px; font-weight: 600; gap: 8px; padding: 9px 14px; }
.status-dot { background: #62c492; border-radius: 50%; box-shadow: 0 0 0 4px rgba(98,196,146,.14); height: 7px; width: 7px; }
.hero-content { padding: 110px 0 0; text-align: center; }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .14em; margin: 0 0 18px; text-transform: uppercase; }
h1, h2 { letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(48px, 8vw, 92px); line-height: .98; }
h1 span { color: var(--blue); display: block; }
.intro { color: var(--muted); font-size: 18px; line-height: 1.65; margin: 30px auto 0; max-width: 560px; }
.shops-section { padding: 84px 24px 92px; }
.section-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 30px; }
.section-heading .eyebrow { margin-bottom: 10px; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.section-note { color: var(--muted); font-size: 14px; margin: 0 0 4px; }
.shop-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shop-card { align-items: center; border: 1px solid var(--line); border-radius: 18px; display: flex; gap: 16px; min-height: 106px; padding: 18px 20px; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.shop-card:hover, .shop-card:focus-visible { border-color: rgba(68,98,255,.45); box-shadow: 0 14px 32px rgba(0,7,44,.08); outline: none; transform: translateY(-3px); }
.shop-logo { align-items: center; background: var(--soft-blue); border-radius: 13px; display: flex; flex: 0 0 64px; height: 64px; justify-content: center; overflow: hidden; padding: 10px; }
.shop-logo img { max-height: 100%; max-width: 100%; }
.shop-initials { align-items: center; background: var(--blue); border-radius: 10px; color: var(--white); display: flex; font-size: 25px; font-weight: 700; height: 42px; justify-content: center; width: 42px; }
.shop-details { display: flex; flex: 1; flex-direction: column; gap: 5px; min-width: 0; }
.shop-details strong { font-size: 17px; }
.shop-details span { color: var(--muted); font-size: 13px; line-height: 1.4; }
.shop-arrow { color: var(--blue); font-size: 22px; transition: transform 180ms ease; }
.shop-card:hover .shop-arrow, .shop-card:focus-visible .shop-arrow { transform: translate(2px, -2px); }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; font-size: 12px; justify-content: space-between; padding: 24px; }

@media (max-width: 680px) {
  .hero { min-height: 530px; padding: 24px 20px 70px; }
  .brand img { width: 122px; }
  .status-pill { font-size: 11px; padding: 8px 10px; }
  .hero-content { padding-top: 96px; }
  .intro { font-size: 16px; }
  .shops-section { padding: 64px 20px 68px; }
  .section-heading { align-items: start; flex-direction: column; gap: 12px; }
  .shop-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: start; flex-direction: column; gap: 7px; padding: 22px 20px; }
}
