:root {
  --bg: #FFFCFF;
  /* Snow */
  --ink: #111111;
  --muted: #4a4a4a;
  --border: rgba(17, 17, 17, .12);

  --blue: #4356A6;
  /* Ocean Twilight */
  --orange: #FF8F00;
  /* Deep Saffron */
  --yellow: #FFBD05;
  /* Amber Gold */
  --green: #568203;
  /* Forest Moss */

  --max: 980px;
  --pad: clamp(16px, 4vw, 28px);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(17, 17, 17, .06);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit
}

a:hover {
  opacity: .86
}

.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: var(--pad);
  top: var(--pad);
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 1000;
}

header {
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg,
      rgba(67, 86, 166, .14),
      rgba(255, 143, 0, .12),
      rgba(255, 189, 5, .12),
      rgba(86, 130, 3, .12));
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--pad);
}

.top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: min(560px, 100%);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .7);
}

h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.lead {
  margin: 10px 0 0;
  max-width: 70ch;
  color: rgba(17, 17, 17, .82);
  font-size: clamp(15px, 1.35vw, 18px);
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .03);
  font-weight: 650;
  font-size: 14px;
  white-space: nowrap;
}

.btn.primary {
  border-color: rgba(67, 86, 166, .35);
  background: rgba(67, 86, 166, .10);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: var(--blue);
}

.btn.download .dot {
  background: var(--green);
}

.btn.kick .dot {
  background: var(--orange);
}

.btn.contact .dot {
  background: var(--yellow);
}

.bar {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow), var(--green));
  box-shadow: 0 6px 24px rgba(17, 17, 17, .08);
  margin-top: 12px;
}

main {
  padding: 22px 0 34px;
}

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

.card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.muted {
  color: rgba(17, 17, 17, .70);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 780px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.dl {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, .66);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dl strong {
  display: block;
  margin-bottom: 2px;
}

.dl small {
  color: rgba(17, 17, 17, .64);
  display: block;
}

.dl a {
  flex: 0 0 auto;
  text-decoration: none;
  border: 1px solid rgba(86, 130, 3, .30);
  background: rgba(86, 130, 3, .10);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  white-space: nowrap;
}

.copybox {
  border: 1px dashed rgba(17, 17, 17, .18);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, .65);
  margin-top: 12px;
}

.label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .65);
  margin-bottom: 8px;
}

.k {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  background: rgba(17, 17, 17, .06);
  padding: 2px 8px;
  border-radius: 999px;
}

/* Social section pills */
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(4px);
}

.ico {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(17, 17, 17, .45);
}

.social a.instagram .ico {
  background: var(--yellow);
}

.social a.facebook .ico {
  background: var(--blue);
}

.social a.tiktok .ico {
  background: var(--orange);
}

.updates {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.update {
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .66);
}

.update time {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .62);
  margin-bottom: 6px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 30px;
  color: rgba(17, 17, 17, .70);
  font-size: 14px;
}
