:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --primary: #f26522;
  --surface: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  width: 100%;
  padding: 16px 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(242, 101, 34, 0.15);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transform: translateZ(0);
}

.brand__logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.brand__name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}

@media (max-width: 640px) {
  .brand__name {
    display: none;
  }
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.glow::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 18%;
  top: 22%;
  background: rgba(242, 101, 34, 0.12);
  filter: blur(60px);
  border-radius: 999px;
}

.glow::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: 18%;
  bottom: 22%;
  background: rgba(59, 130, 246, 0.10);
  filter: blur(70px);
  border-radius: 999px;
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 90px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 101, 34, 0.25);
  background: rgba(242, 101, 34, 0.10);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.15);
}

.hero__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #0b1324;
}

.hero__title em {
  color: var(--primary);
  font-style: italic;
}

.hero__kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__desc {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.footer {
  width: 100%;
  padding: 18px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social a {
  color: var(--muted-2);
  text-decoration: none;
  transition: color 160ms ease;
}

.social a:hover {
  color: var(--primary);
}

.social i {
  font-size: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
