@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/InterTight-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --flame: #F15A24;
  --flame-deep: #C43E0F;
  --flame-soft: #FFE8DB;
  --ink: #1A1A1A;
  --graphite: #4A4A4A;
  --slate: #8C8C8C;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --border: #EBEBEB;
  --border-mid: #D0D0D0;
  --display: "General Sans", "Inter Tight", system-ui, sans-serif;
  --ui: "Inter Tight", system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(26, 26, 26, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 232, 219, 0.8), transparent 30rem),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 48%, #FFFFFF 100%);
  color: var(--ink);
  font-family: var(--ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(235, 235, 235, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 0 clamp(72px, 12vw, 136px);
  overflow: hidden;
}

.hero-copy,
.section-copy,
.bogota-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--flame-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flame);
  content: "";
}

.eyebrow.center {
  justify-content: center;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(58px, 10vw, 132px);
}

h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
}

h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

p {
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  padding: 0 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.store-btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--flame);
  box-shadow: 0 16px 36px rgba(241, 90, 36, 0.28);
  color: var(--white);
}

.btn.secondary {
  border: 1.5px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}

.btn.coming-soon {
  opacity: 0.6;
  cursor: default;
  border: none;
  font-family: inherit;
}

.btn.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.hero-device {
  position: relative;
  justify-self: center;
  width: min(420px, 86vw);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 12px solid var(--ink);
  border-radius: 44px;
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 142px;
  border: 1px solid rgba(235, 235, 235, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(26, 26, 26, 0.12);
  padding: 16px;
  backdrop-filter: blur(18px);
}

.floating-card strong {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.floating-card span {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 650;
}

.card-a {
  left: -54px;
  top: 20%;
}

.card-b {
  right: -36px;
  bottom: 16%;
}

.hero-glow,
.bogota-bg {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.glow-one {
  left: 48%;
  top: 8%;
  width: 360px;
  height: 360px;
  background: var(--flame-soft);
  filter: blur(22px);
}

.glow-two {
  right: 4%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  background: rgba(241, 90, 36, 0.18);
  filter: blur(18px);
}

.split-section,
.jtbd-section,
.download-section,
.contact-strip,
.legal-page,
.contact-page {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(80px, 12vw, 150px) 0;
}

.media-stack {
  position: relative;
}

.image-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: clamp(440px, 62vw, 690px);
  object-fit: cover;
}

.screen-fan {
  position: absolute;
  right: -26px;
  bottom: -34px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.screen-fan img {
  width: clamp(88px, 12vw, 142px);
  aspect-ratio: 9 / 19.5;
  border: 6px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(26, 26, 26, 0.18);
  object-fit: cover;
}

.screen-fan img:first-child {
  transform: rotate(-7deg) translateY(8px);
}

.screen-fan img:last-child {
  transform: rotate(6deg);
}

.mini-stat {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 16px 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--flame);
  flex: 0 0 auto;
}

.section-copy p {
  max-width: 610px;
}

.feature-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.feature-row span,
.jtbd-number {
  color: var(--flame);
  font-family: var(--display);
  font-size: 18px;
}

.feature-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.jtbd-section {
  padding: clamp(82px, 12vw, 154px) 0;
  text-align: center;
}

.jtbd-section h2 {
  max-width: 850px;
  margin: 0 auto;
}

.jtbd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
  text-align: left;
}

.jtbd-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 60px rgba(26, 26, 26, 0.06);
}

.jtbd-card::after {
  position: absolute;
  right: -40px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--flame-soft);
  content: "";
}

.jtbd-card h3 {
  margin-top: 70px;
}

.jtbd-card p {
  position: relative;
  z-index: 1;
}

.bogota-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.bogota-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.92), rgba(26, 26, 26, 0.62)),
    radial-gradient(circle at 22% 70%, rgba(241, 90, 36, 0.7), transparent 28rem);
  content: "";
}

.bogota-bg {
  z-index: -1;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 42px);
  transform: rotate(-10deg);
}

.bogota-copy {
  width: min(calc(100% - 40px), 940px);
  text-align: center;
}

.bogota-copy .eyebrow {
  color: var(--flame-soft);
}

.bogota-copy .eyebrow::before {
  background: var(--flame);
}

.bogota-copy p {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2.4vw, 30px);
}

.download-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  padding: clamp(80px, 12vw, 150px) 0;
}

.store-actions {
  display: grid;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 20px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-btn span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 650;
}

.store-btn strong {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.store-btn.webapp {
  background: var(--flame);
}

.store-btn.coming-soon {
  cursor: default;
  opacity: 0.6;
  border: none;
  font-family: inherit;
  color: #fff;
  width: 100%;
}

.store-btn.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 22px 80px rgba(26, 26, 26, 0.06);
  margin-bottom: 36px;
  padding: clamp(26px, 5vw, 52px);
}

.contact-strip h2 {
  font-size: clamp(36px, 5vw, 66px);
}

.contact-list {
  display: grid;
  gap: 10px;
  color: var(--graphite);
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.contact-list a:hover,
.footer-col a:hover,
.legal-card a:hover,
.contact-details a:hover {
  color: var(--flame-deep);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 34px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 22px;
  border-radius: 34px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 50px);
}

.site-footer.compact {
  margin-top: 40px;
}

.footer-brand img {
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.legal-page,
.contact-page {
  padding-top: clamp(70px, 10vw, 120px);
}

.legal-hero {
  max-width: 850px;
  padding-bottom: 36px;
}

.legal-hero h1,
.contact-panel h1 {
  max-width: 12ch;
}

.legal-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 70px);
}

.legal-card h2 {
  margin: 38px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  max-width: 820px;
}

.legal-card a,
.contact-details a {
  color: var(--flame-deep);
  font-weight: 800;
}

.contact-hero {
  display: grid;
  min-height: calc(100svh - 180px);
  place-items: center;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(32px, 8vw, 86px);
}

.contact-panel::after {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--flame-soft);
  content: "";
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.contact-details div {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--off-white);
  padding: 18px;
}

.contact-details dt {
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

@media (max-width: 900px) {
  .hero,
  .split-section,
  .download-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-device {
    width: min(360px, 78vw);
  }

  .jtbd-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .jtbd-card {
    min-height: 280px;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    border-radius: 24px;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links a {
    text-align: center;
    padding: 10px 8px;
  }

  h1 {
    font-size: clamp(48px, 18vw, 76px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .card-a {
    left: -10px;
  }

  .card-b {
    right: -8px;
  }

  .floating-card {
    min-width: 116px;
    padding: 12px;
  }

  .floating-card strong {
    font-size: 26px;
  }

  .mini-stat {
    position: static;
    margin-top: 14px;
  }

  .screen-fan {
    position: static;
    justify-content: center;
    margin-top: 14px;
  }

  .store-btn {
    min-height: 70px;
  }

  .store-btn strong {
    font-size: 24px;
  }

  .legal-card,
  .contact-panel {
    border-radius: 24px;
  }
}
