main {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 8vw, 110px) 20px 72px;
}

.shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.hero-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: -0.065em;
  margin-bottom: 24px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

.apps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.app-card {
  min-height: 292px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.14);
}

html[data-theme="neo"] .app-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.app-card.featured {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(29, 63, 114, 0.26), transparent 38%),
    linear-gradient(145deg, #111111, #050505);
}

html[data-theme="neo"] .app-card.featured {
  background:
    radial-gradient(circle at top right, rgba(106, 168, 255, 0.28), transparent 38%),
    linear-gradient(145deg, #12192a, #070a12);
}

.app-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.app-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-card.featured .app-label,
.app-card.featured p,
.app-card.featured .status {
  color: rgba(250, 250, 250, 0.64);
}

.app-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card.featured .app-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.app-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.app-card h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.app-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.app-action {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 44px;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.app-card:hover .button,
.whatsapp-card:hover .button {
  transform: translateY(-1px);
}

.app-card.featured .button {
  background: #fafafa;
  color: #050505;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.status {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-note {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.whatsapp-section {
  margin-top: 56px;
}

.whatsapp-card {
  width: 100%;
  min-height: 220px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(184, 155, 94, 0.14), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

html[data-theme="neo"] .whatsapp-card {
  background:
    radial-gradient(circle at top right, rgba(106, 168, 255, 0.2), transparent 34%),
    var(--surface);
}

.whatsapp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.14);
}

html[data-theme="neo"] .whatsapp-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.whatsapp-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.whatsapp-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.whatsapp-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.whatsapp-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

