* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7f0;
  color: #1f2937;
}

body {
  min-height: 100vh;
}

:root {
  --orange: #f97316;
  --orange-deep: #ea580c;
  --orange-soft: #ffedd5;
  --ink: #1f2937;
  --muted: #6b7280;
  --panel: #ffffff;
  --border: rgba(249, 115, 22, 0.16);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.site-header,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.brand-mark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange-deep);
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--orange);
  color: #fff;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 40px 0;
}

.hero-card {
  width: 100%;
  padding: clamp(40px, 7vw, 88px);
  border-radius: 32px;
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(249, 115, 22, 0.08);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.hero-text {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.45;
  color: var(--ink);
}

.hero-subtext {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 8px;
  color: var(--muted);
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
}

.icp-link {
  font-size: 0.95rem;
  color: var(--orange-deep);
  text-decoration: none;
}

.icp-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 18px;
  }

  .site-header,
  .site-footer {
    width: 100%;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    width: 100%;
    padding: 24px 0 36px;
  }

  .hero-card {
    border-radius: 24px;
  }
}
