:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --border: #e6dccb;
  --text: #1a120b;
  --muted: #6b6053;
  --accent: #5c3a21;
  --accent-dim: #3f281a;
  --radius: 12px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Times New Roman", Times, "Georgia", serif;
  --max-width: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% -20%,
    rgba(92, 58, 33, 0.07),
    transparent
  );
}

.sola {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4.5rem) clamp(1.25rem, 4vw, 2rem)
    clamp(3rem, 8vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 3.5rem);
}

.sola__hero {
  text-align: center;
}

.sola__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sola__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
}

.sola__tagline {
  margin: 1rem auto 0;
  max-width: 32ch;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.55;
  color: var(--muted);
}

.sola__section-title {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.sola__app-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.app-card:hover {
  border-color: rgba(92, 58, 33, 0.35);
  box-shadow: 0 6px 24px rgba(26, 18, 11, 0.06);
  transform: translateY(-1px);
}

.app-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.app-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--accent);
}

.app-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.app-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.app-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.app-card__name-hour {
  color: var(--accent);
}

.app-card__name-glass {
  color: var(--accent-dim);
}

.app-card__desc {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.app-card__arrow {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: var(--accent);
  opacity: 0.55;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.app-card:hover .app-card__arrow {
  opacity: 1;
  transform: translateX(2px);
}

.sola__footer {
  text-align: center;
}

.sola__footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
