:root {
  --bg: #f3f4ef;
  --surface: #e6ebe2;
  --ink: #20251f;
  --muted: #626b61;
  --green: #52604e;
  --sage: #cbd8c6;
  --warm: #d9c8b7;
  --white: #fff;
  --line: rgba(32, 37, 31, 0.16);
  --page: min(1400px, calc(100vw - 72px));
  --sans: "Manrope", sans-serif;
  --serif: "Newsreader", serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
.skip {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 90;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #9a5f45;
  outline-offset: 3px;
}
.kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.13em;
}
.topbar {
  height: 78px;
  padding: 0 max(36px, calc((100vw - 1400px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  background: rgba(31, 38, 31, 0.97);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.logo {
  width: 100px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.logo img,
.footer img {
  width: 102px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.topbar nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}
.topbar nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.2s;
}
.topbar nav a:hover {
  color: #fff;
}
.topbar nav a[aria-current="page"] {
  color: #fff;
}
.topbar nav a[aria-current="page"]::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 7px auto 0;
  display: block;
  background: var(--sage);
  border-radius: 50%;
}
.top-action {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}
.top-action span {
  margin-left: 16px;
}
.menu {
  display: none;
}
.hero {
  width: 100%;
  margin: 0;
  padding: clamp(60px, 6vw, 92px) max(36px, calc((100vw - 1400px) / 2))
    clamp(52px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
  color: var(--ink);
  background: var(--bg);
}
.hero-copy {
  max-width: 660px;
}
.hero-title {
  max-width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-title h1 {
  max-width: 100%;
  margin: 20px 0 0;
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
}
.hero-title h1 em {
  margin-left: 0;
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.72em;
  font-weight: 400;
  line-height: 0.98;
}
.hero-intro {
  width: min(480px, 100%);
  max-width: 100%;
  margin: 42px 0 55px;
  position: relative;
  z-index: 2;
}
.hero-intro p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}
.hero-intro a {
  margin-top: 20px;
  padding-bottom: 5px;
  display: inline-flex;
  gap: 30px;
  border-bottom: 1px solid rgba(32, 37, 31, 0.48);
  font-size: 13px;
  font-weight: 700;
}
.hero-monitor-stage {
  position: relative;
  align-self: center;
}
.hero-monitor-stage > p {
  margin: 18px 4px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-monitor-stage > p span {
  width: 6px;
  height: 6px;
  background: #6e8a67;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(110, 138, 103, 0.12);
}
.hero .living-window {
  grid-column: 1 / -1;
}
.living-window {
  min-height: 580px;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  background: var(--sage);
  border-radius: 4px 80px 4px 4px;
}
.live-dot {
  font: 500 9px var(--mono);
  letter-spacing: 0.12em;
}
.live-dot:before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  display: inline-block;
  background: #68865f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(104, 134, 95, 0.13);
}
.window-copy h2 {
  margin: 34px 0 48px;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.window-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.window-tabs button {
  min-height: 44px;
  padding: 0 17px;
  background: none;
  border: 1px solid rgba(32, 37, 31, 0.2);
  border-radius: 30px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.window-tabs button:hover {
  color: var(--ink);
  border-color: rgba(32, 37, 31, 0.4);
  transform: translateY(-1px);
}
.window-tabs button[aria-selected="true"] {
  padding: 0 19px;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  font-weight: 700;
}
.window-tabs button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(82, 96, 78, 0.75);
}
.window-copy > p:last-child {
  min-height: 54px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.app-stage {
  position: relative;
  padding: 18px 0 28px;
}
.desktop-monitor {
  width: 100%;
  position: relative;
  padding-bottom: 8px;
  filter: drop-shadow(0 36px 28px rgba(35, 44, 34, 0.2));
}
.monitor-shell {
  width: 100%;
  margin: auto;
  padding: 12px 12px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #303432, #111412 72%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -2px 5px rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.45);
}
.monitor-shell::after {
  content: "";
  width: 30%;
  height: 140%;
  position: absolute;
  top: -35%;
  left: -24%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.055),
    transparent
  );
  transform: rotate(18deg);
}
.monitor-camera {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: calc(50% - 2.5px);
  z-index: 3;
  background: #263a36;
  border: 1px solid #070808;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(83, 126, 116, 0.6);
}
.monitor-neck {
  width: 14%;
  height: 76px;
  margin: -1px auto 0;
  position: relative;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #969a98,
    #eceeec 35%,
    #b7bab8 74%,
    #8a8e8b
  );
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.monitor-neck i {
  width: 58%;
  height: 100%;
  margin: auto;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32));
}
.monitor-foot {
  width: 42%;
  height: 13px;
  margin: -1px auto 0;
  background: linear-gradient(180deg, #eef0ee, #aaaead 60%, #7c807e);
  border-radius: 50% 50% 18px 18px / 55% 55% 10px 10px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 10px rgba(35, 44, 34, 0.16);
}
.hero-monitor-stage .hero-floating-phone {
  width: 14%;
  min-width: 86px;
  padding: 4px;
  position: absolute;
  left: -2.5%;
  bottom: 58px;
  z-index: 6;
  border-width: 1px;
  border-radius: 24px;
  box-shadow:
    0 28px 32px rgba(22, 28, 22, 0.24),
    0 8px 12px rgba(22, 28, 22, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: hero-phone-float 5.8s ease-in-out infinite;
  will-change: transform;
}
.hero-monitor-stage .hero-floating-phone::after {
  inset: 4px;
  border-radius: 19px;
}
.hero-monitor-stage .hero-floating-phone .phone-top {
  width: 38%;
  height: 10px;
  top: 6px;
  left: 31%;
  border-radius: 8px;
}
.hero-monitor-stage .hero-floating-phone .phone-top i {
  width: 2px;
  height: 2px;
  top: 4px;
  right: 5px;
}
.hero-monitor-stage .hero-floating-phone video {
  aspect-ratio: 1170 / 2532;
  border-radius: 19px;
}
.macbook {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 34px 30px rgba(35, 44, 34, 0.2));
}
.macbook-display {
  width: 92%;
  margin: auto;
  padding: 13px 13px 16px;
  position: relative;
  background: linear-gradient(145deg, #232625, #080909);
  border: 1px solid #4b4e4c;
  border-radius: 16px 16px 5px 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -2px 5px rgba(255, 255, 255, 0.04);
}
.macbook-camera {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: calc(50% - 2.5px);
  z-index: 3;
  background: #263a36;
  border: 1px solid #070808;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(83, 126, 116, 0.6);
}
.macbook-base {
  width: 100%;
  height: 18px;
  margin-top: -1px;
  position: relative;
  background: linear-gradient(180deg, #e6e7e7 0%, #b8babb 48%, #8e9091 100%);
  border-radius: 2px 2px 50% 50% / 2px 2px 13px 13px;
  box-shadow: inset 0 1px 0 #fff;
}
.macbook-base::after {
  content: "";
  width: 102%;
  height: 5px;
  position: absolute;
  left: -1%;
  bottom: -1px;
  background: linear-gradient(
    90deg,
    #8f9192,
    #d7d8d8 12%,
    #dadbdb 88%,
    #8f9192
  );
  border-radius: 0 0 50% 50%;
}
.macbook-base i {
  width: 15%;
  height: 6px;
  position: absolute;
  top: 0;
  left: 42.5%;
  z-index: 2;
  background: #a9abad;
  border-radius: 0 0 7px 7px;
}
.app-frame {
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
}
.app-frame header {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f6f3;
  border-bottom: 1px solid #ddd;
}
.app-frame header i {
  width: 7px;
  height: 7px;
  background: #c8ccc6;
  border-radius: 50%;
}
.app-frame header span {
  margin: auto;
  font: 400 8px var(--mono);
}
.app-frame header b {
  font: 500 8px var(--mono);
  color: #788b72;
}
.app-frame video {
  width: 100%;
  aspect-ratio: 1442 / 834;
  object-fit: contain;
  background: #f5f2ed;
  opacity: 1;
  transition: opacity 0.22s ease;
}
.app-frame video.is-changing {
  opacity: 0;
}
.playline {
  height: 3px;
  background: #eee;
}
.playline i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
}
.playline.run i {
  animation: play var(--scene-duration, 16.9s) linear infinite;
}
.hero-monitor-stage .playline.run i {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.tension {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.tension-photo {
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.tension-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tension-photo span {
  padding: 9px 12px;
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  font: 500 9px var(--mono);
}
.tension-copy {
  padding: clamp(55px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tension-copy h2 {
  margin: 24px 0 45px;
  font: 400 clamp(43px, 5vw, 76px) / 0.98 var(--serif);
  letter-spacing: -0.03em;
}
.pain-list {
  border-top: 1px solid var(--line);
}
.pain-list article {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.pain-list h3 {
  margin: 0;
  font-size: 16px;
}
.pain-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.relief {
  padding: clamp(70px, 8vw, 112px) max(36px, calc((100vw - 1400px) / 2));
  text-align: center;
}
.relief blockquote {
  max-width: 1100px;
  margin: 32px auto 50px;
  font: 400 clamp(48px, 7vw, 105px) / 0.93 var(--serif);
  letter-spacing: -0.04em;
}
.view-home .living-window {
  width: var(--page);
  margin: 0 auto clamp(70px, 8vw, 110px);
}
.view-home .system,
.view-home .telegram {
  display: none;
}
.view-sistema main > :not(.system),
.view-telegram main > :not(.telegram),
.view-planos main > :not(.plans) {
  display: none;
}
.view-sistema .system,
.view-telegram .telegram,
.view-planos .plans {
  min-height: calc(100vh - 78px);
}
.view-sistema .system,
.view-planos .plans {
  padding-top: clamp(70px, 7vw, 105px);
}
.page-gateways {
  padding: 0 max(36px, calc((100vw - 1400px) / 2)) clamp(75px, 8vw, 115px);
}
.page-gateways > header {
  max-width: 760px;
  margin-bottom: 42px;
}
.page-gateways > header h2 {
  margin: 20px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.page-gateways > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.page-gateways > div > a {
  min-height: 320px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: var(--surface);
  border-radius: 4px 55px 4px 4px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.page-gateways > div > a:last-child {
  background: var(--sage);
  border-radius: 55px 4px 4px;
}
.page-gateways > div > a:hover {
  transform: translateY(-5px);
}
.page-gateways span {
  font: 500 9px var(--mono);
  letter-spacing: 0.11em;
  color: var(--green);
}
.page-gateways h3 {
  max-width: 520px;
  margin: 28px 0 13px;
  font: 400 clamp(34px, 3.5vw, 54px) / 1 var(--serif);
  letter-spacing: -0.035em;
}
.page-gateways p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.55;
}
.page-gateways > div > a:first-child h3,
.page-gateways > div > a:first-child > p {
  max-width: calc(100% - 142px);
}
.page-gateways .gateway-floating-phone {
  width: clamp(90px, 7.7vw, 110px);
  padding: 3px;
  position: absolute;
  top: 47%;
  right: 7%;
  z-index: 2;
  border-width: 1px;
  border-radius: 20px;
  box-shadow:
    0 23px 28px rgba(32, 37, 31, 0.2),
    0 6px 10px rgba(32, 37, 31, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: gateway-phone-float 6.4s ease-in-out infinite;
  will-change: transform;
}
.page-gateways .gateway-floating-phone::after {
  inset: 3px;
  border-radius: 16px;
}
.page-gateways .gateway-floating-phone .phone-top {
  width: 38%;
  height: 8px;
  top: 5px;
  left: 31%;
  border-radius: 7px;
}
.page-gateways .gateway-floating-phone .phone-top i {
  width: 2px;
  height: 2px;
  top: 3px;
  right: 4px;
}
.page-gateways .gateway-floating-phone video {
  aspect-ratio: 1170 / 2532;
  border-radius: 16px;
}
.page-gateways b {
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}
.agenda-proof {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface);
}
.agenda-proof figure {
  min-height: 680px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.agenda-proof figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(23, 32, 25, 0.38));
}
.agenda-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.agenda-proof figcaption {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 2;
  color: #fff;
  font: 500 9px var(--mono);
  letter-spacing: 0.11em;
}
.agenda-proof > div {
  padding: clamp(55px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.agenda-proof h2 {
  margin: 26px 0 30px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.91;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.agenda-proof h2 em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
}
.agenda-proof > div > p:not(.kicker) {
  max-width: 530px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.agenda-proof a {
  margin-top: 26px;
  padding-bottom: 6px;
  display: inline-flex;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.routine-strip {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  font-size: 13px;
}
.routine-strip span {
  display: flex;
  gap: 16px;
}
.routine-strip b {
  font: 500 10px var(--mono);
  color: var(--green);
}
.routine-strip i {
  font-style: normal;
  color: var(--muted);
}
.system {
  padding: clamp(75px, 8vw, 115px) max(36px, calc((100vw - 1400px) / 2));
  background: #fff;
}
.section-head {
  max-width: 970px;
}
.section-head h2 {
  margin: 22px 0 0;
  font-size: clamp(47px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.section-head > p:last-child:not(.kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.product-tour {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.product-tour-track {
  display: contents;
}
.tour-block {
  min-height: 700px;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.tour-block:nth-child(even) .tour-copy {
  order: 2;
}
.tour-copy > span {
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  color: var(--green);
}
.tour-copy h3 {
  max-width: 590px;
  margin: 24px 0 22px;
  font: 400 clamp(42px, 4.6vw, 68px) / 0.96 var(--serif);
  letter-spacing: -0.035em;
}
.tour-copy > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.tour-copy ul {
  max-width: 520px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.tour-copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.phone-scene {
  min-height: 620px;
  padding: 28px 24px 0;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  background: var(--surface);
  border-radius: 90px 5px 5px;
}
.tour-block:nth-child(3n + 2) .phone-scene {
  background: var(--warm);
  border-radius: 5px 5px 90px;
}
.tour-block:nth-child(3n) .phone-scene {
  background: var(--sage);
  border-radius: 5px 90px 5px 5px;
}
.phone {
  width: min(265px, 62%);
  padding: 10px;
  position: relative;
  overflow: hidden;
  background: #171a17;
  border: 2px solid #3b3f3a;
  border-radius: 45px;
  box-shadow: 0 35px 75px rgba(32, 37, 31, 0.25);
}
.phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 35px;
  pointer-events: none;
}
.phone-top {
  width: 32%;
  height: 25px;
  position: absolute;
  top: 14px;
  left: 34%;
  z-index: 3;
  background: #171a17;
  border-radius: 15px;
}
.phone-top i {
  width: 6px;
  height: 6px;
  position: absolute;
  right: 12px;
  top: 9px;
  background: #303a36;
  border-radius: 50%;
}
.phone video {
  width: 100%;
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border-radius: 35px;
  background: #f5f2ed;
}
.phone-scene > p {
  width: 100%;
  margin: 0;
  padding: 14px 0 17px;
  position: static;
  align-self: stretch;
  border-top: 1px solid rgba(74, 93, 72, 0.18);
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
}
.phone-scene > p i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  background: #6e8b65;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(110, 139, 101, 0.12);
}
.feature {
  min-height: 580px;
  padding: 75px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.feature:nth-of-type(3) .feature-text {
  order: 2;
}
.feature-text > span {
  font: 500 10px var(--mono);
  color: var(--green);
  letter-spacing: 0.1em;
}
.feature-text h3 {
  margin: 26px 0 24px;
  font: 400 clamp(38px, 4vw, 58px) / 1 var(--serif);
  letter-spacing: -0.03em;
}
.feature-text > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.feature-text ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-text li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.feature-screen {
  min-height: 380px;
  padding: 36px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--surface);
}
.feature-screen video {
  width: 100%;
  box-shadow: 0 24px 60px rgba(32, 37, 31, 0.18);
}
.feature-screen > small {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font: 500 9px var(--mono);
}
.feature-screen.portrait {
  grid-template-columns: 0.8fr 1fr;
  gap: 25px;
  background: var(--warm);
}
.portrait video {
  max-width: 270px;
  aspect-ratio: 9/16;
  object-fit: cover;
  border: 7px solid #1e211e;
  border-radius: 30px;
}
.portrait aside {
  padding: 25px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(32, 37, 31, 0.14);
}
.portrait aside small {
  font: 500 9px var(--mono);
}
.portrait aside b {
  margin: 15px 0 8px;
  display: block;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.portrait aside span {
  color: var(--muted);
  font-size: 12px;
}
.telegram {
  min-height: 760px;
  padding: clamp(75px, 8vw, 105px) max(36px, calc((100vw - 1400px) / 2));
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background: #dce7ed;
}
.telegram:after {
  content: "";
  width: 720px;
  height: 720px;
  position: absolute;
  right: -250px;
  top: -280px;
  border: 1px solid rgba(33, 75, 102, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(33, 75, 102, 0.03),
    0 0 0 180px rgba(33, 75, 102, 0.025);
}
.telegram-title {
  position: relative;
  z-index: 2;
}
.telegram-title h2 {
  margin: 26px 0;
  font: 400 clamp(52px, 6vw, 88px) / 0.92 var(--serif);
  letter-spacing: -0.04em;
}
.telegram-title > p:last-child {
  max-width: 520px;
  color: #53636b;
  font-size: 18px;
  line-height: 1.55;
}
.phone-chat {
  width: min(420px, 90%);
  margin: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px;
  background: #e3edf2;
  box-shadow: 0 30px 80px rgba(37, 64, 78, 0.22);
  transform: rotate(1.5deg);
}
.phone-chat header {
  height: 67px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #294d68;
  color: #fff;
}
.phone-chat header i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  font-style: normal;
}
.phone-chat header p {
  margin: 0;
  display: grid;
}
.phone-chat header small {
  opacity: 0.65;
}
.phone-chat header em {
  margin-left: auto;
}
.phone-chat main {
  min-height: 440px;
  padding: 20px 14px;
}
.phone-chat main > small {
  width: max-content;
  margin: auto;
  display: block;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  font-size: 9px;
}
.message {
  max-width: 82%;
  padding: 11px 12px;
  margin: 14px 0 0;
  opacity: 0;
  transform: translateY(8px);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.4s;
}
.message.show {
  opacity: 1;
  transform: none;
}
.message time {
  font-size: 8px;
  color: #77858b;
}
.out {
  margin-left: auto;
  background: #d5f1c7;
}
.in {
  background: #fff;
}
.phone-chat footer {
  height: 58px;
  padding: 9px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #f7f8f7;
}
.phone-chat footer p {
  margin: 0;
  padding: 10px 14px;
  flex: 1;
  background: #fff;
  border-radius: 20px;
  color: #929a98;
  font-size: 12px;
}
.phone-chat footer i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #3c8bbc;
  color: #fff;
  border-radius: 50%;
  font-style: normal;
}
.telegram-result {
  padding: 20px;
  position: absolute;
  right: max(30px, calc((100vw - 1500px) / 2));
  bottom: 70px;
  z-index: 3;
  display: grid;
  background: #fff;
  box-shadow: 0 18px 45px rgba(37, 64, 78, 0.18);
}
.telegram-result small {
  font: 500 8px var(--mono);
  color: var(--green);
}
.telegram-result span {
  margin-top: 15px;
  font-size: 12px;
}
.telegram-result b {
  font-size: 27px;
  color: var(--green);
}
.telegram-result p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.plans {
  padding: clamp(75px, 8vw, 115px) max(36px, calc((100vw - 1400px) / 2));
}
.price-list {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.price-list article {
  min-height: 520px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px 5px 5px;
}
.price-list article.best {
  min-height: 548px;
  margin: -14px 0;
  padding: 42px 34px 34px;
  position: relative;
  z-index: 1;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 5px 34px 5px 5px;
  box-shadow: 0 28px 65px rgba(38, 49, 37, 0.2);
}
.price-list span {
  font: 500 9px var(--mono);
  color: var(--green);
}
.price-list h3 {
  margin: 14px 0 6px;
  font-size: 25px;
}
.price-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.price-list ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.price-list article.best > div > span,
.price-list article.best p,
.price-list article.best ul,
.price-list article.best strong em {
  color: rgba(255, 255, 255, 0.72);
}
.price-list strong {
  margin-top: auto;
  display: block;
  font-size: 37px;
  letter-spacing: -0.05em;
}
.price-list strong small {
  font-size: 12px;
}
.price-list strong em {
  display: block;
  color: var(--muted);
  font: 400 10px var(--mono);
}
.price-list a {
  padding: 14px 0 7px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.price-list article.best a {
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 3px;
}
.price-list article.best a span {
  color: var(--ink);
}
.plan-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 12px;
}
.closing {
  min-height: 540px;
  padding: 80px max(36px, calc((100vw - 1400px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--green);
  color: #fff;
}
.closing h2 {
  max-width: 1150px;
  margin: 25px 0 40px;
  font: 400 clamp(58px, 8vw, 118px) / 0.86 var(--serif);
  letter-spacing: -0.045em;
}
.closing a {
  padding: 17px 22px;
  display: flex;
  gap: 45px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.footer {
  min-height: 220px;
  padding: 45px max(36px, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  background: #1f261f;
  color: #fff;
}
.footer p {
  color: rgba(255, 255, 255, 0.55);
}
.footer nav {
  display: flex;
  gap: 35px;
  font-size: 13px;
}
.footer small {
  margin-top: auto;
  grid-column: 1/-1;
  color: rgba(255, 255, 255, 0.4);
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes play {
  to {
    width: 100%;
  }
}
@keyframes hero-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4.5deg);
  }
  50% {
    transform: translate3d(2px, -13px, 0) rotate(-3.4deg);
  }
}
@keyframes gateway-phone-float {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) rotate(4.5deg);
  }
  50% {
    transform: translate3d(-2px, calc(-50% - 9px), 0) rotate(3.7deg);
  }
}
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-monitor-stage {
    width: min(820px, 100%);
    margin: 0 auto;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 15%;
    left: -1%;
  }
  :root {
    --page: calc(100vw - 48px);
  }
  .topbar {
    padding: 0 24px;
    grid-template-columns: 1fr auto;
  }
  .topbar nav {
    padding: 25px;
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    background: #1f261f;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s;
  }
  .topbar nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 17px;
  }
  .topbar.open nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .top-action {
    display: none;
  }
  .menu {
    width: 70px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    color: #fff;
  }
  .menu i {
    width: 20px;
    height: 1px;
    background: #fff;
  }
  .living-window,
  .feature,
  .telegram {
    grid-template-columns: 1fr;
  }
  .agenda-proof {
    grid-template-columns: 1fr;
  }
  .agenda-proof figure {
    min-height: 580px;
  }
  .tour-block {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }
  .phone-scene {
    min-height: 540px;
  }
  .window-copy {
    max-width: 650px;
  }
  .tension {
    grid-template-columns: 1fr;
  }
  .tension-photo {
    min-height: 580px;
  }
  .tension-copy {
    padding: 65px 36px;
  }
  .feature:nth-of-type(3) .feature-text {
    order: 0;
  }
  .telegram-title {
    max-width: 740px;
  }
  .telegram-result {
    right: 12%;
    bottom: 70px;
  }
  .price-list {
    gap: 12px;
  }
  .price-list article {
    min-height: 500px;
    padding: 28px 22px 26px;
  }
  .price-list article.best {
    min-height: 526px;
    padding: 36px 24px 30px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) and (max-width: 1000px) {
  .hero {
    min-height: calc(100svh - 78px);
    padding: clamp(48px, 7vw, 72px) 24px;
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    gap: clamp(24px, 4vw, 44px);
    align-items: center;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-title h1 {
    margin-top: 18px;
    font-size: clamp(52px, 6.8vw, 68px);
  }
  .hero-title h1 em {
    font-size: 0.68em;
  }
  .hero-intro {
    width: 100%;
    margin: 32px 0 0;
  }
  .hero-intro p {
    max-width: 34ch;
    font-size: 16px;
  }
  .hero-intro a {
    width: min(310px, 100%);
    margin-top: 24px;
    padding: 14px 16px;
    justify-content: space-between;
    color: #fff;
    background: var(--green);
    border: 0;
  }
  .hero-monitor-stage {
    width: 100%;
    margin: 0;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 17%;
    left: -2%;
  }
}

@media (max-width: 759px) {
  .hero {
    padding: 44px 24px 52px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-copy {
    display: contents;
  }
  .hero-title {
    order: 1;
  }
  .hero-monitor-stage {
    width: min(620px, 100%);
    margin: 2px auto 0;
    order: 2;
  }
  .hero-intro {
    width: min(520px, 100%);
    margin: 0;
    order: 3;
    text-align: center;
  }
  .hero-intro p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-intro a {
    width: min(320px, 100%);
    margin: 22px auto 0;
    padding: 14px 16px;
    justify-content: space-between;
    color: #fff;
    background: var(--green);
    border: 0;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100vw - 32px);
  }
  html {
    scroll-padding-top: 66px;
  }
  .topbar {
    height: 66px;
    padding: 0 16px;
  }
  .topbar nav {
    top: 66px;
  }
  .hero {
    padding: 36px 16px 46px;
    gap: 22px;
  }
  .hero-title h1 {
    margin-top: 16px;
    font-size: clamp(43px, 12vw, 49px);
    line-height: 0.88;
  }
  .hero-title {
    max-width: 100%;
  }
  .hero-title h1 em {
    margin-left: 0;
    font-size: 0.7em;
    white-space: nowrap;
  }
  .hero-intro {
    width: 100%;
    margin: 0;
  }
  .hero-intro p {
    max-width: 34ch;
    font-size: 14px;
  }
  .hero-monitor-stage > p {
    margin-top: 12px;
    justify-content: center;
    font-size: 8px;
  }
  .hero-monitor-stage {
    width: calc(100% + 8px);
    margin-right: -4px;
    margin-left: -4px;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 18%;
    min-width: 58px;
    left: 0;
    bottom: 38px;
    padding: 3px;
    border-radius: 18px;
  }
  .hero-monitor-stage .hero-floating-phone::after {
    inset: 3px;
    border-radius: 14px;
  }
  .hero-monitor-stage .hero-floating-phone video {
    border-radius: 14px;
  }
  .hero-monitor-stage .hero-floating-phone .phone-top {
    height: 7px;
    top: 4px;
  }
  .living-window {
    min-height: 0;
    padding: 34px 18px 30px;
    gap: 24px;
    border-radius: 3px 46px 3px 3px;
  }
  .view-home .living-window {
    width: calc(100vw - 32px);
    margin-bottom: 70px;
  }
  .page-gateways {
    padding: 0 16px 72px;
  }
  .page-gateways > header {
    margin-bottom: 30px;
  }
  .page-gateways > div {
    margin-right: -16px;
    padding-right: 16px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .page-gateways > div::-webkit-scrollbar {
    display: none;
  }
  .page-gateways > div > a {
    min-height: 300px;
    padding: 26px 22px;
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .page-gateways h3 {
    font-size: 36px;
  }
  .page-gateways > div > a:first-child h3,
  .page-gateways > div > a:first-child > p {
    max-width: calc(100% - 102px);
  }
  .page-gateways .gateway-floating-phone {
    width: 82px;
    top: 53%;
    right: 17px;
  }
  .agenda-proof {
    width: calc(100% - 32px);
    margin: 0 16px;
    min-height: auto;
    overflow: hidden;
    border-radius: 4px 38px 4px 4px;
  }
  .agenda-proof figure {
    min-height: 390px;
  }
  .agenda-proof > div {
    padding: 44px 22px 48px;
  }
  .agenda-proof h2 {
    margin: 22px 0 24px;
    font-size: 44px;
  }
  .agenda-proof > div > p:not(.kicker) {
    font-size: 15px;
    line-height: 1.55;
  }
  .window-copy h2 {
    max-width: 520px;
    margin: 26px 0 26px;
    font-size: 36px;
    line-height: 0.98;
  }
  .window-tabs {
    margin-right: -18px;
    padding-right: 18px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .window-tabs::-webkit-scrollbar {
    display: none;
  }
  .window-tabs button {
    min-height: 42px;
    padding: 0 16px;
    flex: 0 0 auto;
    border: 1px solid rgba(32, 37, 31, 0.2);
    border-radius: 30px;
    scroll-snap-align: start;
    font-size: 13px;
  }
  .window-tabs button[aria-selected="true"] {
    padding: 0 18px;
    color: #fff;
    background: var(--green);
    border-color: var(--green);
  }
  .window-copy > p:last-child {
    min-height: 0;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .app-stage {
    padding: 8px 0 20px;
  }
  .monitor-shell {
    padding: 8px 8px 10px;
    border-radius: 11px;
  }
  .monitor-camera {
    top: 3px;
  }
  .monitor-neck {
    height: 45px;
  }
  .monitor-foot {
    height: 9px;
  }
  .macbook-display {
    width: 96%;
    padding: 9px 9px 11px;
    border-radius: 11px 11px 4px 4px;
  }
  .macbook-camera {
    top: 3px;
  }
  .macbook-base {
    height: 13px;
  }
  .app-frame header {
    height: 26px;
  }
  .app-frame header i {
    width: 5px;
    height: 5px;
  }
  .app-frame header span,
  .app-frame header b {
    font-size: 6px;
  }
  .tension-photo {
    min-height: 460px;
  }
  .tension-copy {
    padding: 58px 16px;
  }
  .tension-copy h2 {
    margin-bottom: 30px;
    font-size: 42px;
  }
  .pain-list {
    margin-right: -16px;
    padding: 0 16px 6px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 11px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .pain-list::-webkit-scrollbar {
    display: none;
  }
  .pain-list article {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 9px;
    background: var(--surface);
    border: 0;
    border-radius: 4px 24px 4px 4px;
    scroll-snap-align: start;
  }
  .relief {
    padding: 65px 16px;
  }
  .relief blockquote {
    margin: 28px auto 40px;
    font-size: 44px;
  }
  .routine-strip {
    margin-right: -16px;
    padding: 0 16px 8px 0;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .routine-strip::-webkit-scrollbar {
    display: none;
  }
  .routine-strip span {
    padding: 18px;
    flex: 0 0 78%;
    align-items: flex-start;
    background: var(--surface);
    border-radius: 4px 22px 4px 4px;
    scroll-snap-align: start;
  }
  .routine-strip i {
    display: none;
  }
  .system,
  .telegram,
  .plans,
  .closing {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-tour {
    margin-top: 38px;
    padding: 0;
    display: block;
    overflow: visible;
    border-top: 0;
  }
  .product-tour-track {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
  .tour-block {
    height: auto;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 30px 4px 4px;
    transition:
      opacity 0.72s ease,
      transform 0.72s cubic-bezier(0.22, 0.72, 0.24, 1),
      filter 0.72s ease;
  }
  .tour-block:nth-child(even) {
    border-radius: 4px 4px 30px 4px;
  }
  .tour-block:nth-child(3n) {
    border-radius: 4px 30px 4px 4px;
  }
  .product-tour .tour-block.reveal {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(38px) scale(0.99);
  }
  .product-tour .tour-block.reveal.visible {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .tour-block:nth-child(even) .tour-copy {
    order: 0;
  }
  .tour-copy {
    padding: 24px 20px 20px;
  }
  .tour-copy > span {
    font-size: 9px;
  }
  .tour-copy h3 {
    margin: 15px 0 13px;
    display: block;
    overflow: visible;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 0.97;
  }
  .tour-copy > p {
    margin: 0;
    display: block;
    overflow: visible;
    font-size: 13px;
    line-height: 1.5;
  }
  .tour-copy ul {
    display: none;
  }
  .product-tour .phone-scene {
    min-height: 450px;
    margin-top: auto;
    padding: 22px 14px 0;
    flex: none;
    grid-template-rows: minmax(0, 1fr) auto;
    border-radius: 0 0 28px 4px;
  }
  .product-tour .phone {
    width: clamp(154px, 46vw, 180px);
    max-width: none;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    aspect-ratio: 332 / 720;
    border-radius: 26px;
  }
  .product-tour .phone::after {
    inset: 5px;
    border-radius: 20px;
  }
  .product-tour .phone video {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: block;
    position: absolute;
    inset: 5px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 20px;
  }
  .product-tour .phone-top {
    height: 14px;
    top: 7px;
  }
  .product-tour .phone-scene > p {
    width: 100%;
    padding: 11px 0 12px;
    position: static;
    align-self: stretch;
    justify-self: stretch;
    border-top: 1px solid rgba(74, 93, 72, 0.18);
  }
  .section-head h2 {
    font-size: 42px;
  }
  .section-head > p:last-child:not(.kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }
  .feature {
    min-height: 0;
    padding: 60px 0;
    gap: 40px;
  }
  .feature-screen {
    min-height: 280px;
    padding: 18px;
  }
  .feature-screen.portrait {
    min-height: 440px;
    grid-template-columns: 1fr 1fr;
  }
  .portrait aside {
    padding: 14px;
  }
  .portrait aside b {
    font-size: 28px;
  }
  .telegram {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .telegram-title h2 {
    font-size: 46px;
  }
  .telegram-title > p:last-child {
    font-size: 16px;
  }
  .phone-chat {
    width: 100%;
    transform: none;
  }
  .telegram-result {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -25px 0 0 auto;
    width: 220px;
  }
  .price-list {
    margin-top: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    border-top: 0;
  }
  .price-list article,
  .price-list article.best {
    min-height: 0;
    margin: 0;
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px 4px 4px;
  }
  .price-list article.best {
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 4px 30px 4px 4px;
    box-shadow: 0 24px 55px rgba(38, 49, 37, 0.2);
  }
  .price-list article.best > div > span,
  .price-list article.best p,
  .price-list article.best ul,
  .price-list article.best strong em {
    color: rgba(255, 255, 255, 0.72);
  }
  .price-list article strong,
  .price-list article a {
    align-self: auto;
  }
  .price-list strong {
    font-size: 44px;
  }
  .price-list a {
    padding: 14px 0 7px;
  }
  .price-list article.best a {
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 3px;
  }
  .price-list article.best a span {
    color: var(--ink);
  }
  .plan-note {
    margin-top: 24px;
  }
  .closing h2 {
    font-size: 50px;
  }
  .closing {
    min-height: 460px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .footer {
    padding: 45px 16px;
    gap: 35px;
  }
  .footer nav {
    flex-wrap: wrap;
  }
  .footer small {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
