:root {
  --ink: #151515;
  --muted: #686868;
  --soft: #f6f6f3;
  --paper: #fbfaf6;
  --line: #deded8;
  --red: #d71920;
  --red-dark: #a80f15;
  --signal: #23c483;
  --cyan: #c5f2ff;
  --graphite: #222326;
  --white: #ffffff;
  --shadow: 0 24px 80px rgb(16 16 16 / 18%);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, rgb(197 242 255 / 64%), transparent 27rem),
    linear-gradient(135deg, #ffffff 0%, var(--soft) 52%, #ecefeb 100%);
  color: var(--ink);
  font-family: "Satoshi", "Aptos", "SF Pro Text", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(21 21 21 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(21 21 21 / 4%) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(to bottom, rgb(0 0 0 / 64%), rgb(0 0 0 / 0%));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 34%);
  border-radius: var(--radius);
  background: rgb(0 0 0 / 42%);
  font-family: "Aptos Display", "SF Pro Display", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 1px;
  font-size: 12px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy span {
  color: rgb(255 255 255 / 76%);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(18px);
}

.site-header nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgb(255 255 255 / 82%);
  font-size: 13px;
  font-weight: 650;
}

.site-header nav a:hover {
  background: rgb(255 255 255 / 12%);
  color: var(--white);
}

.site-header .ghost {
  justify-self: end;
}

.button,
.install-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  font-weight: 780;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.install-button:hover {
  transform: translateY(-1px);
}

.button.primary,
.install-button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 34px rgb(215 25 32 / 28%);
}

.button.secondary {
  border: 1px solid rgb(255 255 255 / 24%);
  color: var(--white);
  background: rgb(255 255 255 / 12%);
  backdrop-filter: blur(16px);
}

.install-button.ghost {
  border: 1px solid rgb(255 255 255 / 22%);
  color: var(--white);
  background: rgb(0 0 0 / 24%);
  backdrop-filter: blur(18px);
}

.button.inline {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 50px rgb(0 0 0 / 10%);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-picture,
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% 30%;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.06);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 74% 40%, transparent 0 10rem, rgb(0 0 0 / 28%) 26rem),
    linear-gradient(90deg, rgb(0 0 0 / 88%) 0%, rgb(0 0 0 / 58%) 42%, rgb(0 0 0 / 16%) 100%);
}

.hero-scrim {
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(to top, rgb(0 0 0 / 82%), transparent);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(54px, 10svh, 106px) clamp(18px, 7vw, 92px);
  padding-top: 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffebed;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Aptos Display", "SF Pro Display", "Satoshi", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(58px, 11vw, 138px);
  line-height: 0.88;
}

h2 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.95;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 610px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.hero-note {
  max-width: 520px;
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  line-height: 1.5;
}

.offer-section,
.use-cases,
.process,
.app-shell,
.included,
.store-note,
.final-cta {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.offer-copy p,
.app-shell p,
.store-note p,
.final-cta p,
.proof-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.offer-strip {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  margin: 70px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offer-strip > div {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 58%);
}

.offer-strip span {
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.offer-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.offer-strip p,
.case-grid p,
.timeline p,
.included-list p {
  color: var(--muted);
  line-height: 1.48;
}

.use-cases {
  background:
    linear-gradient(180deg, rgb(21 21 21 / 2%), rgb(21 21 21 / 0%)),
    var(--white);
}

.case-grid,
.included-list {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-grid article,
.included-list > div {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgb(255 255 255 / 92%), rgb(248 249 247 / 82%));
}

.case-grid article:hover,
.included-list > div:hover {
  background: var(--cyan);
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 72% 16%, rgb(35 196 131 / 30%), transparent 28rem),
    linear-gradient(135deg, #171819 0%, #2f1113 55%, #111111 100%);
}

.process .section-kicker,
.process .timeline-time {
  color: #ffb6ba;
}

.timeline {
  display: grid;
  gap: 0;
  width: min(980px, 100%);
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0 28px 34px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.timeline li::before {
  position: absolute;
  top: 32px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgb(215 25 32 / 18%);
  content: "";
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.timeline p {
  max-width: 640px;
  color: rgb(255 255 255 / 72%);
}

.timeline-time {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof {
  display: grid;
  min-height: 780px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(70px, 10vw, 126px) clamp(18px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgb(21 21 21 / 0%) 0%, rgb(21 21 21 / 4%) 100%),
    var(--paper);
}

.proof-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  max-height: 650px;
  border: 1px solid rgb(21 21 21 / 12%);
  border-radius: var(--radius);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.proof-visual img {
  width: 100%;
  height: min(74vw, 720px);
  object-fit: cover;
  object-position: top center;
}

.app-shell {
  background:
    linear-gradient(135deg, rgb(35 196 131 / 12%), transparent 48%),
    #f1f5f0;
}

.install-fallback {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px !important;
}

.included {
  background: var(--white);
}

.store-note {
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 82%), rgb(0 0 0 / 62%)),
    url("assets/timolauf-mobile.png") center / cover;
}

.store-note .section-kicker,
.final-cta .section-kicker {
  color: #ffbfc3;
}

.store-note p {
  color: rgb(255 255 255 / 76%);
}

.final-cta {
  display: grid;
  min-height: 74svh;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgb(215 25 32 / 42%), transparent 30rem),
    linear-gradient(150deg, #111111, #251111 68%, #101010);
}

.final-cta > div {
  width: min(830px, 100%);
}

.final-cta p {
  margin-right: auto;
  margin-left: auto;
  color: rgb(255 255 255 / 72%);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgb(255 255 255 / 64%);
  background: #0f0f10;
  font-size: 14px;
}

html:not(.reveal-ready) [data-reveal] {
  opacity: 1;
  transform: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .site-header .ghost {
    display: none;
  }

  .hero {
    min-height: 96svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(0 0 0 / 58%) 0%, rgb(0 0 0 / 22%) 34%, rgb(0 0 0 / 88%) 100%),
      linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 18%));
  }

  .hero-image {
    object-position: 58% 4%;
    transform: scale(1.02);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 40px;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 58px);
  }

  .hero-actions,
  .button,
  .install-button.primary {
    width: 100%;
  }

  .two-col,
  .proof {
    grid-template-columns: 1fr;
  }

  .offer-strip,
  .case-grid,
  .included-list {
    grid-template-columns: 1fr;
  }

  .offer-strip > div,
  .case-grid article,
  .included-list > div {
    min-height: auto;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof {
    min-height: auto;
  }

  .proof-visual {
    position: relative;
    top: auto;
  }

  .proof-visual img {
    height: 620px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .offer-section,
  .use-cases,
  .process,
  .app-shell,
  .included,
  .store-note,
  .final-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .offer-strip {
    width: 100%;
  }

  .proof {
    padding-right: 16px;
    padding-left: 16px;
  }
}
