:root {
  --dark: #1b211e;
  --panel: #292c2a;
  --ink: #1f2623;
  --heading: #637168;
  --copy: #4f5d56;
  --muted: #839089;
  --soft: #f8f8f8;
  --line: #e4e7e5;
  --green: #11c76f;
  --blue: #1264c6;
  --yellow: #fbbc05;
  --red: #ea4335;
  --shadow: 0 24px 70px rgba(27, 33, 30, 0.1);
  --radius: 15px;
  font-family: "Nexa", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--copy);
  background: #fff;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  background: #fff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

main {
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.section-white {
  background: #fff;
}

.section-soft {
  background: var(--soft);
}

.dark-section {
  background: var(--dark);
  color: #fff;
}

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

h1,
h2 {
  color: var(--heading);
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 800;
  text-wrap: balance;
}

p {
  line-height: 1.35;
  color: var(--copy);
}

.hero {
  min-height: 820px;
  padding: 60px 0 84px;
}

.brand-mark {
  position: relative;
  width: 86px;
  height: 80px;
  margin: 0 auto;
  isolation: isolate;
}

.brand-mark img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(25, 103, 194, 0.13));
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -10px -14px;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 76%, rgba(25, 103, 194, 0.16), transparent 45%),
    radial-gradient(circle at 34% 34%, rgba(251, 188, 5, 0.12), transparent 42%),
    radial-gradient(circle at 66% 30%, rgba(17, 199, 111, 0.13), transparent 40%);
  filter: blur(10px);
  opacity: 0;
}

.js .brand-mark {
  animation: logoReveal 980ms cubic-bezier(0.2, 0.9, 0.2, 1.08) both, logoFloat 5.2s ease-in-out 1.1s infinite;
}

.js .brand-mark::after {
  animation: logoHalo 2.8s ease-in-out 720ms infinite;
}

.brand-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(430px, calc(100vw - 42px));
  height: 72px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.brand-menu-left,
.brand-menu-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-menu-left {
  justify-content: flex-start;
  padding-right: 58px;
}

.brand-menu-right {
  justify-content: flex-end;
  padding-left: 58px;
}

.brand-menu a {
  color: #1f2623;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 260ms ease, color 180ms ease;
}

.brand-menu a:hover {
  color: var(--blue);
}

.brand-mark:hover,
.brand-mark:focus-within {
  z-index: 5;
}

.brand-mark:hover .brand-menu,
.brand-mark:focus-within .brand-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.brand-mark:hover .brand-menu a,
.brand-mark:focus-within .brand-menu a {
  opacity: 1;
  transform: translateY(0);
}

.brand-mark:hover .brand-menu a:nth-child(2),
.brand-mark:focus-within .brand-menu a:nth-child(2) {
  transition-delay: 45ms;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 525px);
  align-items: center;
  gap: clamp(48px, 10vw, 210px);
  padding-top: 88px;
}

.hero-copy p {
  max-width: 420px;
  margin: 34px 0 22px;
  color: var(--copy);
  font-size: 1.05rem;
}

.pill-button,
.choose {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 35px;
  border-radius: 46px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pill-button {
  min-width: 250px;
  padding: 3px 4px 3px 16px;
}

.pill-button .arrow,
.choose span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.15rem;
}

.pill-button.muted,
.choose.muted {
  background: var(--muted);
  color: #fff;
}

.pill-button.muted .arrow,
.choose.muted span {
  background: #fff;
  color: var(--muted);
}

.pill-button.dark {
  background: var(--dark);
  color: #fff;
}

.pill-button.dark .arrow {
  background: #fff;
  color: var(--dark);
}

.pill-button:hover,
.choose:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(27, 33, 30, 0.16);
}

.search-card {
  --rank-travel: 248px;
  --ghost-travel: -122px;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  width: min(525px, 100%);
  min-height: 528px;
  padding: 34px 34px 32px;
  border: 1px solid rgba(131, 144, 137, 0.18);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: floatCard 5.5s ease-in-out infinite;
  overflow: visible;
}

.google-glow {
  position: absolute;
  inset: -17px;
  z-index: -1;
  border-radius: 20px;
  background:
    radial-gradient(circle at 5% 8%, rgba(17, 199, 111, 0.55), transparent 26%),
    radial-gradient(circle at 96% 8%, rgba(18, 100, 198, 0.48), transparent 30%),
    radial-gradient(circle at 98% 92%, rgba(234, 67, 53, 0.5), transparent 26%),
    radial-gradient(circle at 6% 94%, rgba(251, 188, 5, 0.6), transparent 28%);
  filter: blur(12px);
  opacity: 0.78;
  animation: glowShift 4.8s ease-in-out infinite alternate;
}

.card-toolbar {
  position: absolute;
  top: -19px;
  left: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  height: 8px;
}

.card-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.95;
  animation: toolbarPulse 1.8s ease-in-out infinite;
}

.card-toolbar span:nth-child(1) {
  background: var(--green);
}

.card-toolbar span:nth-child(2) {
  background: var(--yellow);
  animation-delay: 160ms;
}

.card-toolbar span:nth-child(3) {
  background: var(--red);
  animation-delay: 320ms;
}

.search-input,
.result {
  border: 1px solid #e4e7e5;
  border-radius: 12px;
  background: #fff;
}

.search-input {
  order: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 58px;
  padding: 0 24px;
  color: #9aa5a0;
  font-size: 1rem;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.search-card.is-searching .search-input {
  border-color: rgba(66, 133, 244, 0.48);
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.12);
  transform: translateY(-2px);
}

.magnifier {
  width: 18px;
  height: 18px;
  border: 3px solid #4280ef;
  border-radius: 50%;
  position: relative;
}

.magnifier::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 3px;
  border-radius: 5px;
  background: #4280ef;
  transform: rotate(45deg);
}

.result {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 123px;
  padding: 22px 24px;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.search-card.is-searching .rank-one {
  border-color: rgba(17, 199, 111, 0.55);
}

.result.ghost span {
  width: 62px;
  height: 62px;
  border-radius: 7px;
  background: #ececec;
  position: relative;
  overflow: hidden;
}

.result.ghost {
  min-height: 104px;
}

.result.ghost div {
  display: grid;
  gap: 12px;
  width: 190px;
  margin-left: 28px;
}

.result.ghost b,
.result.ghost i {
  display: block;
  height: 15px;
  border-radius: 4px;
  background: #e5e5e5;
  position: relative;
  overflow: hidden;
}

.result.ghost span::after,
.result.ghost b::after,
.result.ghost i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: translateX(-120%);
  animation: shimmer 2.35s ease-in-out infinite;
}

.result.ghost i {
  width: 82%;
}

.ghost-1 {
  order: 3;
  animation: ghostOneMove 5.6s ease-in-out infinite;
}

.ghost-2 {
  order: 4;
  animation: ghostTwoMove 5.6s ease-in-out infinite;
}

.rank-one {
  order: 2;
  gap: 20px;
  min-height: 126px;
  animation: rankClimb 5.6s cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
  z-index: 2;
}

.rank-one strong {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  box-shadow: 0 14px 24px rgba(17, 199, 111, 0.22);
  animation: rankPulse 2.8s ease-in-out infinite;
}

.rank-one b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.rank-one small {
  display: inline-flex;
  align-items: center;
  color: #d6d6d6;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.stars {
  display: inline-block;
  background: linear-gradient(90deg, #fbbc05 0 60%, #d6d6d6 60% 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: starsFill 3.2s ease-in-out infinite;
}

.rank-one em {
  color: var(--ink);
  font-style: normal;
  margin-left: 12px;
}

.rank-tags {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  min-width: 260px;
}

.rank-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e9f8ee;
  color: #0f9d58;
  font-size: 0.72rem;
  font-weight: 800;
}

.rank-tags span:last-child {
  background: #e8f0fe;
  color: #1a73e8;
}

.feature-stage {
  padding: 112px 0 105px;
}

.feature-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 950px);
  gap: 28px;
  align-items: center;
  min-width: 0;
}

.feature-tabs {
  display: grid;
  gap: 14px;
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 49px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #282c2a;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  transition: transform 200ms ease, background 200ms ease;
}

.feature-tab.active {
  background: var(--green);
}

.feature-tab.red.active {
  background: var(--red);
}

.feature-tab:hover {
  transform: translateX(4px);
}

.material-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.material-icon.dashboard {
  color: var(--green);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 13h8V3H3v10Zm0 8h8v-6H3v6Zm10 0h8V11h-8v10Zm0-18v6h8V3h-8Z'/%3E%3C/svg%3E");
}

.material-icon.query {
  color: #4285f4;
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m19.6 21-6.3-6.3a7 7 0 1 1 1.4-1.4l6.3 6.3-1.4 1.4ZM9 14a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z'/%3E%3C/svg%3E");
}

.material-icon.reviews {
  color: var(--yellow);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 17.3 6.2 3.7-1.7-7 5.5-4.7-7.2-.6L12 2 9.2 8.7 2 9.3 7.5 14l-1.7 7 6.2-3.7Z'/%3E%3C/svg%3E");
}

.material-icon.analytics {
  color: #fff;
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 19h16v2H4v-2Zm1-3h3V8H5v8Zm5 0h3V3h-3v13Zm5 0h3v-6h-3v6Z'/%3E%3C/svg%3E");
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 440px);
  gap: 46px;
  align-items: center;
  min-height: 330px;
  padding: 35px 27px;
  border-radius: 15px;
  background: var(--panel);
  overflow: hidden;
  min-width: 0;
}

.feature-text {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.feature-text h2 {
  max-width: 390px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.95;
  overflow-wrap: break-word;
}

.feature-text p {
  max-width: 510px;
  color: #eef1ef;
  font-size: 1rem;
  overflow-wrap: break-word;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chips span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 2px 13px;
  border: 1px solid #939594;
  border-radius: 51px;
  color: #fff;
  font-size: 0.9rem;
}

.feature-media {
  height: 280px;
  border-radius: 11px;
  overflow: hidden;
  background: #202421;
  min-width: 0;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 300ms ease, transform 500ms ease;
}

.feature-progress {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 54px;
}

.feature-progress span {
  width: 55px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.feature-progress .active {
  background: var(--red);
}

.partners {
  padding: 100px 0 118px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: center;
}

.logo-row div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.logo-row span {
  width: 65px;
  height: 65px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(17, 199, 111, 0.24), rgba(18, 100, 198, 0.16));
  box-shadow: inset 0 0 0 1px rgba(131, 144, 137, 0.12);
}

.logo-row div:nth-child(2) span {
  background: linear-gradient(135deg, rgba(251, 188, 5, 0.28), rgba(234, 67, 53, 0.12));
}

.logo-row div:nth-child(3) span {
  background: linear-gradient(135deg, rgba(18, 100, 198, 0.24), rgba(17, 199, 111, 0.12));
}

.logo-row div:nth-child(4) span {
  background: linear-gradient(135deg, rgba(17, 199, 111, 0.24), rgba(251, 188, 5, 0.16));
}

.logo-row b {
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 0.94;
}

.partners hr {
  border: 0;
  border-top: 1px solid #d8ddda;
  margin: 94px 0 77px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.benefit-card {
  min-height: 315px;
  padding: 41px 38px 36px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(27, 33, 30, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(27, 33, 30, 0.09);
}

.benefit-card h3 {
  margin-top: 76px;
  color: var(--muted);
  font-size: 1.05rem;
}

.benefit-card p {
  margin-top: 18px;
  color: var(--copy);
  font-size: 0.95rem;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
}

.benefit-icon.google-style {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
}

.benefit-icon.google-style::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.benefit-icon.automation {
  color: var(--green);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6V3L8 7l4 4V8a4 4 0 0 1 4 4 4 4 0 0 1-.7 2.3l1.5 1.5A6 6 0 0 0 12 6Zm-4.8 2.2A6 6 0 0 0 12 18v3l4-4-4-4v3a4 4 0 0 1-4-4 4 4 0 0 1 .7-2.3L7.2 8.2Z'/%3E%3C/svg%3E");
}

.benefit-icon.shield {
  color: #4285f4;
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5.5v6.1c0 5.1 3.4 9.9 8 11.4 4.6-1.5 8-6.3 8-11.4V5.5L12 2Zm0 2.2 6 2.7v4.7c0 4-2.5 7.8-6 9.1-3.5-1.3-6-5.1-6-9.1V6.9l6-2.7Z'/%3E%3C/svg%3E");
}

.benefit-icon.insight {
  color: var(--yellow);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 21h6v-2H9v2Zm3-19a7 7 0 0 0-4 12.7V17h8v-2.3A7 7 0 0 0 12 2Zm2.8 11.2-.8.6V15h-4v-1.2l-.8-.6A5 5 0 1 1 14.8 13.2Z'/%3E%3C/svg%3E");
}

.benefit-icon.api {
  color: var(--red);
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7h4v2H7a3 3 0 0 0 0 6h4v2H7A5 5 0 0 1 7 7Zm2 6h6v-2H9v2Zm4-6h4a5 5 0 0 1 0 10h-4v-2h4a3 3 0 0 0 0-6h-4V7Z'/%3E%3C/svg%3E");
}

.growth {
  padding: 111px 0 105px;
}

.growth .narrow p {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--copy);
}

.metrics-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  width: min(1000px, calc(100% - 40px));
  min-height: 200px;
  margin: 115px auto 87px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(27, 33, 30, 0.08);
  overflow: hidden;
}

.metric {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 15px;
  min-width: 0;
  padding: 20px 12px;
  border-right: 1px solid rgba(228, 231, 229, 0.8);
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--green);
  transition: transform 260ms ease, filter 260ms ease;
}

.metric-icon svg {
  width: 56px;
  height: 56px;
  overflow: visible;
  fill: currentColor;
  filter: drop-shadow(0 12px 18px rgba(27, 33, 30, 0.1));
}

.metric:hover .metric-icon {
  transform: translateY(-5px) scale(1.04);
  filter: saturate(1.08);
}

.metric-icon.green {
  color: var(--green);
}

.metric-icon.blue {
  color: var(--blue);
}

.metric-icon.red {
  color: var(--red);
}

.metric-icon.red circle {
  fill: #fff;
}

.metric-icon.yellow {
  color: var(--yellow);
}

.metric b {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.05;
}

.metric.big strong {
  color: var(--muted);
  font-size: 4rem;
  line-height: 0.9;
}

.metric.big small {
  color: var(--green);
  font-weight: 800;
}

.ai-line {
  min-height: 620px;
  padding: 106px 0 118px;
  overflow: hidden;
}

.ai-line h2 {
  color: var(--heading);
}

.ai-line .center p {
  margin-top: 48px;
  color: var(--copy);
  font-size: 1.3rem;
}

.line-wrap {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  align-items: center;
  gap: 30px;
  width: min(1280px, calc(100% - 40px));
  margin: 62px auto 0;
}

.line-wrap span {
  color: var(--muted);
  font-size: 1.65rem;
  font-weight: 800;
}

.smart-line {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #21c3c7, #4280ef);
  box-shadow: 0 0 18px rgba(18, 100, 198, 0.3);
}

.smart-line i {
  position: absolute;
  inset: -3px auto -3px 0;
  width: 90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(7px);
  animation: scan 3.8s ease-in-out infinite;
}

.story {
  padding: 152px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 575px) minmax(360px, 1fr);
  align-items: center;
  gap: 128px;
}

.story-image {
  width: 100%;
  height: 535px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.story-copy {
  display: grid;
  gap: 68px;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.story.is-changing .story-image {
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
}

.story.is-changing .story-copy {
  opacity: 0;
  transform: translateX(18px);
}

.story-copy p {
  max-width: 650px;
  color: #fff;
  font-size: 1.45rem;
}

.client-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}

.client-line b,
.client-line span {
  display: block;
}

.client-line span,
.client-logo {
  color: rgba(255, 255, 255, 0.82);
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.client-logo span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e9ecea;
}

.story-stat {
  display: flex;
  align-items: center;
  gap: 17px;
}

.story-stat strong {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1;
}

.story-stat span {
  color: #fff;
}

.mini-progress {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.mini-progress span,
.mini-progress i {
  width: 55px;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 240ms ease, transform 240ms ease;
}

.mini-progress .active {
  background: var(--green);
  transform: scaleX(1.08);
}

.trust {
  padding: 148px 0 183px;
}

.trust-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 100px;
  align-items: center;
  min-height: 400px;
  padding: 76px 78px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(27, 33, 30, 0.04);
}

.trust-card::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 38px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
}

.trust-card h2 {
  max-width: 575px;
}

.trust-card p {
  max-width: 400px;
  margin: 42px 0 26px;
  color: var(--muted);
}

.score {
  display: grid;
  place-items: center;
  gap: 26px;
  min-height: 270px;
  border-left: 1px solid #d7dcda;
  text-align: center;
}

.score strong {
  color: var(--muted);
  font-size: 5.2rem;
  line-height: 0.9;
}

.score span {
  color: var(--yellow);
  font-size: 2rem;
  letter-spacing: 0;
}

.score small {
  color: var(--muted);
}

.plans {
  padding: 132px 0 116px;
}

.plans .narrow p {
  margin-top: 32px;
  color: var(--copy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: end;
  margin-top: 92px;
}

.price-card {
  position: relative;
  display: grid;
  min-height: 627px;
  padding: 50px 52px 56px;
  border-radius: 15px;
  background: #f9f9f9;
  color: var(--muted);
}

.price-card.featured {
  min-height: 676px;
  padding-top: 96px;
}

.price-card.dark {
  background: var(--dark);
  color: #f9f9f9;
}

.price-card h3 {
  color: inherit;
  font-size: 1.5rem;
  text-align: center;
}

.price-card > p {
  min-height: 48px;
  margin-top: 24px;
  text-align: center;
}

.badge {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  height: 49px;
  place-items: center;
  border-radius: 15px 15px 0 0;
  background: var(--green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 18px;
  margin: 58px 0 44px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: inherit;
  font-weight: 800;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: currentColor;
}

.price-card li small {
  display: block;
  margin-top: 3px;
  color: #afb8b3;
  font-weight: 400;
}

.price-card .blue {
  color: #4280ef;
}

.price-card .green {
  color: var(--green);
}

.choose {
  align-self: end;
  justify-self: center;
  min-width: 194px;
  padding: 3px 4px 3px 15px;
}

.choose.green {
  background: var(--green);
  color: #fff;
}

.choose.green span,
.choose.white span {
  background: #fff;
  color: var(--green);
}

.choose.white {
  background: #fff;
  color: var(--dark);
}

.choose.white span {
  background: var(--dark);
  color: #fff;
}

.final-cta {
  padding: 220px 0 264px;
}

.final-cta p {
  max-width: 670px;
  margin: 42px auto 72px;
  color: var(--copy);
}

.footer {
  padding: 0 0 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 1fr));
  gap: 70px;
  align-items: start;
}

.footer-logo {
  width: min(300px, 100%);
  height: auto;
}

.google-api-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 22px;
  padding: 9px 13px;
  border: 1px solid #dce3df;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(27, 33, 30, 0.06);
}

.google-api-badge b {
  font-size: 0.95rem;
}

.api-glyph {
  position: relative;
  display: grid;
  width: 25px;
  height: 25px;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.api-glyph i {
  border-radius: 4px;
}

.api-glyph i:nth-child(1) {
  background: #4285f4;
}

.api-glyph i:nth-child(2) {
  background: #ea4335;
}

.api-glyph i:nth-child(3) {
  background: #fbbc05;
}

.api-glyph i:nth-child(4) {
  background: #34a853;
}

.footer-brand p {
  margin-top: 28px;
  color: var(--ink);
}

.footer nav {
  display: grid;
  gap: 18px;
}

.footer h3 {
  color: var(--ink);
  font-size: 1rem;
}

.footer a,
.footer p {
  color: var(--ink);
  font-size: 0.95rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.socials {
  display: flex;
  gap: 11px;
}

.socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 98px;
  padding-top: 45px;
  border-top: 1px solid #9ca7a2;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.018);
  }
}

@keyframes logoHalo {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.95);
  }
  45% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes glowShift {
  from {
    transform: translate3d(-8px, -5px, 0) scale(0.98);
  }
  to {
    transform: translate3d(8px, 6px, 0) scale(1.02);
  }
}

@keyframes toolbarPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  52%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes rankClimb {
  0%,
  15% {
    opacity: 0.72;
    transform: translateY(var(--rank-travel)) scale(0.94);
    border-color: #e4e7e5;
    box-shadow: none;
  }
  38%,
  72% {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(17, 199, 111, 0.42);
    box-shadow: 0 16px 30px rgba(17, 199, 111, 0.1);
  }
  100% {
    opacity: 0.72;
    transform: translateY(var(--rank-travel)) scale(0.94);
    border-color: #e4e7e5;
    box-shadow: none;
  }
}

@keyframes ghostOneMove {
  0%,
  15% {
    opacity: 1;
    transform: translateY(var(--ghost-travel));
  }
  38%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(var(--ghost-travel));
  }
}

@keyframes ghostTwoMove {
  0%,
  15% {
    opacity: 1;
    transform: translateY(var(--ghost-travel));
  }
  38%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(var(--ghost-travel));
  }
}

@keyframes rankPulse {
  0%,
  100% {
    box-shadow: 0 14px 24px rgba(17, 199, 111, 0.22);
  }
  50% {
    box-shadow: 0 18px 38px rgba(17, 199, 111, 0.36);
  }
}

@keyframes starsFill {
  0%,
  100% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 135% 100%;
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(calc(100vw - 360px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-shell,
  .feature-panel,
  .story-grid,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .feature-progress {
    grid-column: 1;
    justify-content: center;
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .score {
    border-left: 0;
    border-top: 1px solid #d7dcda;
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  h1,
  h2 {
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero {
    min-height: auto;
    padding: 34px 0 58px;
  }

  .brand-mark {
    display: flex;
    width: min(340px, calc(100vw - 36px));
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .brand-mark img {
    width: 74px;
    height: 70px;
  }

  .brand-menu {
    position: static;
    z-index: 1;
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    gap: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .brand-menu-left,
  .brand-menu-right {
    gap: 18px;
    padding: 0;
  }

  .brand-menu a {
    opacity: 1;
    transform: none;
    color: var(--copy);
    font-size: 0.78rem;
  }

  .brand-mark:hover .brand-menu,
  .brand-mark:focus-within .brand-menu {
    transform: none;
  }

  .hero-grid {
    gap: 34px;
    justify-items: center;
    padding-top: 48px;
    min-width: 0;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-copy h1 {
    width: min(326px, 100%);
    max-width: 326px;
    font-size: clamp(2.2rem, 9.2vw, 2.72rem);
    line-height: 1.07;
    overflow-wrap: break-word;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-copy p {
    width: min(326px, 100%);
    max-width: 326px;
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .search-card {
    --rank-travel: 188px;
    --ghost-travel: -94px;
    display: block;
    width: min(326px, calc(100vw - 36px));
    max-width: min(326px, calc(100vw - 36px));
    height: 432px;
    justify-self: center;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .google-glow {
    inset: -5px;
    filter: blur(10px);
    opacity: 0.7;
  }

  .card-toolbar {
    top: 12px;
    left: 22px;
  }

  .search-input {
    position: absolute;
    inset: 42px 18px auto;
    height: 58px;
    padding-inline: 18px;
    font-size: 0.93rem;
  }

  .search-input span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .result {
    position: absolute;
    left: 18px;
    right: 18px;
    min-height: 0;
    border-radius: 12px;
  }

  .rank-one {
    top: 118px;
    height: 112px;
    gap: 14px;
    padding: 14px;
  }

  .ghost-1 {
    top: 244px;
    height: 82px;
  }

  .ghost-2 {
    top: 338px;
    height: 82px;
  }

  .result.ghost div {
    width: min(160px, 45vw);
    margin-left: 18px;
    gap: 9px;
  }

  .result.ghost {
    min-height: 0;
    padding: 12px 16px;
  }

  .result.ghost span {
    width: 54px;
    height: 54px;
  }

  .result.ghost b,
  .result.ghost i {
    height: 12px;
  }

  .rank-one strong {
    width: 58px;
    height: 58px;
    font-size: 2.3rem;
  }

  .rank-one b {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .rank-one small {
    font-size: 0.9rem;
  }

  .rank-tags {
    min-width: 0;
    gap: 8px;
    margin-top: 9px;
  }

  .rank-tags span {
    min-height: 20px;
    padding-inline: 8px;
    font-size: 0.68rem;
  }

  .feature-stage {
    padding: 64px 0 70px;
  }

  .feature-shell {
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(326px, calc(100vw - 36px));
    max-width: min(326px, calc(100vw - 36px));
    justify-self: center;
    margin-inline: 0;
  }

  .feature-tab {
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    height: 78px;
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    line-height: 1.05;
  }

  .feature-tab:hover {
    transform: translateY(-2px);
  }

  .feature-panel {
    gap: 24px;
    width: min(326px, calc(100vw - 36px));
    max-width: min(326px, calc(100vw - 36px));
    min-width: 0;
    justify-self: center;
    margin-inline: 0;
    padding: 24px 22px 22px;
    border-radius: 18px;
  }

  .feature-text h2,
  .feature-text p {
    max-width: 100%;
  }

  .feature-text h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.5rem);
  }

  .feature-media {
    height: 205px;
    border-radius: 14px;
  }

  .feature-progress {
    margin-top: 18px;
  }

  .logo-row,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .partners,
  .growth,
  .trust,
  .plans,
  .final-cta {
    padding-block: 68px;
  }

  .logo-row {
    gap: 18px;
  }

  .logo-row div {
    justify-content: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(27, 33, 30, 0.04);
  }

  .logo-row span {
    width: 44px;
    height: 44px;
  }

  .logo-row b {
    font-size: 1.16rem;
    line-height: 1;
  }

  .partners hr {
    margin: 50px 0;
  }

  .benefit-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px 18px;
    align-items: start;
    min-height: 0;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .benefit-card h3 {
    margin-top: 4px;
  }

  .benefit-card p {
    grid-column: 2;
    margin-top: 0;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .growth .narrow p {
    max-width: 342px;
    margin-top: 22px;
  }

  .metrics-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(326px, calc(100vw - 36px));
    min-height: 0;
    margin: 46px auto 40px;
    border-radius: 18px;
  }

  .metric {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid rgba(228, 231, 229, 0.8);
    padding: 18px 10px;
  }

  .metric:nth-child(odd) {
    border-right: 1px solid rgba(228, 231, 229, 0.8);
  }

  .metric:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
    min-height: 128px;
  }

  .metric-icon {
    width: 56px;
    height: 56px;
  }

  .metric-icon svg {
    width: 44px;
    height: 44px;
  }

  .metric b {
    font-size: 0.96rem;
  }

  .metric.big strong {
    font-size: 3.3rem;
  }

  .ai-line {
    min-height: 0;
    padding: 64px 0 74px;
  }

  .ai-line .center p {
    margin-top: 32px;
    font-size: 1.05rem;
  }

  .line-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    width: min(326px, calc(100vw - 36px));
  }

  .line-wrap span {
    font-size: 1.2rem;
  }

  .story {
    padding: 74px 0;
  }

  .story-grid {
    gap: 28px;
    min-width: 0;
    overflow: hidden;
  }

  .story-image {
    width: min(326px, calc(100vw - 36px));
    height: auto;
    aspect-ratio: 1.45;
    justify-self: center;
    border-radius: 18px;
  }

  .story-copy {
    width: min(326px, calc(100vw - 36px));
    justify-self: center;
    gap: 26px;
  }

  .story-copy p {
    font-size: 1.08rem;
    line-height: 1.32;
  }

  .client-line,
  .story-stat {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-stat {
    gap: 8px;
  }

  .story-stat strong {
    font-size: 3rem;
  }

  .mini-progress {
    justify-content: flex-start;
  }

  .trust-card {
    gap: 40px;
    width: min(326px, calc(100vw - 36px));
    padding: 34px 24px;
    border-radius: 18px;
  }

  .price-card,
  .price-card.featured {
    min-height: auto;
    padding: 36px 28px 34px;
    border-radius: 18px;
  }

  .footer-bottom {
    margin-top: 48px;
  }
}

@media (max-width: 420px) {
  .pill-button {
    min-width: 0;
    width: 100%;
  }

  .logo-row div {
    justify-content: flex-start;
  }

  .feature-tab {
    font-size: 0.78rem;
  }

  .price-card {
    padding-inline: 28px;
  }
}

@media (max-width: 360px) {
  .container,
  .narrow {
    padding-inline: 14px;
  }

  .brand-menu {
    gap: 12px;
  }

  .brand-menu-left,
  .brand-menu-right {
    gap: 12px;
  }

  .brand-menu a {
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: 2.05rem;
  }

  .search-card {
    --rank-travel: 174px;
    --ghost-travel: -88px;
    width: min(326px, calc(100vw - 24px));
    height: 408px;
  }

  .search-input {
    inset-inline: 14px;
  }

  .result {
    left: 14px;
    right: 14px;
  }

  .rank-one {
    height: 108px;
    gap: 11px;
    padding: 12px;
  }

  .rank-one strong {
    width: 52px;
    height: 52px;
    font-size: 2.05rem;
  }

  .rank-one b {
    font-size: 0.94rem;
  }

  .rank-one small {
    font-size: 0.82rem;
  }

  .rank-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    width: max-content;
  }

  .rank-tags span {
    justify-content: center;
  }

  .ghost-1 {
    top: 238px;
  }

  .ghost-2 {
    top: 326px;
  }

  .feature-tabs,
  .feature-panel,
  .metrics-card,
  .line-wrap,
  .story-image,
  .story-copy,
  .trust-card {
    width: min(326px, calc(100vw - 24px));
    max-width: min(326px, calc(100vw - 24px));
  }

  .feature-tab {
    padding-inline: 11px;
  }
}
