@import url("/assets/fonts.css");
:root {
  --ink: #13283e;
  --muted: #596c7c;
  --paper: #f7f8f6;
  --line: #dfe5e4;
  --blue: #214fdf;
  --green: #0a7667;
  --mint: #def3e9;
  --orange: #ed7148;
  --radius: 18px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  line-height: 1.55;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #688cf4;
  outline-offset: 4px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 99;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.header {
  max-width: 1240px;
  margin: auto;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 26px;
  letter-spacing: -1.2px;
  font-weight: 800;
}
.brand img {
  object-fit: contain;
}
.brand-accent {
  font-weight: 500;
}
.brand-dot {
  color: var(--orange);
}
nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav-login {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 11px 19px;
  background: white;
}
.nav-login span {
  margin-left: 20px;
}
.wrap {
  max-width: 1160px;
  margin: auto;
  padding: 0 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0 90px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow:before {
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: var(--green);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(40px, 5.2vw, 65px);
  font-weight: 600;
  letter-spacing: -3.2px;
  line-height: 1.07;
  margin: 24px 0;
}
h1 em {
  font-style: normal;
  color: var(--blue);
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 510px;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: white;
  border-radius: 9px;
  padding: 14px 23px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  min-height: 50px;
}
.button:hover {
  background: #1941c0;
}
.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}
.button.secondary:hover {
  background: #f0f3f5;
}
.button.danger {
  background: #a2363b;
  border-color: #a2363b;
}
.button.text {
  padding: 6px 0;
  min-height: unset;
  background: transparent;
  border: 0;
  color: var(--blue);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 26px 0;
}
.micro {
  font-size: 14px;
  color: var(--muted);
}
.visual {
  position: relative;
  background: #e4eae9;
  border-radius: 24px;
  padding: 36px 25px 25px;
  transform: rotate(-1deg);
}
.visual:after {
  content: "";
  position: absolute;
  inset: -12px 16px 20px -12px;
  border: 1px solid #d4dcd7;
  border-radius: 24px;
  z-index: -1;
}
.product-frame {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 20px 60px #18314414;
  transform: rotate(1deg);
  overflow: hidden;
}
.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}
.mock-dots {
  letter-spacing: 4px;
  color: #b8c5cb;
}
.mock-body {
  padding: 25px;
}
.mock-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.mock-heading {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin: 7px 0 22px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eff2f3;
  padding: 16px 0;
  font-size: 14px;
}
.mock-row:first-of-type {
  border-top: 0;
}
.mock-icon {
  background: #edf2fa;
  border-radius: 9px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 18px;
}
.mock-row b {
  font-weight: 600;
}
.mock-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.mock-check {
  margin-left: auto;
  color: var(--green);
}
.visual-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 8px 0;
  font-size: 13px;
  color: #4c646a;
}
.visual-note:before {
  content: "↗";
  background: var(--ink);
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 16px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  margin-bottom: 86px;
  gap: 28px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.benefit > span {
  font-size: 22px;
  color: var(--green);
}
.benefit b {
  font-size: 15px;
  font-weight: 650;
}
.benefit p {
  font-size: 14px;
  color: var(--muted);
  margin: 3px 0 0;
}
.section {
  padding: 20px 0 75px;
  scroll-margin-top: 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}
.section-heading p {
  max-width: 410px;
  color: var(--muted);
  margin: 0;
}
h2 {
  font-size: 38px;
  letter-spacing: -1.6px;
  line-height: 1.18;
  margin-bottom: 14px;
  font-weight: 600;
}
h3 {
  font-weight: 650;
  letter-spacing: -0.5px;
  font-size: 22px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: 1px solid var(--line);
  background: white;
  padding: 29px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.plan-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 12px;
}
.featured .plan-tag,
.featured .micro {
  color: #b9c9d4;
}
.price {
  font-size: 52px;
  font-weight: 550;
  letter-spacing: -2px;
  line-height: 1.2;
  margin: 14px 0 4px;
}
.price span {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
}
.price-card ul {
  padding: 22px 0 0;
  margin: 24px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.price-card.featured ul {
  border-color: #3c5062;
}
.price-card li {
  font-size: 15px;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}
.price-card li:before {
  content: "✓";
  color: var(--green);
}
.featured li:before {
  color: #8ed9bd;
}
.price-card .button {
  margin-top: auto;
  gap: 12px;
}
.featured .button {
  background: #ecf5f0;
  color: var(--ink);
  border-color: #ecf5f0;
}
.pricing-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 21px;
  max-width: 870px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.step-num {
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 20px;
}
.steps h3 {
  font-size: 21px;
}
.steps p {
  color: var(--muted);
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 70px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.faq details:first-child {
  padding-top: 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq summary:after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  color: var(--muted);
  margin: 16px 28px 0 0;
}
.cta-panel {
  background: var(--mint);
  border-radius: 22px;
  padding: 42px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 80px;
}
.cta-panel h2 {
  font-size: 30px;
  margin-bottom: 8px;
}
.cta-panel p {
  color: var(--muted);
  margin: 0;
}
footer {
  max-width: 1240px;
  margin: auto;
  border-top: 1px solid var(--line);
  padding: 35px 40px 40px;
  color: var(--muted);
  font-size: 14px;
}
.footer-brand {
  color: var(--ink);
  font-size: 21px;
}
footer p {
  margin: 8px 0 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-bottom: 25px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
}
footer small {
  font-size: 12px;
}
.loading {
  padding: 100px 30px;
  text-align: center;
  color: var(--muted);
}
.page {
  max-width: 1040px;
  margin: 40px auto 90px;
}
.page.narrow {
  max-width: 720px;
}
.page-head {
  margin: 0 0 35px;
}
.page h1 {
  font-size: 44px;
  letter-spacing: -1.8px;
}
.page-head p {
  color: var(--muted);
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 22px;
}
.login-card {
  max-width: 500px;
  margin: 70px auto 100px;
  text-align: center;
  padding: 44px;
}
.login-card h1 {
  font-size: 34px;
  letter-spacing: -1.2px;
}
.login-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 23px;
}
.google-button {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  border: 1px solid #747775;
  border-radius: 4px;
  background: white;
  color: #1f1f1f;
  text-decoration: none;
  padding: 10px 18px;
  min-height: 44px;
  font-family: Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin: 20px 0;
}
.google-button img {
  height: 18px;
  width: 18px;
  margin: 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 23px;
}
.status {
  display: inline-block;
  background: #edf1f5;
  color: #506376;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}
.status.active {
  background: var(--mint);
  color: var(--green);
}
.status.bad {
  background: #fbe5e5;
  color: #9b353a;
}
.big-number {
  font-size: 43px;
  letter-spacing: -1.8px;
  font-weight: 600;
  margin: 16px 0 0;
}
.label {
  font-size: 14px;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--muted);
}
.split {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.notice {
  border: 1px solid #e3dbbe;
  background: #faf6e8;
  border-radius: 10px;
  padding: 15px 19px;
  color: #6b5930;
  font-size: 14px;
  margin: 20px 0;
}
.notice.ok {
  background: var(--mint);
  border-color: #bedace;
  color: #195d50;
}
.data-list {
  padding: 0;
  list-style: none;
}
.data-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.data-list li:last-child {
  border: 0;
}
.empty {
  padding: 28px 0;
  color: var(--muted);
}
.form {
  display: grid;
  gap: 19px;
}
.form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid #bbc8cd;
  background: white;
  color: var(--ink);
  font-size: 16px;
  min-height: 49px;
}
.form textarea {
  resize: vertical;
}
.form .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.form .check input {
  width: 19px;
  min-width: 19px;
  min-height: 19px;
  height: 19px;
  margin: 3px 0;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.legal h2 {
  font-size: 25px;
  letter-spacing: -0.5px;
  margin-top: 32px;
}
.legal p,
.legal li {
  color: #455a6c;
}
.legal li {
  margin-bottom: 10px;
}
.inline-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 20px;
}
.error {
  color: #a5363a;
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
}
.summary-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.summary-table td:last-child {
  text-align: right;
  font-weight: 600;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  max-width: 560px;
  width: calc(100% - 32px);
  color: var(--ink);
}
dialog::backdrop {
  background: #0a21397a;
}
.dialog-close {
  float: right;
  border: 0;
  background: transparent;
  font-size: 26px;
}
.dialog-actions {
  display: flex;
  justify-content: end;
  gap: 12px;
  margin-top: 25px;
}
dialog h2 {
  font-size: 28px;
  margin-right: 20px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 15px 23px;
  border-radius: 9px;
  box-shadow: 0 6px 30px #0002;
  max-width: min(90vw, 650px);
  z-index: 100;
  font-size: 15px;
}
[hidden] {
  display: none !important;
}
.receipt {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.8;
  background: #f0f3f3;
  padding: 20px;
  border-radius: 9px;
}
.code-input {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 24px !important;
  font-family: monospace;
}
.device-actions {
  display: flex;
  gap: 12px;
}
.add-shop summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
}
.add-shop[open] summary {
  margin-bottom: 18px;
}
.add-shop .form {
  max-width: 560px;
}
.muted {
  color: var(--muted);
}
@media (max-width: 1200px) {
  .wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page {
    margin-left: 40px;
    margin-right: 40px;
  }
  .page.narrow {
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  .hero {
    gap: 35px;
  }
  .price-card {
    padding: 25px;
  }
  .hero h1 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  .header {
    height: 82px;
    padding: 0 23px;
  }
  .header nav {
    gap: 15px;
  }
  .header nav > a:not(.nav-login) {
    display: none;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .nav-login {
    font-size: 14px;
    padding: 9px 13px;
  }
  .nav-login span {
    margin-left: 7px;
  }
  .wrap {
    padding: 0 23px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 0 48px;
    gap: 35px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.6px;
    max-width: 580px;
  }
  .hero .lead {
    font-size: 17px;
  }
  .visual {
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
  .benefits {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    gap: 22px;
  }
  .section {
    padding-bottom: 45px;
  }
  h2 {
    font-size: 32px;
    letter-spacing: -1.1px;
  }
  .section-heading {
    display: block;
  }
  .section-heading p {
    margin-top: 18px;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 27px;
  }
  .price-card ul {
    margin: 20px 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .step-num {
    margin-bottom: 13px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cta-panel {
    padding: 27px;
    display: block;
    margin-bottom: 40px;
  }
  .cta-panel .button {
    margin-top: 25px;
  }
  .cta-panel h2 {
    font-size: 28px;
  }
  footer {
    padding: 28px 23px;
  }
  .page {
    margin: 25px 23px 55px;
  }
  .page h1 {
    font-size: 35px;
  }
  .card {
    padding: 23px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .login-card {
    margin: 35px 23px 60px;
    padding: 32px 23px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .split {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .device-actions {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  .button,
  a {
    transition:
      background 0.16s,
      color 0.16s;
  }
}
@media print {
  .header,
  footer,
  .actions,
  button {
    display: none;
  }
  .page {
    margin: 0 !important;
    max-width: 100% !important;
  }
  .card {
    border: 0;
  }
}

.card,
.card > div,
.price-card,
.receipt {
  min-width: 0;
  overflow-wrap: anywhere;
}
.receipt {
  white-space: pre-wrap;
}
