:root {
  --butter: #ffdf6b;
  --flash: #ffe347;
  --coral: #ff5b4a;
  --ink: #1a1a1a;
  --cream: #fff8f0;
  --peach: #ffb4a2;
  --sky: #a8d5e2;
  --lilac: #c5a3ff;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fffaf3 0%, var(--cream) 56%, #fff3df 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand span:first-child {
  display: inline-block;
  transform: rotate(-8deg);
}

.brand-dot {
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.68;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.58;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  border: 2px solid var(--ink);
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  opacity: 0.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--flash);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: white;
  box-shadow: none;
}

.phone-card {
  justify-self: center;
  width: min(360px, 100%);
  padding: 18px;
  border: 4px solid var(--ink);
  border-radius: 44px;
  background: var(--ink);
  box-shadow: 16px 18px 0 rgba(26, 26, 26, 0.18);
}

.phone-screen {
  overflow: hidden;
  min-height: 700px;
  border-radius: 32px;
  background: #050505;
  color: white;
}

.camera-scene {
  position: relative;
  height: 510px;
  background:
    linear-gradient(180deg, rgba(50, 62, 76, 1) 0 26%, rgba(107, 84, 64, 1) 26% 56%, rgba(40, 46, 42, 1) 56%);
}

.camera-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 32%, rgba(255,255,255,0.28) 32.2%, transparent 32.6%, transparent 65%, rgba(255,255,255,0.28) 65.2%, transparent 65.6%),
    linear-gradient(to bottom, transparent 32%, rgba(255,255,255,0.28) 32.2%, transparent 32.6%, transparent 65%, rgba(255,255,255,0.28) 65.2%, transparent 65.6%);
}

.person {
  position: absolute;
  left: 50%;
  bottom: 62px;
  width: 96px;
  height: 240px;
  transform: translateX(-50%);
}

.person::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #241711;
}

.person::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 5px;
  width: 86px;
  height: 132px;
  border-radius: 44px 44px 22px 22px;
  background: #f2e4d5;
}

.overlay-box {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 156px;
  height: 330px;
  border: 4px solid var(--flash);
  border-radius: 56px;
  transform: translateX(-50%);
  background: rgba(255, 227, 71, 0.12);
}

.camera-panel {
  margin: -70px 20px 22px;
  padding: 16px;
  border: 1px solid rgba(255, 227, 71, 0.7);
  border-radius: 20px;
  background: rgba(0,0,0,0.74);
  position: relative;
}

.camera-panel strong {
  display: block;
  color: var(--flash);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.camera-panel span {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  font-weight: 900;
}

.lens-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 18px 0 16px;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.75;
}

.shutter {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border: 4px solid white;
  border-radius: 999px;
  background: white;
  box-shadow: inset 0 0 0 8px black;
}

.section {
  padding: 68px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tile {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: white;
  box-shadow: 4px 4px 0 var(--ink);
}

.tile h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.tile p {
  margin: 0;
  line-height: 1.55;
  opacity: 0.68;
}

.legal {
  max-width: 820px;
  padding: 56px 0 88px;
}

.legal h1 {
  font-size: clamp(46px, 7vw, 82px);
}

.legal h2 {
  margin: 42px 0 10px;
  font-size: 25px;
  letter-spacing: 0;
}

.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.74;
}

.legal ul {
  padding-left: 20px;
}

.legal a {
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--flash);
  border: 2px solid var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-top: 2px dotted rgba(26, 26, 26, 0.22);
  font-size: 13px;
  font-weight: 700;
  opacity: 0.65;
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 12px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
