:root {
  color-scheme: light;
  --ink: #18211d;
  --ink-soft: #2e3a35;
  --muted: #65716b;
  --line: #dfe6e1;
  --paper: #f6f3ea;
  --surface: #ffffff;
  --surface-soft: #eef5ef;
  --green: #0f8f68;
  --green-dark: #0b654c;
  --lime: #cceaa8;
  --orange: #ef8b57;
  --yellow: #f6c85f;
  --blue: #5d7fa8;
  --shadow: 0 22px 60px rgba(25, 35, 30, 0.13);
  --motion-fast: 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-soft: 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(24, 33, 29, 0.08);
  background: rgba(246, 243, 234, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 850;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(24, 33, 29, 0.08);
  transition:
    box-shadow var(--motion-soft),
    transform var(--motion-soft);
}

.brand:hover img {
  box-shadow:
    0 0 0 1px rgba(15, 143, 104, 0.24),
    0 10px 22px rgba(15, 143, 104, 0.16);
  transform: translateY(-1px) scale(1.04);
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.site-header nav a {
  position: relative;
  transition: color var(--motion-fast);
}

.site-header nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity var(--motion-fast),
    transform var(--motion-fast);
}

.site-header nav a:hover {
  color: var(--ink);
}

.site-header nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
  transition:
    background var(--motion-fast),
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    color var(--motion-fast),
    transform var(--motion-fast);
}

.header-action {
  padding: 0 18px;
  background: var(--ink);
  color: #ffffff;
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.header-action:hover {
  box-shadow: 0 14px 32px rgba(24, 33, 29, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  min-height: calc(100vh - 85px);
  padding: clamp(42px, 5vw, 70px) clamp(18px, 5vw, 64px) clamp(56px, 6vw, 84px);
  background:
    linear-gradient(120deg, rgba(204, 234, 168, 0.42), transparent 36%),
    linear-gradient(180deg, #fbf8ef 0%, var(--paper) 100%);
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 900px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.primary-action {
  gap: 14px;
  padding: 0 12px 0 24px;
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 143, 104, 0.24);
}

.primary-action:hover {
  box-shadow: 0 18px 44px rgba(15, 143, 104, 0.3);
}

.primary-action span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-dark);
  transition: transform var(--motion-soft);
}

.primary-action:hover span {
  transform: translateX(3px);
}

.secondary-action {
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.secondary-action:hover {
  border-color: rgba(15, 143, 104, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(25, 35, 30, 0.08);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 143, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.proof-list li:nth-child(1) {
  animation-delay: 160ms;
}

.proof-list li:nth-child(2) {
  animation-delay: 230ms;
}

.proof-list li:nth-child(3) {
  animation-delay: 300ms;
}

.proof-list li:hover {
  border-color: rgba(15, 143, 104, 0.34);
  box-shadow: 0 10px 24px rgba(15, 143, 104, 0.08);
  transform: translateY(-2px);
}

.real-hero-shot {
  position: relative;
  align-self: center;
  min-height: 650px;
}

.real-hero-shot::before {
  position: absolute;
  z-index: -1;
  inset: 12% 2% 10% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 20%, rgba(239, 139, 87, 0.18), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(93, 127, 168, 0.18), transparent 32%),
    #ffffff;
  box-shadow: var(--shadow);
  content: "";
}

.real-hero-shot img {
  display: block;
  width: min(320px, 52%);
  height: auto;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(25, 35, 30, 0.12);
  transition:
    box-shadow var(--motion-soft),
    transform var(--motion-soft);
}

.hero-phone-pair .phone-shot {
  position: absolute;
  background: #ffffff;
}

.phone-shot-chat {
  left: 0;
  top: 24px;
  transform: rotate(-2deg);
  animation: phone-float-left 7s ease-in-out infinite;
}

.phone-shot-today {
  right: 0;
  top: 118px;
  transform: rotate(2deg);
  animation: phone-float-right 7.5s ease-in-out infinite;
}

.real-hero-shot:hover .phone-shot-chat {
  box-shadow: 0 28px 68px rgba(25, 35, 30, 0.17);
  transform: translateY(-4px) rotate(-2.5deg);
}

.real-hero-shot:hover .phone-shot-today {
  box-shadow: 0 28px 68px rgba(25, 35, 30, 0.17);
  transform: translateY(-4px) rotate(2.5deg);
}

.product-demo {
  position: relative;
  display: grid;
  min-height: 560px;
  isolation: isolate;
}

.product-demo::before {
  position: absolute;
  z-index: -1;
  inset: 42px 8px 24px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 139, 87, 0.22), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(93, 127, 168, 0.22), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow);
  content: "";
}

.telegram-panel,
.dashboard-panel {
  border: 1px solid rgba(24, 33, 29, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(25, 35, 30, 0.12);
  backdrop-filter: blur(14px);
}

.telegram-panel {
  align-self: start;
  justify-self: end;
  width: min(360px, 88%);
  padding: 16px;
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-bar img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
}

.panel-bar strong {
  flex: 1;
}

.panel-bar em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.chat-stack {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.bubble {
  border-radius: 18px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.35;
}

.user-bubble {
  justify-self: end;
  max-width: 82%;
  background: #e7f1ea;
}

.bot-bubble {
  display: grid;
  gap: 8px;
  width: 86%;
  background: var(--ink);
  color: #ffffff;
}

.bot-bubble span,
.bot-bubble small {
  color: rgba(255, 255, 255, 0.72);
}

.bot-bubble strong {
  font-size: 34px;
  line-height: 1;
}

.bot-bubble button {
  width: fit-content;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: var(--green);
  color: #ffffff;
  font-weight: 850;
}

.bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.bot-actions button:last-child {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.bot-note {
  width: 88%;
  border: 1px solid rgba(15, 143, 104, 0.16);
  background: #f1f8f2;
  color: var(--green-dark);
  font-weight: 800;
}

.photo-bubble {
  position: relative;
  padding-left: 48px;
}

.photo-bubble::before {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  content: "";
  transform: translateY(-50%);
}

.dashboard-panel {
  align-self: end;
  justify-self: start;
  width: min(410px, 92%);
  margin-top: -90px;
  padding: 20px;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dashboard-head strong {
  font-size: 28px;
  line-height: 1.1;
}

.dashboard-head i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-style: normal;
  font-weight: 900;
}

.progress-line {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ece6;
}

.progress-line span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.macro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.macro-row div {
  padding: 14px 10px;
  border-radius: 16px;
  background: #f3f6f2;
  text-align: center;
}

.macro-row b,
.macro-row span {
  display: block;
}

.macro-row b {
  font-size: 24px;
}

.macro-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.day-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 64px);
}

.problem-section,
.inside-section,
.faq {
  background: var(--surface);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.split-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.pain-grid,
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pain-grid article,
.inside-grid article,
.method-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffdf8;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.pain-grid article:hover,
.inside-grid article:hover,
.method-grid article:hover,
.day-flow article:hover,
.feature-tour-grid article:hover {
  border-color: rgba(15, 143, 104, 0.28);
  box-shadow: 0 18px 42px rgba(25, 35, 30, 0.1);
  transform: translateY(-4px);
}

.pain-grid article {
  min-height: 260px;
  padding: 28px;
}

.pain-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--green);
  font-weight: 900;
}

.pain-grid p,
.inside-grid p,
.method-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.add-section {
  background: #eef4ec;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 40px;
}

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

.method-grid article {
  min-height: 220px;
  padding: 26px;
}

.method-grid b {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 18px;
  background: var(--ink);
  color: #ffffff;
  transition: transform var(--motion-soft);
}

.method-grid article:hover b {
  transform: scale(1.06) rotate(-2deg);
}

.method-grid article:nth-child(2) b {
  background: var(--orange);
}

.method-grid article:nth-child(3) b {
  background: var(--blue);
}

.method-grid article:nth-child(4) b {
  background: var(--green);
}

.context-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 92px);
  border-top: 1px solid rgba(24, 33, 29, 0.1);
  padding-top: clamp(38px, 7vw, 70px);
}

.context-showcase h3 {
  max-width: 760px;
  font-size: clamp(34px, 4.9vw, 64px);
  line-height: 1;
}

.context-showcase p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.context-showcase img {
  justify-self: center;
  width: min(300px, 100%);
  height: auto;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 58px rgba(25, 35, 30, 0.14);
  transition:
    box-shadow var(--motion-soft),
    transform var(--motion-soft);
}

.context-showcase:hover img,
.telegram-proof:hover img {
  box-shadow: 0 28px 70px rgba(25, 35, 30, 0.18);
  transform: translateY(-5px);
}

.inside-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inside-grid article {
  min-height: 260px;
  padding: 26px;
}

.feature-tour-section {
  background: #fffdf8;
}

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

.feature-tour-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(25, 35, 30, 0.08);
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.feature-tour-grid img {
  justify-self: center;
  width: min(280px, 78%);
  height: auto;
  margin: 28px 0 12px;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(25, 35, 30, 0.12);
  transition: transform var(--motion-soft);
}

.feature-tour-grid article:hover img {
  transform: translateY(-4px) scale(1.01);
}

.feature-tour-grid div {
  padding: 0 26px 28px;
}

.feature-tour-grid h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.feature-tour-grid p,
.telegram-proof p {
  color: var(--muted);
  line-height: 1.6;
}

.telegram-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.42fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: center;
  margin-top: clamp(42px, 7vw, 78px);
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(120deg, rgba(204, 234, 168, 0.38), transparent 42%),
    #eef4ec;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.telegram-proof:hover {
  border-color: rgba(15, 143, 104, 0.26);
  box-shadow: 0 24px 62px rgba(25, 35, 30, 0.11);
  transform: translateY(-3px);
}

.telegram-proof h3 {
  max-width: 820px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1;
}

.telegram-proof p {
  max-width: 640px;
  font-size: 18px;
}

.telegram-proof img {
  justify-self: center;
  width: min(300px, 100%);
  height: auto;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 58px rgba(25, 35, 30, 0.14);
}

.feature-mark {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: #e8f2e9;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-flow-section {
  background: #fbf8ef;
}

.day-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.day-flow article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.day-flow article::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(15, 143, 104, 0.14);
  border-radius: 50%;
  background: #eef7ef;
  content: "";
  transition:
    background var(--motion-soft),
    transform var(--motion-soft);
}

.day-flow article:hover::after {
  background: #dff2e3;
  transform: scale(1.12);
}

.day-flow span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 34px;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.day-flow p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
}

.subscription-section {
  background: #f7fbf6;
}

.subscription-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(15, 143, 104, 0.16);
  border-radius: 32px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(220, 246, 229, 0.82), rgba(255, 255, 255, 0.94) 44%),
    #ffffff;
  box-shadow: 0 28px 70px rgba(25, 35, 30, 0.08);
}

.subscription-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.subscription-copy h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.95;
}

.subscription-copy p {
  max-width: 650px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.subscription-panel {
  display: grid;
  align-content: center;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.subscription-status {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border-radius: 22px;
  padding: 20px;
  background: var(--ink);
  color: #ffffff;
}

.subscription-status span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.subscription-status strong {
  max-width: 280px;
  font-size: 28px;
  line-height: 1.05;
}

.subscription-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.subscription-panel li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(24, 33, 29, 0.08);
  border-radius: 22px;
  padding: 14px;
  background: #ffffff;
  transition:
    border-color var(--motion-fast),
    box-shadow var(--motion-soft),
    transform var(--motion-fast);
}

.subscription-panel li:hover {
  border-color: rgba(15, 143, 104, 0.28);
  box-shadow: 0 14px 34px rgba(25, 35, 30, 0.08);
  transform: translateY(-2px);
}

.subscription-panel li > span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #e7f6ec;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.subscription-panel strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.subscription-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.seo-links-section {
  background: #eef4ec;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-link-grid a {
  display: grid;
  min-height: 230px;
  align-content: start;
  border: 1px solid rgba(24, 33, 29, 0.1);
  border-radius: 24px;
  padding: 26px;
  background: #fffdf8;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.seo-link-grid a:hover {
  border-color: rgba(15, 143, 104, 0.34);
  box-shadow: 0 18px 42px rgba(25, 35, 30, 0.1);
  transform: translateY(-2px);
}

.seo-link-grid span {
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-link-grid strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.seo-link-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--ink);
  color: #ffffff;
}

.cta-section .section-kicker {
  color: var(--lime);
}

.cta-section h2 {
  max-width: 900px;
}

.cta-section p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.faq-list {
  max-width: 940px;
}

.section,
.feature-tour-grid article,
.context-showcase,
.telegram-proof,
.seo-link-grid a,
.faq-list details {
  animation: landing-rise 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.feature-tour-grid article:nth-child(2),
.pain-grid article:nth-child(2),
.method-grid article:nth-child(2),
.inside-grid article:nth-child(2),
.day-flow article:nth-child(2),
.seo-link-grid a:nth-child(2) {
  animation-delay: 90ms;
}

.feature-tour-grid article:nth-child(3),
.pain-grid article:nth-child(3),
.method-grid article:nth-child(3),
.inside-grid article:nth-child(3),
.day-flow article:nth-child(3),
.seo-link-grid a:nth-child(3) {
  animation-delay: 160ms;
}

.method-grid article:nth-child(4),
.inside-grid article:nth-child(4) {
  animation-delay: 230ms;
}

@supports (animation-timeline: view()) {
  .section,
  .feature-tour-grid article,
  .context-showcase,
  .telegram-proof,
  .seo-link-grid a,
  .faq-list details {
    animation-name: landing-scroll-rise;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

.seo-page {
  background: #ffffff;
}

.seo-hero {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(204, 234, 168, 0.48), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #ffffff 100%);
}

.seo-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 7vw, 86px);
}

.seo-hero p {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.seo-hero .primary-action {
  margin-top: 12px;
}

.seo-content {
  display: grid;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(72px, 9vw, 124px);
}

.seo-content article {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: #fffdf8;
}

.seo-content h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
}

.seo-content p,
.seo-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

.seo-content ul,
.seo-content ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 850;
  transition: color var(--motion-fast);
}

summary:hover {
  color: var(--green-dark);
}

details[open] summary {
  color: var(--green-dark);
}

details p {
  max-width: 760px;
  margin-bottom: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #111915;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer span {
  color: #ffffff;
  font-weight: 850;
}

@keyframes landing-rise {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes landing-fade {
  from {
    transform: scale(0.98);
  }
  to {
    transform: scale(1);
  }
}

@keyframes landing-scroll-rise {
  from {
    transform: translateY(28px) scale(0.985);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes phone-float-left {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}

@keyframes phone-float-right {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(10px) rotate(1.2deg);
  }
}

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy-block {
    max-width: 860px;
  }

  .real-hero-shot {
    width: min(760px, 100%);
    min-height: 640px;
  }

  .product-demo {
    min-height: 520px;
  }

  .pain-grid,
  .method-grid,
  .inside-grid,
  .feature-tour-grid,
  .day-flow,
  .subscription-card,
  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subscription-card {
    grid-template-columns: 1fr;
  }

  .subscription-copy {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-actions,
  .proof-list {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-action,
  .secondary-action,
  .proof-list li {
    width: 100%;
  }

  .proof-list li {
    justify-content: center;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pain-grid,
  .method-grid,
  .inside-grid,
  .feature-tour-grid,
  .day-flow,
  .subscription-card,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .subscription-card {
    border-radius: 26px;
    padding: 22px;
  }

  .subscription-copy h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .subscription-copy p {
    font-size: 17px;
  }

  .context-showcase,
  .telegram-proof {
    grid-template-columns: 1fr;
  }

  .product-demo {
    min-height: auto;
    gap: 16px;
  }

  .product-demo::before {
    inset: 16px 0;
  }

  .telegram-panel,
  .dashboard-panel {
    justify-self: stretch;
    width: 100%;
  }

  .dashboard-panel {
    margin-top: 0;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand b {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .subscription-card {
    padding: 18px;
  }

  .subscription-panel {
    padding: 16px;
  }

  .subscription-panel li {
    grid-template-columns: 1fr;
  }

  .subscription-panel li > span {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(36px, 11.2vw, 52px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .real-hero-shot {
    min-height: 560px;
  }

  .real-hero-shot img {
    width: 58%;
    border-radius: 22px;
  }

  .phone-shot-chat {
    left: 0;
    top: 18px;
  }

  .phone-shot-today {
    right: 0;
    top: 92px;
  }

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

  .bot-bubble,
  .bot-note {
    width: 100%;
  }

  .day-flow article,
  .seo-link-grid a {
    min-height: auto;
  }

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