@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f7f7;
  --ink: #171717;
  --muted: #656565;
  --soft: #e9e9e9;
  --line: #dedede;
  --white: #ffffff;
  --blue: #36a9e1;
  --blue-dark: #0b6fae;
  --blue-soft: #e8f7ff;
  --yellow: #ffd85a;
  --green: #28a56d;
  --amber: #f5a524;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Public Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 28px 24px 0;
  pointer-events: auto;
  transition:
    grid-template-columns 360ms ease,
    gap 360ms ease,
    min-height 360ms ease,
    padding 360ms ease;
}

.brand-pill,
.nav-pill,
.action-pill,
.mobile-panel {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition:
    border-radius 260ms ease,
    box-shadow 260ms ease,
    min-width 260ms ease,
    padding 260ms ease,
    transform 260ms ease;
}

.brand-pill {
  display: flex;
  grid-column: 1;
  align-items: center;
  justify-self: start;
  min-width: 184px;
  padding: 11px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 148px;
  height: auto;
  transition: width 260ms ease;
}

.site-footer .brand-logo {
  width: 172px;
}

.nav-spacer {
  display: none;
  width: 10px;
  height: 10px;
  transition: width 220ms ease;
}

.nav-pill {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-self: center;
  padding: 6px;
}

.nav-pill a,
.dropdown-toggle {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #555;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
  transition: background 180ms ease, color 180ms ease, min-height 260ms ease, padding 260ms ease, transform 180ms ease;
}

.nav-pill a:hover,
.dropdown-toggle:hover,
.nav-pill a.active {
  background: var(--soft);
  color: var(--ink);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  min-height: 40px;
  justify-content: flex-start;
  padding: 0 12px;
}

.action-pill {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 8px;
}

.icon-action,
.mobile-toggle {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  transition: width 260ms ease, height 260ms ease, transform 180ms ease, background 180ms ease;
}

.icon-action:hover,
.mobile-toggle:hover {
  transform: translateY(-1px);
  background: #dfdfdf;
}

.login-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 0 22px;
  box-shadow: 0 14px 28px rgba(54, 169, 225, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.login-action:hover {
  transform: translateY(-1px);
  background: #1788c3;
  box-shadow: 0 18px 32px rgba(54, 169, 225, 0.3);
}

.icon-action svg,
.mobile-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-toggle {
  display: none;
}

.mobile-panel {
  display: none;
  width: min(420px, calc(100% - 48px));
  margin: 10px auto 0;
  padding: 10px;
}

.mobile-panel.open {
  display: grid;
  gap: 4px;
}

.mobile-panel a {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-radius: 14px;
  color: #555;
  font-size: 15px;
  font-weight: 700;
  padding: 0 16px;
}

.mobile-panel a:hover {
  background: var(--soft);
  color: var(--ink);
}

.mobile-panel .mobile-login {
  justify-content: center;
  background: var(--blue);
  color: var(--white);
}

.mobile-panel .mobile-login:hover {
  background: #1788c3;
  color: var(--white);
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  gap: 10px;
  padding: 0 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: scale(0.97);
}

.btn-dark {
  background: #000;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-soft {
  background: var(--soft);
  color: var(--ink);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(54, 169, 225, 0.28);
}

.section {
  padding: 150px 0;
}

.section-tight {
  padding: 90px 0;
}

.section-title {
  max-width: 840px;
  font-size: clamp(42px, 7vw, 88px);
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.section-copy.center {
  margin-inline: auto;
  text-align: center;
}

section[id] {
  scroll-margin-top: 118px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  display: grid;
  isolation: isolate;
  min-height: clamp(1040px, 126vh, 1160px);
  place-items: start center;
  padding: 145px 0 240px;
  background: #050505;
  color: rgba(255, 255, 255, 0.74);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(84, 169, 68, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 8, 8, 0.74) 0%, rgba(5, 8, 8, 0.46) 42%, rgba(5, 8, 8, 0.36) 65%, rgba(5, 8, 8, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.24) 52%, #050505 96%);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505;
}

.hero-bg-slide {
  position: absolute;
  inset: -2%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08) translateX(-4%);
  transition:
    opacity 900ms ease,
    transform 2600ms ease;
  will-change: opacity, transform;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1.02) translateX(0);
}

.hero-bg-slide-one {
  background-image: url("../content/Generated image 2 (3).png");
}

.hero-bg-slide-two {
  background-image: url("../content/Generated image 1 (3).png");
}

.hero-bg-slide-three {
  background-image: url("../content/Generated image 7.png");
}

.hero-cloud {
  position: absolute;
  top: auto;
  right: -8vw;
  bottom: -170px;
  left: -8vw;
  z-index: 3;
  height: clamp(260px, 34vh, 390px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(255, 255, 255, 0.82), transparent 54%),
    radial-gradient(ellipse at 50% 8%, rgba(255, 255, 255, 1), transparent 60%),
    radial-gradient(ellipse at 88% 22%, rgba(255, 255, 255, 0.82), transparent 54%),
    linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgba(255, 255, 255, 0.78) 25%, var(--bg) 46%, var(--bg) 100%);
  filter: blur(16px);
  opacity: 1;
  transform: translateZ(0);
}

.hero-cloud::before {
  position: absolute;
  inset: -18% 5% auto;
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 38% 80%, rgba(0, 0, 0, 0.14), transparent 64%),
    radial-gradient(ellipse at 65% 80%, rgba(0, 0, 0, 0.1), transparent 58%);
  content: "";
  filter: blur(34px);
  opacity: 0.34;
}

.home-hero .container {
  position: static;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
}

.hero-content h1 {
  max-width: 1010px;
  color: var(--white);
  font-size: clamp(50px, 6.45vw, 82px);
  letter-spacing: 0;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.42);
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2.1vw, 23px);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.hero-offer {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-offer div {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.13);
  padding: 16px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-offer strong,
.hero-offer span {
  display: block;
}

.hero-offer strong {
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
}

.hero-offer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-stage {
  position: absolute;
  top: clamp(640px, 67vh, 700px);
  left: 50%;
  bottom: auto;
  z-index: 2;
  width: min(960px, 88vw);
  margin: 0;
  opacity: 0.96;
  transform: translateX(-50%);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.window-grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 330px;
}

.window-sidebar {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.side-line {
  height: 42px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.side-line.active {
  background: var(--blue);
}

.window-main {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  min-height: 82px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.metric-card strong {
  display: block;
  color: var(--white);
  font-size: 28px;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.calendar-preview {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  min-height: 170px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.cal-col {
  display: grid;
  gap: 8px;
}

.cal-cell {
  min-height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.09);
}

.cal-cell.blue {
  background: rgba(54, 169, 225, 0.76);
}

.cal-cell.yellow {
  background: rgba(255, 216, 90, 0.9);
}

.cal-cell.green {
  background: rgba(40, 165, 109, 0.8);
}

.float-chip {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 180px;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  padding: 18px;
  box-shadow: var(--shadow);
}

.float-chip.one {
  left: -28px;
  top: 110px;
}

.float-chip.two {
  right: -22px;
  bottom: 82px;
}

.float-chip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.float-chip strong {
  font-size: 30px;
}

@media (min-width: 1081px) {
  .site-header.is-compact .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 8px;
    min-height: 64px;
    padding-top: 16px;
  }

  .site-header.is-compact .brand-pill,
  .site-header.is-compact .nav-pill,
  .site-header.is-compact .action-pill {
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
  }

  .site-header.is-compact .brand-pill {
    min-width: 156px;
    padding: 9px 14px;
  }

  .site-header.is-compact .brand-logo {
    width: 128px;
  }

  .site-header.is-compact .nav-pill {
    padding: 5px;
  }

  .site-header.is-compact .nav-pill a,
  .site-header.is-compact .dropdown-toggle {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 16px;
  }

  .site-header.is-compact .action-pill {
    padding: 7px;
  }

  .site-header.is-compact .icon-action {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .site-header.is-compact .login-action {
    min-height: 44px;
    border-radius: 15px;
    padding: 0 18px;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.app-showcase {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 76px 0 24px;
  text-align: center;
}

.showcase-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.showcase-heading h2 {
  max-width: 980px;
  font-size: clamp(34px, 5.3vw, 64px);
  font-weight: 600;
  line-height: 1.12;
}

.showcase-heading p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
}

.inline-photo,
.inline-icon {
  display: inline-flex;
  width: 90px;
  height: 44px;
  vertical-align: middle;
  border-radius: 999px;
}

.inline-photo {
  background:
    linear-gradient(135deg, rgba(54,169,225,.12), rgba(255,216,90,.16)),
    url("../content/Generated image 2 (3).png");
  background-position: center;
  background-size: cover;
}

.inline-icon {
  width: 56px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.showcase-tags span {
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
}

.showcase-stage {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 40px;
}

.edge-fade {
  position: absolute;
  top: 78px;
  bottom: 52px;
  z-index: 6;
  width: clamp(190px, 23vw, 340px);
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.edge-fade.left {
  left: -24px;
  background:
    radial-gradient(ellipse at left center, rgba(247,247,247,1) 0%, rgba(247,247,247,.96) 38%, rgba(247,247,247,.36) 72%, rgba(247,247,247,0) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(247,247,247,.98) 26%, rgba(247,247,247,.72) 62%, rgba(247,247,247,0) 100%);
}

.edge-fade.right {
  right: -24px;
  background:
    radial-gradient(ellipse at right center, rgba(247,247,247,1) 0%, rgba(247,247,247,.96) 38%, rgba(247,247,247,.36) 72%, rgba(247,247,247,0) 100%),
    linear-gradient(270deg, var(--bg) 0%, rgba(247,247,247,.98) 26%, rgba(247,247,247,.72) 62%, rgba(247,247,247,0) 100%);
}

.edge-fade::after {
  position: absolute;
  inset: -38px;
  content: "";
  filter: blur(24px);
}

.edge-fade.left::after {
  background: linear-gradient(90deg, var(--bg) 0%, rgba(247,247,247,.8) 42%, rgba(247,247,247,0) 100%);
}

.edge-fade.right::after {
  background: linear-gradient(270deg, var(--bg) 0%, rgba(247,247,247,.8) 42%, rgba(247,247,247,0) 100%);
}

.marquee-row {
  position: absolute;
  left: 0;
  display: flex;
  width: max-content;
  gap: 20px;
  will-change: transform;
}

.row-one {
  top: 180px;
  animation: showcase-left 36s linear infinite;
}

.row-two {
  top: 320px;
  animation: showcase-right 38s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
}

.habit-card {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.habit-card.photo {
  background-size: cover;
  background-position: center;
}

.habit-card.owner-demo {
  background-image:
    linear-gradient(135deg, rgba(12,79,116,.12), rgba(255,255,255,.05)),
    url("../content/Generated image 1 (2).png");
}

.habit-card.arrival {
  background-image:
    linear-gradient(135deg, rgba(40,165,109,.08), rgba(255,255,255,.04)),
    url("../content/Generated image 2 (3).png");
}

.habit-card.courtyard-desk {
  background-image:
    linear-gradient(135deg, rgba(255,216,90,.16), rgba(255,255,255,.04)),
    url("../content/Generated image 4 (1).png");
}

.habit-card.handover {
  background-image:
    linear-gradient(135deg, rgba(54,169,225,.12), rgba(21,49,66,.08)),
    url("../content/Generated image 4 (1).png");
  background-position: 55% center;
}

.habit-card.room-prep {
  background-image:
    linear-gradient(135deg, rgba(40,165,109,.14), rgba(255,255,255,.05)),
    url("../content/Generated image 6.png");
}

.habit-card.mobile-owner {
  background-image:
    linear-gradient(135deg, rgba(54,169,225,.14), rgba(255,216,90,.08)),
    url("../content/Generated image 5.png");
}

.habit-card.guided-setup {
  background-image:
    linear-gradient(135deg, rgba(255,216,90,.16), rgba(255,255,255,.05)),
    url("../content/Generated image 1 (3).png");
}

.habit-card.sunset-check {
  background-image:
    linear-gradient(135deg, rgba(21,49,66,.18), rgba(255,216,90,.06)),
    url("../content/Generated image 7.png");
}

.text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
}

.text-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.text-card strong {
  max-width: 118px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.text-card.red span { background: #ff1b1b; }
.text-card.blue span { background: #0059ff; }
.text-card.yellow span { background: var(--yellow); color: var(--ink); }
.text-card.green span { background: #13b714; }
.text-card.peach span { background: linear-gradient(135deg, #ffb088, #ff5c2c); }

.showcase-phone {
  position: relative;
  z-index: 10;
  width: 286px;
  border-radius: 44px;
  background: #0a0a0a;
  box-shadow: 0 32px 70px rgba(0, 0, 0, .28);
  padding: 8px;
}

.showcase-phone::before {
  position: absolute;
  top: 19px;
  left: 50%;
  width: 82px;
  height: 24px;
  border-radius: 999px;
  background: #000;
  content: "";
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  height: 616px;
  overflow: hidden;
  border-radius: 38px;
  background: #f7f7f7;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-dark {
  min-height: 260px;
  border-radius: 34px;
  background: #101010;
  color: rgba(255,255,255,.82);
  padding: 24px 22px 20px;
  text-align: left;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.phone-dark h3 {
  color: var(--white);
  font-size: 17px;
}

.phone-dark p {
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

.chart-card {
  margin-top: 18px;
  border-radius: 18px;
  background: #1d1d1d;
  padding: 14px;
}

.chart-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
}

.phone-light {
  padding: 16px 20px 24px;
  text-align: left;
}

.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.phone-metrics div {
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.phone-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.phone-metrics span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.phone-light h4 {
  margin: 14px 0 12px;
  font-size: 14px;
}

.routine-cards {
  display: grid;
  grid-template-columns: repeat(3, 118px);
  gap: 8px;
  overflow: hidden;
}

.routine {
  min-height: 78px;
  border-radius: 13px;
  padding: 10px;
}

.routine small {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 8px;
  font-weight: 900;
  padding: 3px 7px;
}

.routine strong,
.routine span {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

.routine span {
  color: var(--muted);
  font-size: 8px;
}

.routine.green { background: #d9f7d4; border: 1px solid #74cd6c; }
.routine.green small { background: #22c55e; }
.routine.blue { background: #dfe4ff; }
.routine.blue small { background: #5e7cff; }
.routine.violet { background: #f0d9ff; }
.routine.violet small { background: #c044ff; }

.suggestion {
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  padding: 14px;
}

@keyframes showcase-left {
  from { transform: translateX(-8%); }
  to { transform: translateX(-50%); }
}

@keyframes showcase-right {
  from { transform: translateX(-48%); }
  to { transform: translateX(-6%); }
}

.image-collage {
  position: relative;
  min-height: 620px;
}

.photo-card,
.visual-card {
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.photo-card {
  position: absolute;
  background:
    linear-gradient(135deg, rgba(54,169,225,0.18), rgba(255,216,90,0.18)),
    url("../content/Generated image 1 (3).png");
  background-position: center;
  background-size: cover;
}

.photo-card.large {
  inset: 20px 80px 120px 0;
  background-image:
    linear-gradient(135deg, rgba(21,49,66,0.08), rgba(255,216,90,0.08)),
    url("../content/Generated image 2 (3).png");
}

.photo-card.small {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 280px;
  border: 10px solid var(--bg);
  background-image:
    linear-gradient(135deg, rgba(54,169,225,0.12), rgba(255,255,255,0.06)),
    url("../content/Generated image 6.png");
  background-position: center;
}

.rating-card {
  position: absolute;
  right: 24px;
  top: 80px;
  width: 210px;
  border-radius: 26px;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}

.rating-card strong {
  display: block;
  color: var(--ink);
  font-size: 36px;
}

.avatar-stack {
  display: flex;
  margin-bottom: 12px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-right: -10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.avatar:nth-child(2) {
  background: var(--yellow);
  color: var(--ink);
}

.avatar:nth-child(3) {
  background: var(--green);
}

.intro-copy {
  display: grid;
  gap: 28px;
}

.intro-copy h2 {
  font-size: clamp(42px, 6vw, 78px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.mini-feature {
  min-height: 180px;
  border-radius: 28px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.mini-feature h4 {
  margin-bottom: 12px;
  font-size: 24px;
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 58px;
}

.dashboard-showcase {
  min-height: 620px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.mock-app {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfdff;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.mock-title {
  color: var(--ink);
  font-weight: 900;
}

.mock-pill {
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.mock-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.mock-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mock-metric {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
}

.mock-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mock-metric strong {
  color: var(--ink);
  font-size: 28px;
}

.mock-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.6fr 0.7fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
}

.mock-row:last-child {
  border-bottom: 0;
}

.status {
  justify-self: start;
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 10px;
}

.status.green {
  background: rgba(40,165,109,0.15);
  color: #14734a;
}

.status.yellow {
  background: rgba(255,216,90,0.35);
  color: #725700;
}

.status.blue {
  background: rgba(54,169,225,0.15);
  color: var(--blue-dark);
}

.feature-cards {
  display: grid;
  gap: 18px;
}

.feature-card {
  min-height: 194px;
  border-radius: 30px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.feature-card.dark {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.feature-card.dark h3 {
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.usecase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.tab-button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 0 22px;
  box-shadow: var(--shadow-soft);
}

.tab-button.active {
  background: var(--ink);
  color: var(--white);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.usecase-card {
  display: grid;
  min-height: 420px;
  align-content: end;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.05)),
    url("../content/Generated image 4 (1).png");
  background-position: center;
  background-size: cover;
  color: rgba(255,255,255,0.78);
  padding: 26px;
}

.usecase-card:nth-child(2) {
  background:
    linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.05)),
    url("../content/Generated image 2 (3).png");
  background-position: center;
  background-size: cover;
}

.usecase-card:nth-child(3) {
  background:
    linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.05)),
    url("../content/Generated image 5.png");
  background-position: center;
  background-size: cover;
}

.usecase-card:nth-child(4) {
  background:
    linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.05)),
    url("../content/Generated image 7.png");
  background-position: center;
  background-size: cover;
}

.usecase-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 32px;
}

.metric-section {
  background: var(--bg);
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.metric-tile {
  min-height: 230px;
  border-radius: 32px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.metric-tile strong {
  display: block;
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.95;
}

.metric-tile span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.globe-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0 140px;
}

.globe-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.92) 0%, rgba(6, 8, 10, 0.72) 48%, rgba(6, 8, 10, 0.34) 100%),
    url("../content/Generated image 7.png");
  background-position: center;
  background-size: cover;
  color: rgba(255,255,255,0.7);
  padding: 48px;
}

.globe-orbit {
  display: none;
}

.globe-orbit::before,
.globe-orbit::after {
  position: absolute;
  inset: 17%;
  content: "";
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.globe-orbit::after {
  inset: 34%;
  background: rgba(54,169,225,0.22);
}

.globe-card h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 92px);
}

.globe-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 90px;
}

.globe-stat {
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  padding: 22px;
}

.globe-stat strong {
  display: block;
  color: var(--white);
  font-size: 38px;
}

.assist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: min(360px, 86vw);
  min-height: 700px;
  margin: 0 auto;
  border: 14px solid #111;
  border-radius: 42px;
  background: #f9fbfc;
  box-shadow: var(--shadow);
  padding: 24px;
}

.phone-speaker {
  width: 96px;
  height: 8px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #111;
}

.phone-card {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 16px;
}

.phone-card strong {
  display: block;
  color: var(--ink);
}

.assist-list {
  display: grid;
  gap: 18px;
}

.assist-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 28px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.assist-item h4 {
  margin-bottom: 6px;
  font-size: 26px;
}

.dark-testimonials {
  overflow: hidden;
  background: #060606;
  color: rgba(255,255,255,0.68);
}

.dark-testimonials h2 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(44px, 7vw, 92px);
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.quote-card {
  min-height: 280px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  padding: 28px;
}

.quote-card p {
  color: rgba(255,255,255,0.84);
  font-size: 22px;
}

.quote-card strong {
  display: block;
  margin-top: 28px;
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 0 24px;
  text-align: left;
}

.faq-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding: 0 24px 24px;
}

.faq-item.open .faq-answer {
  display: block;
}

.download-band {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  min-height: 640px;
  border-radius: 42px;
  background: var(--white);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.download-card h2 {
  font-size: clamp(44px, 7vw, 90px);
}

.board-preview {
  overflow: hidden;
  border-radius: 34px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.board-preview img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.footer-grid.footer-grid-expanded {
  grid-template-columns: minmax(300px, 1.25fr) repeat(3, minmax(150px, 0.65fr));
}

.footer-links-featured a {
  max-width: 235px;
  line-height: 1.35;
}

.newsletter {
  display: grid;
  max-width: 520px;
  gap: 22px;
}

.newsletter h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.email-row {
  display: flex;
  overflow: hidden;
  max-width: 460px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 6px;
}

.email-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 0 18px;
}

.email-row button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  padding: 0 22px;
}

.footer-links h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  padding-top: 22px;
}

.footer-bottom button,
.footer-bottom a {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0;
}

.footer-bottom button:hover,
.footer-bottom a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.legal-main {
  background: var(--bg);
}

.legal-hero {
  padding: 180px 0 54px;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

.legal-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(52px, 9vw, 112px);
}

.legal-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.legal-section {
  padding: 20px 0 90px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.legal-toc a {
  border-radius: 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  padding: 10px 12px;
}

.legal-toc a:hover {
  background: var(--soft);
  color: var(--ink);
}

.legal-card {
  display: grid;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow-soft);
}

.legal-card section {
  display: grid;
  gap: 14px;
  scroll-margin-top: 120px;
}

.legal-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
}

.legal-button,
.cookie-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 0 22px;
}

.legal-footer {
  margin-top: 0;
}

.cookie-consent {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(780px, calc(100vw - 44px));
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.cookie-copy {
  display: grid;
  gap: 4px;
}

.cookie-copy strong {
  color: var(--ink);
  font-size: 18px;
}

.cookie-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions a {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.cookie-button {
  min-height: 42px;
  font-size: 14px;
  padding: 0 16px;
}

.cookie-button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.page-hero {
  padding: 190px 0 80px;
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(58px, 10vw, 124px);
}

.page-hero p {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: clamp(18px, 2vw, 24px);
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  border-radius: 999px;
  background: var(--white);
  padding: 8px 16px;
  box-shadow: var(--shadow-soft);
}

.switch {
  position: relative;
  width: 58px;
  height: 32px;
}

.switch input {
  opacity: 0;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.slider::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + .slider::after {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.price-card {
  display: grid;
  min-height: 610px;
  align-content: start;
  border-radius: 34px;
  background: var(--white);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.price-card.featured h2,
.price-card.featured .price {
  color: var(--white);
}

.price-card h2 {
  font-size: 34px;
}

.price {
  margin-top: 28px;
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 0.95;
}

.price small {
  color: inherit;
  font-family: "Public Sans", Arial, sans-serif;
  font-size: 18px;
}

.price-card p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}

.feature-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  content: "";
  font-size: 13px;
  font-weight: 900;
}

.price-card.featured .feature-list li::before {
  background: rgba(255,255,255,0.14);
  color: var(--yellow);
}

.comparison {
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  min-height: 68px;
  padding: 22px;
  font-weight: 800;
}

.comparison-row > div:not(:first-child) {
  text-align: center;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(58px, 9vw, 120px);
}

.about-media {
  position: relative;
  min-height: 620px;
}

.about-media .photo-card.large {
  inset: 0 110px 130px 0;
}

.about-media .photo-card.small {
  width: 62%;
}

.logo-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 32px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 24s linear infinite;
}

.logo-word {
  color: #9a9a9a;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: start;
}

.mission-grid h2 {
  font-size: clamp(42px, 6vw, 78px);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.principle {
  border-radius: 28px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.principle h4 {
  margin-bottom: 10px;
  font-size: 25px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.team-card {
  display: grid;
  justify-items: center;
  border-radius: 32px;
  background: var(--white);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.team-photo {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  color: var(--white);
  font-size: 42px;
  font-weight: 900;
}

.team-card h3 {
  font-size: 30px;
}

@media (max-width: 1080px) {
  .nav-pill,
  .action-pill {
    display: none;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .mobile-toggle {
    display: grid;
  }

  .window-grid,
  .intro-grid,
  .feature-grid,
  .assist-grid,
  .download-card,
  .faq-layout,
  .about-hero-grid,
  .mission-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: none;
  }

  .feature-strip,
  .usecase-grid,
  .metric-board,
  .globe-stats,
  .pricing-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    padding: 14px 14px 0;
  }

  .brand-pill {
    min-width: 0;
    border-radius: 16px;
    padding: 9px 12px;
  }

  .brand-logo {
    width: 122px;
  }

  .section,
  .section-tight {
    padding: 78px 0;
  }

  .home-hero {
    min-height: 94vh;
    padding: 112px 0 82px;
  }

  .hero-bg-slide-one {
    background-position: 58% center;
  }

  .hero-bg-slide-two {
    background-position: 62% center;
  }

  .hero-bg-slide-three {
    background-position: 60% center;
  }

  .hero-content h1,
  .page-hero h1,
  .about-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .metric-row,
  .mock-metrics,
  .feature-strip,
  .usecase-grid,
  .metric-board,
  .globe-stats,
  .pricing-grid,
  .team-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .product-window {
    border-radius: 24px;
  }

  .hero-offer div {
    min-height: 64px;
    border-radius: 18px;
    padding: 10px 6px;
  }

  .hero-offer {
    width: min(100%, 380px);
    max-width: 380px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-offer strong {
    font-size: clamp(16px, 5vw, 20px);
  }

  .hero-offer span {
    font-size: 10px;
  }

  .showcase-phone {
    width: min(280px, 82vw);
  }

  .phone-screen {
    height: 604px;
  }

  .hero-stage {
    display: none;
  }

  .window-main {
    padding: 14px;
  }

  .calendar-preview {
    grid-template-columns: repeat(4, 1fr);
  }

  .float-chip {
    position: static;
    margin-top: 14px;
  }

  .image-collage,
  .about-media {
    min-height: 450px;
  }

  .photo-card.large {
    inset: 0 26px 118px 0;
  }

  .photo-card.small {
    width: 72%;
    height: 210px;
  }

  .rating-card {
    right: 4px;
    top: 40px;
    width: 180px;
  }

  .dashboard-showcase,
  .mock-app {
    min-height: 520px;
  }

  .phone-frame {
    min-height: 560px;
  }

  .download-card {
    min-height: 0;
    padding: 24px;
  }

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

  .comparison-row > div:not(:first-child) {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .legal-hero {
    padding-top: 140px;
  }

  .legal-toc {
    position: static;
  }

  .cookie-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}
