/* FutureToast Studios — futuretoast.com */

:root {
  --bg: #100e0b;
  --bg-raise: #171310;
  --line: #2b241c;
  --text: #f0e9dd;
  --muted: #a2988a;
  --accent: #f2a33c;
  --accent-deep: #c97e1d;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #ffbe5c; }

.wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* header */
header {
  padding: 28px 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand img { width: 34px; height: 34px; }
.brand span { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 26px; font-size: 15px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* hero */
.hero {
  padding: 88px 0 96px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 24% 0%, rgba(242, 163, 60, 0.10), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero img.mark { width: 76px; height: 76px; margin-bottom: 28px; }
h1 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 700;
}
h1 .studios { color: var(--muted); font-weight: 500; }
.lede {
  font-size: 20px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 36px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
}
.btn-solid { background: var(--accent); color: #17130f; }
.btn-solid:hover { background: #ffbe5c; color: #17130f; }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--muted); color: var(--text); }

/* sections */
section { padding: 72px 0; border-top: 1px solid var(--line); }
.kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px;
}
h2 { font-size: 32px; letter-spacing: -0.01em; margin: 0 0 14px; }
.section-lede { color: var(--muted); max-width: 620px; margin: 0 0 40px; }

/* pantry card */
.app-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.app-card .app-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.app-card .app-head img { width: 56px; height: 56px; border-radius: 13px; }
.app-card .app-head .name { font-size: 22px; font-weight: 700; }
.app-card .app-head .platform { font-size: 14px; color: var(--muted); }
.app-card p { color: var(--muted); margin: 0 0 26px; }
.app-shot { text-align: center; }
.app-shot img {
  width: 100%; max-width: 270px;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: block; margin: 0 auto;
}

/* games */
.games-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(242, 163, 60, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.games-card h3 { margin: 0 0 10px; font-size: 22px; }
.games-card p { color: var(--muted); margin: 0; max-width: 560px; }

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.service {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.service h3 { margin: 0 0 8px; font-size: 18px; }
.service p { margin: 0; font-size: 15px; color: var(--muted); }

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 60px;
  font-size: 15px;
  color: var(--muted);
}
.foot-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 64px; }
  .app-card { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .games-card { padding: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
