@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-RegularItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("assets/fonts/Matter-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #070908;
  --deep: #003b2d;
  --deep-2: #002f25;
  --green: #13b96f;
  --lime: #e3ffc1;
  --soft: rgba(230, 230, 230, 0.35);
  --line: rgba(255, 255, 255, 0.28);
  --white: #ffffff;
  --content-max: 1250px;
  --desktop-gutter: max(36px, calc((100vw - var(--content-max)) / 2));
  --tight-gutter: max(12px, calc((100vw - var(--content-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

main section,
footer,
#pricing {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Matter", Arial, sans-serif;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-page-ready {
  opacity: 1;
  transform: none;
}

body.is-page-leaving {
  opacity: 0;
  transform: translateY(-6px);
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.is-page-ready,
  body.is-page-leaving {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: 733px;
  overflow: hidden;
  color: var(--white);
  background: #001412;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(0, 20, 18, 0.66), rgba(0, 0, 0, 0.43) 48%, rgba(0, 20, 20, 0.67)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.13));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 72px), var(--content-max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-pill,
.profile-pill {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 62px;
  padding: 0 35px 0 17px;
  border-radius: 34px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.brand-logo {
  width: 126px;
  height: auto;
  display: block;
}

.seal svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.print-button,
.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  height: 62px;
  padding: 0 4px 0 25px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 16px;
  font-weight: 700;
}

.print-button {
  width: max-content;
  min-width: 0;
}

.arrow-circle {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.print-button:hover .arrow-circle,
.pricing-button:hover .arrow-circle {
  transform: rotate(45deg);
}

.arrow-circle svg,
.small-arrow svg,
.audience-icon svg,
.scroll-cue svg,
.profile-pill svg,
.discover-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.32);
}

.profile-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 62px;
  min-width: 103px;
  padding: 7px 18px 7px 7px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
}

.profile-pill img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
}

.profile-pill svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-button,
.mobile-nav-overlay {
  display: none;
}

.is-mobile-nav-open {
  overflow: hidden;
}

.account-popup {
  position: fixed;
  top: 92px;
  right: var(--desktop-gutter);
  z-index: 1200;
  width: 238px;
  border-radius: 16px;
  color: #3a3a3a;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 170ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.account-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.account-popup a {
  color: inherit;
}

.account-popup-profile {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
}

.account-popup-profile img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
}

.account-popup-profile strong,
.account-popup-profile small {
  display: block;
}

.account-popup-profile strong {
  color: #3b3b3b;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.account-popup-profile small {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.account-popup-group {
  padding: 14px 15px;
  border-top: 1px solid rgba(7, 9, 8, 0.1);
}

.account-popup-group a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
}

.account-popup-group a + a {
  margin-top: 10px;
}

.account-popup-group img {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.account-popup-logout a {
  color: #ff4545;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding: 119px 0 0;
}

.hero h1 {
  margin: 0;
  font-size: 118px;
  line-height: 0.99;
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 em {
  font-weight: 800;
  font-style: italic;
}

.scroll-cue {
  position: absolute;
  left: var(--desktop-gutter);
  bottom: 24px;
  z-index: 2;
  width: 108px;
  height: 108px;
}

.scroll-cue img {
  width: 100%;
  height: 100%;
  display: block;
}

.designer-proof {
  position: absolute;
  right: var(--desktop-gutter);
  bottom: 25px;
  z-index: 2;
  width: 447px;
  color: var(--white);
}

.proof-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.proof-top strong {
  font-size: 16px;
  font-weight: 700;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 46px;
  height: 46px;
  margin-left: -13px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.designer-proof p {
  margin: 27px 0 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.designer-proof p strong {
  font-weight: 800;
}

.account-page {
  min-height: 100vh;
  background: var(--soft);
}

.account-page .site-header {
  color: var(--ink);
}

.account-page .nav-pill,
.account-page .profile-pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
}

.account-page .brand-logo {
  filter: invert(1);
}

.account-page .header-divider {
  background: rgba(7, 9, 8, 0.12);
}

.account-page .print-button {
  color: var(--white);
  background: var(--deep-2);
}

.account-page .print-button .arrow-circle {
  color: var(--deep-2);
  background: var(--lime);
}

.features-page {
  min-height: 100vh;
  background: var(--soft);
}

.features-page .site-header {
  width: min(calc(100% - 72px), var(--content-max));
  color: var(--ink);
}

.features-page .nav-pill,
.features-page .profile-pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
}

.features-page .brand-logo {
  filter: invert(1);
}

.features-page .header-divider {
  background: rgba(7, 9, 8, 0.12);
}

.features-page .print-button {
  color: var(--white);
  background: var(--deep-2);
}

.features-page .print-button .arrow-circle {
  color: var(--deep-2);
  background: var(--lime);
}

.features-hero {
  min-height: 404px;
  padding: 158px 0 34px;
  background: var(--soft);
}

.features-hero-content {
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
}

.features-hero .section-label {
  color: var(--deep);
  text-align: left;
}

.features-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: end;
  margin-top: 23px;
}

.features-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 90px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}

.features-hero p {
  margin: 0 0 11px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

.features-tools {
  padding: 35px var(--desktop-gutter) 128px;
  background: var(--soft);
}

.pricing-page {
  --pricing-line: rgba(7, 9, 8, 0.1);
}

.pricing-hero {
  padding: 132px 0 46px;
  background: var(--soft);
}

.pricing-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: end;
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pricing-line);
}

.pricing-page .section-label {
  color: var(--deep);
  text-align: left;
}

.pricing-hero h1,
.pricing-lifetime h2,
.pricing-comparison h2,
.pricing-faq h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-hero h1 {
  margin-top: 8px;
  font-size: clamp(58px, 6.2vw, 90px);
  line-height: 0.98;
}

.pricing-hero p {
  margin: 0 0 10px;
  color: rgba(7, 9, 8, 0.75);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-lifetime,
.pricing-plans,
.pricing-comparison,
.pricing-faq {
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
}

.pricing-lifetime {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 0.94fr);
  gap: 74px;
  align-items: start;
  padding: 62px 0 76px;
}

.pricing-lifetime-copy {
  position: relative;
}

.pricing-lifetime h2 {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: clamp(60px, 5.9vw, 87px);
  line-height: 0.96;
}

.pricing-seal-star {
  position: absolute;
  z-index: 2;
  top: 102px;
  left: calc(70% + 75px);
  width: 76px;
  height: 76px;
  pointer-events: none;
}

.pricing-lifetime-copy p {
  max-width: 430px;
  margin: 23px 0 0;
  color: rgba(7, 9, 8, 0.78);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-lifetime-copy > strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.pricing-print-image {
  width: 336px;
  height: 179px;
  margin-top: 39px;
  border-radius: 10px;
  object-fit: cover;
}

.lifetime-card {
  padding: 25px;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 167, 96, 0.65), transparent 42%),
    linear-gradient(135deg, #003c30, #071c19 68%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.08);
}

.lifetime-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.lifetime-card h3 span,
.lifetime-card p,
.lifetime-note {
  color: rgba(255, 255, 255, 0.78);
}

.lifetime-price {
  margin-top: 18px;
  font-size: 41px;
  line-height: 1;
  font-weight: 400;
}

.lifetime-card p {
  margin: 9px 0 23px;
  font-size: 15px;
  font-weight: 400;
}

.lifetime-card ul,
.pricing-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lifetime-card ul {
  display: grid;
  gap: 12px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.lifetime-card li,
.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lifetime-card li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.lifetime-card li img,
.pricing-feature-list img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.lifetime-card li img {
  width: 18px;
  height: 18px;
}

.lifetime-note {
  margin-top: 21px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-pill-button,
.pricing-plan-button,
.pricing-faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  font-weight: 500;
}

.pricing-pill-button {
  height: 48px;
  margin-top: 18px;
  padding: 0 5px 0 25px;
  color: var(--ink);
  background: var(--lime);
  font-size: 16px;
}

.pricing-pill-button span:last-child,
.pricing-plan-button span:last-child {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-pill-button span:last-child {
  width: 39px;
  height: 39px;
}

.pricing-pill-button:hover span:last-child,
.pricing-plan-button:hover span:last-child,
.pricing-faq-contact:hover span:last-child {
  transform: rotate(45deg);
}

.pricing-pill-button svg,
.pricing-plan-button svg,
.pricing-faq-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-plans {
  padding: 0 0 76px;
}

.pricing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 330px;
  height: 46px;
  margin: 0 auto 34px;
  padding: 4px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.05);
}

.pricing-toggle button {
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
}

.pricing-toggle button.is-active {
  color: var(--white);
  background: var(--deep-2);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.055);
}

.pricing-card-head {
  min-height: 126px;
  padding: 20px 20px 18px;
  border-radius: 14px;
}

.pricing-card-free .pricing-card-head {
  color: var(--ink);
  background: var(--lime);
}

.pricing-card-plus .pricing-card-head {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 0%, rgba(0, 204, 117, 0.55), transparent 42%),
    linear-gradient(135deg, #00694c, #029654);
}

.pricing-card-pro .pricing-card-head {
  color: var(--lime);
  background: linear-gradient(135deg, #00352c, #071b18 72%);
}

.pricing-card-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.pricing-card-head div {
  margin-top: 22px;
  line-height: 1;
}

.pricing-card-head strong {
  font-size: 36px;
  font-weight: 400;
}

.pricing-card-head span {
  margin-left: 6px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-card-head p {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
}

.pricing-feature-list {
  display: grid;
  gap: 12px;
  padding: 24px 20px 22px;
}

.pricing-feature-list li {
  color: rgba(7, 9, 8, 0.72);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 400;
}

.pricing-feature-list li strong {
  font-weight: 500;
}

.pricing-feature-list .is-muted {
  color: rgba(7, 9, 8, 0.35);
}

.pricing-card-copy {
  margin: auto 20px 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pricing-line);
  color: rgba(7, 9, 8, 0.75);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-plan-button {
  height: 46px;
  margin: 0 20px 20px;
  padding: 0 4px 0 18px;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
}

.pricing-plan-button span:last-child {
  width: 38px;
  height: 38px;
}

.pricing-comparison {
  padding: 0 0 86px;
  text-align: center;
}

.pricing-comparison .section-label,
.pricing-faq .section-label {
  text-align: center;
}

.pricing-comparison h2,
.pricing-faq h2 {
  margin-top: 10px;
  font-size: clamp(53px, 5.6vw, 83px);
  line-height: 1;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 55px;
  text-align: left;
}

.comparison-feature-head,
.comparison-plan-head {
  min-height: 129px;
  border-radius: 10px;
}

.comparison-feature-head {
  padding: 21px;
  color: var(--deep-2);
  background: var(--lime);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.comparison-plan-head {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
  color: var(--white);
}

.comparison-plan-head.is-free {
  color: var(--deep-2);
  background: linear-gradient(135deg, var(--lime), #9eeeba);
}

.comparison-plan-head.is-plus {
  background: linear-gradient(135deg, #007856, #10a75f);
}

.comparison-plan-head.is-pro {
  color: var(--lime);
  background: linear-gradient(135deg, #00352c, #071b18 72%);
}

.comparison-plan-head > strong {
  font-size: 21px;
  font-weight: 500;
}

.comparison-plan-head > span {
  font-size: 21px;
  font-weight: 400;
}

.comparison-plan-head .comparison-plan-button {
  height: 46px;
  margin-top: 8px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 14px;
}

.comparison-plan-head .comparison-plan-button span:last-child {
  width: 38px;
  height: 38px;
}

.comparison-feature-list,
.comparison-column {
  display: grid;
  overflow: hidden;
  border-radius: 10px;
}

.comparison-feature-list {
  color: var(--deep-2);
  background: var(--lime);
}

.comparison-feature-list span,
.comparison-column span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.08);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.comparison-feature-list span {
  place-items: center start;
}

.comparison-column {
  background: var(--white);
}

.comparison-column img {
  width: 17px;
  height: 17px;
}

.pricing-faq {
  position: relative;
  padding: 0 0 106px;
  text-align: center;
}

.pricing-faq h2 {
  position: relative;
  z-index: 1;
}

.pricing-seal-question {
  position: absolute;
  z-index: 2;
  top: -8px;
  left: calc(50% + 230px);
  width: 69px;
  height: 69px;
  pointer-events: none;
}

.pricing-faq > p {
  margin: 21px 0 0;
  color: rgba(7, 9, 8, 0.65);
  font-size: 15px;
  font-weight: 400;
}

.pricing-faq-contact {
  width: 152px;
  height: 48px;
  margin: 21px auto 51px;
  padding: 0 5px 0 20px;
  color: var(--white);
  background: var(--deep-2);
  font-size: 14px;
}

.pricing-faq-contact span:first-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.pricing-faq-contact span:last-child {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: var(--deep-2);
  background: var(--lime);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items: start;
}

.pricing-faq-column {
  display: grid;
  gap: 14px;
}

.pricing-faq details {
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  text-align: left;
}

.pricing-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 53px;
  padding: 0 21px;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  list-style: none;
}

.pricing-faq summary::-webkit-details-marker {
  display: none;
}

.pricing-faq summary:focus {
  outline: none;
}

.pricing-faq summary::after {
  content: "+";
  font-size: 25px;
  font-weight: 400;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-faq details[open] summary::after {
  content: "-";
}

.pricing-faq details p {
  max-height: 0;
  margin: 0 21px;
  overflow: hidden;
  color: rgba(7, 9, 8, 0.68);
  opacity: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  transition:
    max-height 260ms cubic-bezier(0.16, 1, 0.3, 1),
    margin 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
}

.pricing-faq details[open] p {
  max-height: 130px;
  margin: -2px 21px 17px;
  opacity: 1;
}

.pricing-faq details.is-closing p {
  max-height: 0;
  margin: 0 21px;
  opacity: 0;
}

.pricing-flow-page {
  background: var(--soft);
}

.pricing-flow-hero {
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding: 154px 0 46px;
}

.pricing-flow-hero .section-label {
  color: var(--deep);
  text-align: left;
}

.pricing-flow-hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #050505;
  font-size: clamp(72px, 7.4vw, 106px);
  line-height: 0.9;
  font-weight: 300;
}

.pricing-flow-hero p {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(7, 9, 8, 0.68);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-flow-shell {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding: 24px 0 116px;
}

.pricing-flow-summary {
  position: sticky;
  top: 128px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-radius: 26px;
  color: var(--white);
  background: var(--deep-2);
}

.pricing-flow-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pricing-flow-summary .section-label {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.pricing-flow-summary h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
}

.pricing-flow-summary-price {
  margin: 0;
  font-size: 52px;
  line-height: 0.92;
  font-weight: 400;
}

.pricing-flow-summary-price span:last-child {
  font-size: 15px;
  opacity: 0.68;
}

.pricing-flow-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-flow-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-flow-toggle a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.pricing-flow-toggle [data-forever-pill] {
  display: none;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.pricing-flow-toggle a.is-active {
  color: var(--ink);
  background: var(--lime);
}

.pricing-flow-page.is-lifetime-flow .pricing-flow-toggle {
  grid-template-columns: 1fr;
}

.pricing-flow-page.is-lifetime-flow .pricing-flow-toggle a {
  display: none;
}

.pricing-flow-page.is-lifetime-flow .pricing-flow-toggle [data-forever-pill] {
  display: grid;
}

.pricing-flow-card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(7, 9, 8, 0.07);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.pricing-flow-card h2 {
  margin: 0;
  color: #050505;
  font-size: 42px;
  line-height: 0.96;
  font-weight: 400;
}

.pricing-flow-card p {
  margin: -14px 0 0;
  max-width: 610px;
  color: rgba(7, 9, 8, 0.62);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.pricing-flow-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-flow-fields label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(7, 9, 8, 0.58);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.pricing-flow-fields input,
.pricing-flow-fields select {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(7, 9, 8, 0.06);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.pricing-flow-fields input:focus,
.pricing-flow-fields select:focus {
  box-shadow: 0 0 0 2px rgba(189, 255, 0, 0.9);
}

.pricing-flow-wide {
  grid-column: 1 / -1;
}

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

.pricing-flow-options a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(7, 9, 8, 0.72);
  background: rgba(7, 9, 8, 0.06);
  font-size: 15px;
  font-weight: 400;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.pricing-flow-options a:hover,
.pricing-flow-options a.is-active {
  color: var(--ink);
  background: var(--lime);
}

.pricing-flow-options a:hover {
  transform: translateY(-2px);
}

.pricing-flow-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 6px 7px 6px 26px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.pricing-flow-submit span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-flow-submit svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-flow-submit:hover span:last-child {
  transform: rotate(45deg);
}

.checkout-breakdown {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.checkout-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 400;
}

.checkout-breakdown dt,
.checkout-breakdown dd {
  margin: 0;
}

.checkout-breakdown strong {
  color: var(--white);
  font-weight: 500;
}

.checkout-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(7, 9, 8, 0.68);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.checkout-notice input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--deep-2);
}

.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(7, 9, 8, 0.68);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.checkout-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--deep-2);
}

.checkout-success {
  width: min(calc(100% - 72px), 920px);
  margin: 0 auto;
  padding: 166px 0 116px;
  text-align: center;
}

.checkout-success > img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
}

.checkout-success .section-label {
  color: var(--deep);
}

.checkout-success h1 {
  margin: 18px 0 0;
  color: #050505;
  font-size: clamp(72px, 7.4vw, 104px);
  line-height: 0.9;
  font-weight: 300;
}

.checkout-success p {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(7, 9, 8, 0.66);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.checkout-success-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
}

.checkout-success-summary span {
  padding: 0 10px 0 12px;
  font-size: 15px;
  font-weight: 400;
}

.checkout-success-summary strong {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 500;
}

.checkout-success-link {
  width: min(330px, 100%);
  margin: 32px auto 0;
}

.feature-detail-page {
  background: var(--soft);
}

.feature-detail-hero {
  position: relative;
  min-height: 595px;
  overflow: hidden;
  color: var(--white);
  background: #071412;
}

.feature-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.feature-detail-hero-image,
.feature-detail-cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-shell {
  min-height: 100vh;
  padding: 152px 0 102px;
  background: var(--soft);
}

.projects-content {
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
}

.projects-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.projects-topline .section-label {
  color: var(--deep);
  text-align: left;
}

.projects-topline h1 {
  margin: 18px 0 0;
  color: #050505;
  font-size: clamp(64px, 7.4vw, 96px);
  line-height: 0.86;
  font-weight: 300;
  white-space: nowrap;
}

.projects-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 3px;
}

.projects-search {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 274px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.045);
}

.projects-search img {
  width: 20px;
  height: 20px;
  opacity: 0.52;
}

.projects-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
}

.projects-search input::placeholder {
  color: rgba(7, 9, 8, 0.46);
  font-style: italic;
}

.project-view-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 56px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.045);
}

.project-view-toggle button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.project-view-toggle button.is-active {
  background: var(--lime);
}

.project-view-toggle button:hover {
  transform: translateY(-1px);
}

.project-view-toggle img {
  width: 18px;
  height: 18px;
}

.new-project-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 56px;
  min-width: 170px;
  padding: 0 5px 0 23px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.new-project-button:hover {
  transform: translateY(-1px);
}

.new-project-button span:last-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
}

.new-project-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.projects-divider {
  height: 1px;
  margin: 38px 0 72px;
  background: rgba(7, 9, 8, 0.1);
}

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

.project-card {
  position: relative;
  min-width: 0;
}

.project-cover {
  position: relative;
  display: block;
  aspect-ratio: 1.36;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--project-color, #2473f3);
}

.project-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 47, 37, 0.78);
  opacity: 0;
  transition: opacity 240ms ease;
}

.project-meta {
  min-height: 62px;
  padding: 22px 22px 16px;
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.035);
}

.project-title {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.project-open-button {
  position: absolute;
  z-index: 2;
  left: calc(50% - 34px);
  top: calc((100% - 62px) * 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(178px, calc(100% - 108px));
  min-width: 0;
  height: 56px;
  padding: 0 5px 0 20px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.project-open-button span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
}

.project-open-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-settings {
  position: absolute;
  z-index: 3;
  top: calc((100% - 62px) * 0.5);
  right: 20px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(-50%) scale(0.94);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 200ms ease;
}

.project-settings:hover {
  background: rgba(255, 255, 255, 0.36);
}

.project-settings img {
  width: 22px;
  height: 22px;
}

.project-card:hover .project-cover::after,
.project-card:focus-within .project-cover::after {
  opacity: 1;
}

.project-card:hover .project-open-button,
.project-card:focus-within .project-open-button,
.project-card:hover .project-settings,
.project-card:focus-within .project-settings {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.project-card:hover .project-settings,
.project-card:focus-within .project-settings {
  transform: translateY(-50%) scale(1);
}

.project-card:hover .project-title,
.project-card:focus-within .project-title {
  color: var(--deep-2);
}

.projects-page.is-list-view .projects-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.projects-page.is-list-view .project-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

.projects-page.is-list-view .project-cover {
  aspect-ratio: auto;
  min-height: 126px;
  border-radius: 14px 0 0 14px;
}

.projects-page.is-list-view .project-meta {
  display: flex;
  align-items: center;
  border-radius: 0 14px 14px 0;
}

.projects-page.is-list-view .project-open-button {
  left: auto;
  right: 90px;
  top: 50%;
  transform: translateY(-50%) scale(0.94);
}

.projects-page.is-list-view .project-settings {
  top: 50%;
  right: 24px;
  background: var(--deep-2);
  transform: translateY(-50%) scale(0.94);
}

.projects-page.is-list-view .project-settings:hover {
  background: #082f27;
}

.projects-page.is-list-view .project-card:hover .project-open-button,
.projects-page.is-list-view .project-card:focus-within .project-open-button,
.projects-page.is-list-view .project-card:hover .project-settings,
.projects-page.is-list-view .project-card:focus-within .project-settings {
  transform: translateY(-50%) scale(1);
}

.project-settings-dialog {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 9, 8, 0.08);
  backdrop-filter: blur(8px);
}

.project-settings-dialog.is-open {
  display: flex;
}

.project-settings-modal {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
  gap: 26px;
  width: min(1110px, calc(100vw - 56px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.11);
}

.project-settings-preview {
  min-height: 350px;
  border: 1px solid rgba(7, 9, 8, 0.08);
  border-radius: 12px;
  background: #fff1f2;
}

.project-settings-form {
  display: grid;
  gap: 22px;
}

.project-settings-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0 24px;
  border: 1px solid rgba(7, 9, 8, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.project-settings-field span,
.project-settings-field strong {
  flex: 0 0 auto;
}

.project-settings-field strong {
  margin-left: 7px;
  font-weight: 800;
}

.project-settings-field input[type="text"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 0 0 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.project-color-field input[type="color"],
.project-upload-field input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.project-color-field i {
  width: 54px;
  height: 54px;
  margin-left: auto;
  border: 2px solid rgba(7, 9, 8, 0.09);
  border-radius: 50%;
  background: #fff1f2;
}

.project-settings-rule {
  height: 1px;
  background: rgba(7, 9, 8, 0.13);
}

.project-settings-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-cancel-button,
.project-save-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  font-weight: 800;
}

.project-cancel-button {
  padding: 0 30px;
  border: 1px solid rgba(7, 9, 8, 0.1);
  color: var(--ink);
  background: var(--white);
}

.project-cancel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.project-save-button {
  padding: 0 7px 0 30px;
  border: 0;
  color: var(--white);
  background: var(--deep-2);
}

.project-save-button span:last-child {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--lime);
}

.project-save-button img {
  width: 20px;
  height: 20px;
}

.feature-detail-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(calc(100% - 72px), var(--content-max));
  min-height: 595px;
  margin: 0 auto;
  padding: 138px 0 30px;
}

.feature-breadcrumb {
  color: var(--lime);
  font-size: 15px;
  line-height: 1;
  font-family: "Matter", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: end;
  margin-top: 18px;
}

.feature-detail-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: 88px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0;
}

.feature-detail-proof {
  padding-bottom: 2px;
  color: var(--white);
}

.feature-detail-proof strong {
  display: block;
  margin-bottom: 44px;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

.feature-detail-proof p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.feature-detail-body {
  padding: 105px var(--desktop-gutter) 122px;
  background: var(--soft);
}

.feature-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: end;
  max-width: var(--content-max);
  margin: 0 auto;
}

.feature-detail-intro .section-label {
  color: var(--ink);
  text-align: left;
}

.feature-detail-intro h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 89px;
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 0;
}

.feature-detail-intro p {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content-max);
  margin: 72px auto 0;
}

.feature-detail-card,
.feature-detail-image-card {
  min-height: 255px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}

.feature-detail-image-card img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
}

.feature-detail-card {
  padding: 29px 24px 24px;
  color: var(--ink);
}

.feature-detail-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-detail-card h3 {
  margin: 42px 0 0;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
}

.feature-detail-card hr {
  margin: 21px 0 22px;
  border: 0;
  border-top: 1px solid rgba(7, 9, 8, 0.12);
}

.feature-detail-card p {
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 15.5px;
  line-height: 1.42;
  font-weight: 400;
}

.feature-detail-cta {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 24px), var(--content-max));
  min-height: 568px;
  margin: 0 auto 16px;
  border-radius: 20px;
  color: var(--white);
  background: #071412;
}

.feature-detail-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.feature-detail-cta-content {
  position: relative;
  z-index: 2;
  min-height: 568px;
  padding: 31px 24px 24px;
}

.feature-detail-cta .section-label {
  color: var(--white);
  text-align: left;
}

.feature-detail-cta h2 {
  max-width: 1170px;
  margin: 22px 0 0;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
}

.feature-detail-cta h2 strong {
  display: block;
  margin-top: 4px;
  font-size: 78px;
  line-height: 0.98;
  font-style: italic;
  font-weight: 800;
  text-align: right;
}

.feature-detail-seal {
  position: absolute;
  top: 95px;
  left: 63%;
  width: 84px;
  height: 84px;
  transform: translateX(-50%);
}

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

.feature-detail-stats article {
  min-height: 121px;
  padding: 22px 20px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.feature-detail-stats img {
  width: 18px;
  height: 18px;
  margin-bottom: 17px;
}

.feature-detail-stats strong,
.feature-detail-stats span {
  display: block;
}

.feature-detail-stats strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.feature-detail-stats span {
  margin-top: 7px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.feature-detail-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: max-content;
  min-width: 232px;
  height: 58px;
  margin: 42px auto 0;
  padding: 0 4px 0 22px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
}

.feature-detail-button span:last-child {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
}

.feature-detail-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-settings {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding: 158px 0 72px;
}

.account-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.05);
}

.account-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  align-self: start;
  gap: 8px;
}

.account-sidebar .section-label {
  color: var(--deep);
  text-align: left;
}

.account-sidebar .section-label,
.account-sidebar a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.account-sidebar a {
  color: rgba(7, 9, 8, 0.62);
}

.account-sidebar .section-label,
.account-sidebar a:hover,
.account-sidebar a.is-active {
  color: var(--ink);
  background: var(--white);
}

.account-sidebar a.is-active {
  font-weight: 500;
}

.account-card {
  padding: 24px 24px 27px;
}

.account-form-section {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.1);
}

.account-about-section {
  padding-top: 42px;
}

.account-card h1,
.account-card h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.profile-photo button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(176, 126, 89, 0.7);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.profile-photo svg,
.account-submit svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.account-fields label {
  display: grid;
  gap: 9px;
  color: rgba(7, 9, 8, 0.64);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.account-fields input,
.account-fields textarea {
  width: 100%;
  border: 1px solid rgba(7, 9, 8, 0.1);
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  outline: none;
}

.account-fields input {
  height: 53px;
  padding: 0 16px;
}

.account-fields textarea {
  min-height: 143px;
  resize: vertical;
  padding: 18px 16px;
}

.account-fields input::placeholder,
.account-fields textarea::placeholder {
  color: rgba(7, 9, 8, 0.42);
  font-style: italic;
  font-weight: 400;
}

.account-wide {
  grid-column: 1 / -1;
}

.account-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  margin-top: 42px;
  padding: 5px 5px 5px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.account-submit span:last-child {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--deep-2);
  background: var(--lime);
}

.account-simple-card {
  min-height: 520px;
}

.account-muted-text {
  max-width: 560px;
  margin: -8px 0 0;
  color: rgba(7, 9, 8, 0.62);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.account-plan-summary,
.payment-preview,
.account-danger-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 152px;
  padding: 22px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.04);
}

.account-plan-summary > div > span,
.payment-preview > div > span,
.account-mini-tile span {
  display: block;
  margin-bottom: 9px;
  color: rgba(7, 9, 8, 0.58);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.account-plan-summary > div > strong,
.payment-preview > div > strong,
.account-danger-panel strong {
  display: block;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 500;
}

.account-plan-summary > div > p,
.payment-preview > div > p,
.account-danger-panel p {
  max-width: 460px;
  margin: 13px 0 0;
  color: rgba(7, 9, 8, 0.62);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
}

.account-inline-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  min-width: 178px;
  min-height: 56px;
  padding: 4px 4px 4px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

.account-inline-pill span:last-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--deep-2);
  background: var(--lime);
  transition: transform 0.3s ease;
}

.account-inline-pill:hover span:last-child {
  transform: rotate(45deg);
}

.account-inline-pill svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-mini-tile {
  min-height: 116px;
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.035);
}

.account-mini-tile strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
}

.payment-preview em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #58b976;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.account-danger-panel {
  align-items: flex-start;
  background: rgba(8, 66, 51, 0.08);
}

.account-danger-panel strong {
  font-size: 24px;
}

.account-danger-submit {
  background: #7d2b25;
}

.auth-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 47, 37, 0.94), rgba(7, 9, 8, 0.78)),
    url("assets/images/hero.jpg") center / cover no-repeat;
  opacity: 1;
  transform: none;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  padding: 36px;
}

.auth-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1fr);
  gap: 36px;
  width: min(100%, var(--content-max));
  min-height: calc(100vh - 72px);
  margin: auto;
  padding-top: 86px;
}

.auth-panel-compact {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
  align-content: center;
}

.auth-brand {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.auth-brand a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(0, 47, 37, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.auth-brand img {
  display: block;
  width: 142px;
  height: auto;
}

.auth-card {
  align-self: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.auth-state-card {
  display: grid;
  gap: 26px;
  justify-items: start;
  text-align: left;
}

.auth-state-card > img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 16px;
  border-radius: 50%;
  background: var(--deep-2);
}

.auth-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--deep);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.auth-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: 0;
}

.auth-copy p {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(7, 9, 8, 0.66);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.auth-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.auth-form label {
  display: grid;
  gap: 9px;
  color: rgba(7, 9, 8, 0.64);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.auth-form input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(7, 9, 8, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  padding: 0 18px;
}

.auth-form input::placeholder {
  color: rgba(7, 9, 8, 0.38);
  font-weight: 400;
}

.auth-form input:focus {
  border-color: rgba(0, 59, 45, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 59, 45, 0.08);
}

.auth-password-field {
  position: relative;
  display: block;
}

.auth-password-field input {
  padding-right: 78px;
}

.auth-password-field button {
  position: absolute;
  right: 8px;
  top: 50%;
  height: 38px;
  min-width: 58px;
  border: 0;
  border-radius: 999px;
  color: var(--deep-2);
  background: rgba(0, 47, 37, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(-50%);
  cursor: pointer;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.auth-row a,
.auth-check a,
.auth-switch a {
  color: var(--deep);
  font-weight: 500;
}

.auth-check {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  line-height: 1.25 !important;
}

.auth-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--deep);
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  margin-top: 6px;
  padding: 5px 5px 5px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}

.auth-submit span:last-child {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--deep-2);
  background: var(--lime);
  transition: transform 0.3s ease;
}

.auth-submit:hover span:last-child {
  transform: rotate(45deg);
}

.auth-submit svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-link-submit {
  width: min(100%, 280px);
  text-decoration: none;
}

.auth-switch {
  margin: 24px 0 0;
  color: rgba(7, 9, 8, 0.62);
  font-size: 16px;
  line-height: 1.35;
}

.auth-form-message {
  min-height: 18px;
  margin: -6px 0 0;
  color: #7d2b25;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.auth-aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 640px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.auth-aside img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: auto;
}

.auth-aside h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.94;
  font-weight: 300;
  letter-spacing: 0;
}

.auth-aside p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.orders-card {
  display: grid;
  gap: 14px;
}

.orders-card h1 {
  margin-bottom: 0;
  font-weight: 500;
}

.order-card {
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.04);
}

.order-meta-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.65fr) minmax(190px, 1fr) minmax(128px, 0.62fr);
  gap: 10px;
}

.order-meta-pill {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(7, 9, 8, 0.12);
  border-radius: 9px;
  color: rgba(7, 9, 8, 0.7);
  background: var(--white);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.order-meta-pill strong {
  margin-left: 7px;
  color: var(--ink);
  font-weight: 600;
}

.order-code-pill em {
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  line-height: 1;
  font-style: normal;
  font-weight: 600;
}

.order-product {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-top: 24px;
}

.order-product img {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  object-fit: cover;
}

.order-product h2 {
  margin: 0;
  color: var(--deep-2);
  font-size: 19px;
  line-height: 1.04;
  font-weight: 600;
}

.order-product strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.order-product p {
  margin: 12px 0 0;
  color: rgba(7, 9, 8, 0.7);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
}

.order-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.order-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 4px 4px 4px 18px;
  border: 1px solid rgba(7, 9, 8, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: #fbfbfb;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.order-action span:last-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
}

.order-action img {
  width: 17px;
  height: 17px;
}

.about-overview {
  padding: 102px var(--desktop-gutter) 128px;
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: var(--content-max);
  margin: 0 auto;
}

.about-card {
  min-height: 278px;
}

.about-card-primary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 28px 22px 28px;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 55% 120%, rgba(25, 203, 110, 0.62), transparent 54%),
    linear-gradient(145deg, #063429 0%, #004132 55%, #0e8350 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-card-primary h2 {
  margin: 0;
  font-size: 45px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0;
}

.about-card-primary p {
  max-width: 480px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.about-card-light {
  padding-top: 27px;
  color: var(--ink);
}

.about-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  color: var(--deep);
}

.about-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-light h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.about-card-light hr {
  width: 100%;
  height: 1px;
  margin: 26px 0 25px;
  border: 0;
  background: rgba(7, 9, 8, 0.1);
}

.about-card-light p {
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.about-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: end;
  max-width: var(--content-max);
  margin: 92px auto 0;
  padding-top: 44px;
  border-top: 1px solid rgba(7, 9, 8, 0.12);
}

.about-manifesto .section-label,
.about-privacy-panel .section-label,
.about-community .section-label {
  color: var(--deep);
  text-align: left;
}

.about-manifesto h2,
.about-privacy-panel h2,
.about-community h2 {
  margin: 14px 0 0;
  color: #050505;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
}

.about-manifesto p {
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--content-max);
  margin: 42px auto 0;
}

.about-principles article {
  min-height: 272px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(7, 9, 8, 0.045);
}

.about-principles span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
  font-size: 14px;
  font-weight: 400;
}

.about-principles h3 {
  margin: 42px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 500;
}

.about-principles p {
  margin: 18px 0 0;
  color: rgba(7, 9, 8, 0.68);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 400;
}

.about-privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 34px;
  max-width: var(--content-max);
  margin: 92px auto 0;
  padding: 34px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 47, 37, 0.98), rgba(0, 69, 52, 0.95)),
    #002f25;
}

.about-privacy-panel .section-label,
.about-privacy-panel h2 {
  color: var(--white);
}

.about-panel-copy p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.48;
  font-weight: 400;
}

.about-privacy-list {
  display: grid;
  gap: 12px;
  align-content: end;
}

.about-privacy-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

.about-ai-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 16px;
  max-width: var(--content-max);
  margin: 16px auto 0;
}

.about-ai-card {
  min-height: 320px;
  padding: 24px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(7, 9, 8, 0.045);
}

.about-ai-card.is-dark {
  color: var(--white);
  background:
    linear-gradient(145deg, #101211 0%, #18342b 58%, #0e8350 100%);
}

.about-ai-card > span {
  color: var(--lime);
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.about-ai-card h2 {
  margin: 44px 0 0;
  font-size: clamp(38px, 3.9vw, 58px);
  line-height: 0.98;
  font-weight: 300;
}

.about-ai-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.04;
  font-weight: 500;
}

.about-ai-card p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}

.about-ai-card ul {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.about-ai-card li {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.1);
  color: rgba(7, 9, 8, 0.72);
  font-size: 16px;
  line-height: 1.34;
  font-weight: 400;
}

.about-community {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr) auto;
  gap: 34px;
  align-items: end;
  max-width: var(--content-max);
  margin: 92px auto 0;
  padding-top: 44px;
  border-top: 1px solid rgba(7, 9, 8, 0.12);
}

.about-community p {
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 18px;
  line-height: 1.48;
  font-weight: 400;
}

.about-community-button {
  width: 260px;
  margin: 0;
}

.contact-main {
  padding: 102px var(--desktop-gutter) 128px;
  background: var(--soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.5fr) minmax(0, 1fr);
  gap: 18px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
  border-radius: 22px;
  overflow: hidden;
}

.contact-info-card {
  position: relative;
  min-height: 590px;
  color: var(--white);
  background: var(--deep-2);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 45, 34, 0.03) 0%, rgba(0, 45, 34, 0.64) 54%, rgba(0, 45, 34, 0.98) 100%);
  pointer-events: none;
}

.contact-card-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  width: 94px;
  height: 94px;
}

.contact-badge img {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-content {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 24px;
}

.contact-support-block {
  padding: 0 0 28px;
}

.contact-support-block + .contact-support-block {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-support-block h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 800;
}

.contact-support-block svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-support-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.contact-form-card {
  padding: 28px 24px 24px;
  color: var(--ink);
  background: var(--lime);
}

.contact-form-card h2 {
  margin: 0 0 48px;
  font-size: 45px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px 28px;
}

.contact-fields label {
  display: grid;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.contact-fields input,
.contact-fields textarea {
  width: 100%;
  border: 1px solid rgba(7, 9, 8, 0.13);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  outline: none;
}

.contact-fields input {
  height: 52px;
  padding: 0 15px;
}

.contact-fields textarea {
  min-height: 142px;
  resize: vertical;
  padding: 18px 15px;
}

.contact-fields input::placeholder,
.contact-fields textarea::placeholder {
  color: rgba(7, 9, 8, 0.44);
}

.contact-message-field {
  grid-column: 1 / -1;
}

.contact-consent {
  margin: 27px 0 27px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.contact-consent a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 5px 5px 5px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-2);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.contact-submit span:last-child {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--deep-2);
  background: var(--lime);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-submit:hover span:last-child {
  transform: rotate(45deg);
}

.contact-submit svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tools-section {
  position: relative;
  padding: 100px var(--desktop-gutter) 144px;
  background: var(--soft);
}

.floating-mark {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1300;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  font: inherit;
}

.floating-symbol {
  width: 54px;
  height: 54px;
  display: block;
  transform-origin: center;
}

.floating-chat {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: 148px;
  height: 44px;
  opacity: 0;
  transform: translate(10px, -50%) scale(0.96);
  transform-origin: right center;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-symbol.is-spin-forward {
  animation: floating-symbol-spin 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.floating-symbol.is-spin-back {
  animation: floating-symbol-spin-back 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.floating-mark:hover .floating-chat {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.floating-chat-box {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 260px;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(0, 45, 34, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 10px) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  text-align: left;
}

.floating-mark.is-chat-open .floating-chat-box {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

@keyframes floating-symbol-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floating-symbol-spin-back {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.section-label {
  color: var(--deep);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.tools-section h2,
.why-section h2,
.footer-panel h2 {
  margin: 23px 0 0;
  font-size: 96px;
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: 0;
  text-align: center;
}

.tools-section h2 em {
  font-weight: 800;
  font-style: italic;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 20px;
  margin-top: 86px;
}

.tool-card {
  position: relative;
  height: 360px;
  min-height: 360px;
  overflow: hidden;
  border-radius: 14px;
  background: #d8d8d8;
}

.tool-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.tool-card:hover > img,
.tool-card:focus-within > img {
  transform: scale(1.15) rotate(-5deg);
}

.tool-card:nth-child(1) img {
  object-position: center 62%;
}

.tool-card:nth-child(2) img {
  object-position: center center;
}

.tool-card:nth-child(3) img,
.tool-card:nth-child(4) img,
.tool-card:nth-child(5) img,
.tool-card:nth-child(6) img {
  object-position: center center;
}

.tool-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 108px;
  padding: 22px 24px;
  border-radius: 8px;
  color: var(--deep);
  background: var(--white);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
}

.tool-info strong {
  display: block;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
}

.tool-info small {
  display: block;
  margin-top: 8px;
  color: #1d1f20;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.small-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.tool-card:hover .small-arrow,
.tool-card:focus-within .small-arrow {
  transform: rotate(45deg);
}

.offer-shell {
  padding: 0 var(--tight-gutter) 105px;
  background: var(--soft);
}

.offer-panel,
.footer-panel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 13%, rgba(24, 187, 96, 0.42), transparent 31%),
    radial-gradient(circle at 88% 24%, rgba(9, 101, 61, 0.34), transparent 33%),
    linear-gradient(145deg, #003a2b 0%, #007f4d 38%, #003126 100%);
}

.offer-panel {
  min-height: 0;
  padding: 36px 24px 62px;
}

.offer-label {
  color: var(--white);
  text-align: center;
}

.offer-panel h2 {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 88px;
  line-height: 0.97;
  font-weight: 300;
}

.offer-panel h2 em {
  display: block;
  margin-top: -3px;
  padding-right: 0;
  text-align: right;
  font-size: 76px;
  font-weight: 800;
  font-style: italic;
}

.seal {
  position: absolute;
  z-index: 2;
  top: 115px;
  left: calc(48.4% + 10px);
  width: 101px;
  height: 101px;
}

.seal img {
  width: 100%;
  height: 100%;
  display: block;
}

.accordion {
  margin-top: 80px;
}

.feature-item {
  overflow: hidden;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    color 220ms ease,
    background-color 280ms ease,
    border-color 280ms ease,
    border-radius 280ms ease;
}

.feature-item.is-open {
  border-bottom-color: transparent;
  border-radius: 14px;
  color: var(--ink);
  background: var(--lime);
}

.feature-toggle {
  width: 100%;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.feature-item > .feature-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  padding: 14px 10px 17px 0;
  text-align: left;
}

.feature-item.is-open > .feature-toggle {
  min-height: 0;
  padding: 28px 24px 21px;
}

.feature-title {
  display: block;
  font-size: 48px;
  line-height: 1.05;
  font-weight: 300;
  font-style: normal;
  transition: font-size 280ms ease;
}

.feature-item.is-open .feature-title {
  line-height: 1;
  font-style: normal;
}

.feature-toggle small {
  display: block;
  margin-top: 9px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.feature-item.is-open .feature-toggle small {
  display: none;
}

.feature-icon {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    opacity 220ms ease,
    transform 280ms ease;
}

.feature-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.feature-item.is-open .feature-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.feature-body {
  display: grid;
  grid-template-columns: 1fr 648px;
  gap: 40px;
  max-height: 0;
  margin: 0 24px;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid rgba(0, 59, 45, 0);
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    max-height 520ms ease,
    margin-bottom 520ms ease,
    padding-top 520ms ease,
    opacity 260ms ease,
    border-color 320ms ease,
    transform 420ms ease;
}

.feature-item.is-open .feature-body {
  max-height: 920px;
  min-height: 338px;
  margin-bottom: 24px;
  padding-top: 27px;
  opacity: 1;
  border-top-color: rgba(0, 59, 45, 0.17);
  transform: translateY(0);
  pointer-events: auto;
}

.feature-body strong {
  display: block;
  margin-bottom: 45px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.feature-body p {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.feature-body img {
  align-self: start;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 62%;
}

.discover-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 62px;
  margin-top: 118px;
  padding: 0 5px 0 25px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.discover-button span:last-child {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
}

.why-section {
  padding: 27px var(--desktop-gutter) 192px;
  background: var(--soft);
}

.why-section h2 {
  margin-top: 18px;
  font-size: 97px;
  line-height: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 100px;
}

.audience-card {
  position: relative;
  min-height: 599px;
  overflow: hidden;
  border-radius: 14px;
  background: #d8d8d8;
}

.audience-card > img {
  width: 100%;
  height: 599px;
  object-fit: cover;
}

.audience-card:nth-child(1) > img {
  object-position: center center;
}

.audience-card:nth-child(2) > img {
  object-position: center center;
}

.audience-card:nth-child(3) > img {
  object-position: center center;
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.16) 43%, rgba(0, 0, 0, 0.18) 100%);
}

.audience-icon {
  position: absolute;
  top: 29px;
  left: 31px;
  color: var(--white);
}

.audience-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.8;
}

.audience-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  min-height: 268px;
  padding: 24px 24px 25px;
  border-radius: 6px;
  background: var(--white);
}

.audience-copy h3 {
  margin: 0;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.audience-copy hr {
  margin: 24px 0 28px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.audience-copy strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-copy p {
  margin: 0;
  color: #232323;
  font-size: 16.5px;
  line-height: 1.45;
  font-weight: 400;
}

.resources-section h2 {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.resource-card {
  display: block;
  color: inherit;
}

.resource-card .audience-copy {
  min-height: 282px;
}

.resource-card .audience-copy h3 {
  max-width: 290px;
}

.article-body {
  padding: 105px var(--desktop-gutter) 128px;
  background: var(--soft);
}

.article-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: end;
  max-width: var(--content-max);
  margin: 0 auto;
}

.article-intro .section-label {
  color: var(--deep);
  text-align: left;
}

.article-intro h2 {
  max-width: 790px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 76px;
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
}

.article-intro p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.article-feature-image {
  max-width: var(--content-max);
  height: 520px;
  margin: 74px auto 0;
  overflow: hidden;
  border-radius: 14px;
  background: #d8d8d8;
}

.article-feature-image img,
.article-content figure img,
.article-photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 78px;
  max-width: var(--content-max);
  margin: 78px auto 0;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 14px;
  color: var(--white);
  background: var(--deep);
}

.article-sidebar span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.article-sidebar strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}

.article-content {
  max-width: 790px;
}

.article-content section + section,
.article-content figure + section,
.article-content blockquote + section {
  margin-top: 56px;
}

.article-content h3,
.article-photo-row h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
}

.article-content p,
.article-photo-row p {
  margin: 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.article-content p + p {
  margin-top: 22px;
}

.article-content figure {
  height: 420px;
  margin: 62px 0 0;
  overflow: hidden;
  border-radius: 14px;
  background: #d8d8d8;
}

.article-content blockquote {
  margin: 64px 0 0;
  padding: 34px 36px;
  border-radius: 14px;
  color: var(--white);
  background: var(--deep);
  font-size: 35px;
  line-height: 1.12;
  font-weight: 300;
}

.article-photo-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 64px;
}

.article-photo-row img {
  min-height: 360px;
  border-radius: 14px;
}

.legal-page {
  background: var(--soft);
}

.legal-hero {
  padding: 132px 0 54px;
  background: var(--soft);
}

.legal-hero-content {
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(7, 9, 8, 0.1);
}

.legal-hero .section-label {
  color: var(--deep);
  text-align: left;
}

.legal-hero h1 {
  max-width: 1020px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(7, 9, 8, 0.72);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.legal-content {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  width: min(calc(100% - 72px), var(--content-max));
  margin: 0 auto;
  padding: 68px 0 118px;
}

.legal-toc {
  position: sticky;
  top: 116px;
  display: grid;
  align-self: start;
  gap: 8px;
}

.legal-toc a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(7, 9, 8, 0.68);
  background: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 400;
}

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

.legal-article {
  display: grid;
  gap: 18px;
}

.legal-article section {
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.035);
}

.legal-article h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-article p,
.legal-article li {
  color: rgba(7, 9, 8, 0.73);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 400;
}

.legal-article p {
  margin: 0;
}

.legal-article p + p,
.legal-article ul + p,
.legal-article p + ul {
  margin-top: 16px;
}

.legal-article ul {
  margin: 0;
  padding-left: 22px;
}

.legal-article li + li {
  margin-top: 10px;
}

.legal-article strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-article a {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-note {
  padding-top: 18px;
  border-top: 1px solid rgba(7, 9, 8, 0.1);
  font-size: 15px !important;
}

.footer-panel {
  min-height: 1230px;
  margin: 0 12px 16px;
  padding: 78px 24px 28px;
}

.footer-panel .section-label {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.footer-panel h2 {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  color: var(--white);
  font-size: 101px;
  line-height: 0.9;
}

.footer-intro {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 43px auto 0;
  color: var(--white);
  font-size: 23px;
  line-height: 1.36;
  font-weight: 300;
  text-align: center;
}

.pricing-button {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  min-width: 222px;
  margin: 25px auto 0;
}

.footer-clover {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 871px;
  height: 871px;
  opacity: 0.35;
  object-fit: contain;
  filter: blur(0.1px);
  transform: translate(-50%, -50%);
}

.footer-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 80px;
}

.footer-links section {
  min-height: 347px;
  padding: 26px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
}

.footer-links h3 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 15px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 300;
}

.footer-wordmark {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 72px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}

.footer-symbol {
  width: 31px;
  height: 31px;
  display: block;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom span {
  margin: 0 11px;
}

@media (max-width: 1180px) {
  .nav-pill {
    gap: 18px;
    padding-right: 24px;
  }

  .hero h1,
  .tools-section h2,
  .why-section h2,
  .footer-panel h2 {
    font-size: 72px;
  }

  .offer-panel h2 {
    font-size: 72px;
  }

  .offer-panel h2 em {
    font-size: 64px;
  }

  .feature-body {
    grid-template-columns: 1fr 44%;
  }

  .feature-title {
    font-size: 40px;
  }

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

  .about-card-primary {
    grid-column: 1 / -1;
  }

  .about-manifesto,
  .about-privacy-panel,
  .about-ai-section,
  .about-community {
    grid-template-columns: 1fr;
  }

  .about-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-community-button {
    width: min(320px, 100%);
  }

  .account-settings {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .profile-info-grid {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .order-meta-grid {
    grid-template-columns: 1fr;
  }

  .order-actions {
    grid-template-columns: 1fr;
  }

  .features-hero-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .features-hero p {
    max-width: 620px;
    margin-bottom: 0;
  }

  .pricing-hero-content,
  .pricing-lifetime {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pricing-lifetime {
    padding-top: 44px;
  }

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

  .pricing-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .comparison-grid {
    grid-template-columns: 150px repeat(3, minmax(155px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .feature-detail-hero-grid,
  .feature-detail-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-detail-hero h1 {
    max-width: 900px;
    font-size: 76px;
  }

  .feature-detail-proof {
    max-width: 620px;
  }

  .feature-detail-proof strong {
    margin-bottom: 22px;
  }

  .feature-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-detail-cta h2,
  .feature-detail-cta h2 strong {
    font-size: 64px;
  }

  .feature-detail-seal {
    left: 72%;
  }

  .feature-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 62px;
  }

  .article-intro,
  .article-layout,
  .article-photo-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .projects-topline {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .projects-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .project-settings-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 56px);
    overflow: auto;
  }

  .project-settings-preview {
    min-height: 280px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: 520px;
  }

  .footer-wordmark {
    bottom: 78px;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 18px;
    left: 50%;
    right: auto;
    width: calc(100% - 36px);
    gap: 10px;
    transform: translateX(-50%);
  }

  .nav-pill a:not(.brand) {
    display: none;
  }

  .nav-pill {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 70px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: none;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }

  .brand {
    margin-right: 0;
  }

  .brand-logo {
    width: clamp(122px, 34vw, 166px);
  }

  .header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
  }

  .header-divider {
    display: block;
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.34);
  }

  .profile-pill {
    display: flex;
    min-width: 112px;
    height: 70px;
    padding: 7px 18px 7px 7px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.28);
    box-shadow: none;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
  }

  .print-button {
    display: none;
  }

  .profile-pill img {
    width: 56px;
    height: 56px;
  }

  .profile-pill svg {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 0;
    border-radius: 50%;
    color: var(--deep-2);
    background: var(--lime);
    cursor: pointer;
  }

  .mobile-menu-button span {
    position: absolute;
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
  }

  .mobile-menu-button span:nth-child(1) {
    transform: translateY(-9px);
  }

  .mobile-menu-button span:nth-child(3) {
    transform: translateY(9px);
  }

  .arrow-circle {
    width: 49px;
    height: 49px;
  }

  .features-page .nav-pill,
  .features-page .profile-pill,
  .account-page .nav-pill,
  .account-page .profile-pill {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
  }

  .features-page .header-divider,
  .account-page .header-divider {
    background: rgba(7, 9, 8, 0.12);
  }

  .features-page .mobile-menu-button,
  .account-page .mobile-menu-button {
    color: var(--white);
    background: var(--deep-2);
  }

  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: block;
    padding: 34px 33px 34px;
    color: var(--white);
    background: var(--deep-2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 1px auto;
    gap: 24px;
    align-items: center;
  }

  .mobile-nav-brand,
  .mobile-nav-profile {
    display: flex;
    align-items: center;
    min-height: 130px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-brand {
    padding: 0 36px;
  }

  .mobile-nav-brand img {
    width: min(240px, 100%);
  }

  .mobile-nav-profile {
    gap: 24px;
    padding: 9px 31px 9px 9px;
    border: 0;
    color: var(--white);
    cursor: pointer;
  }

  .mobile-nav-profile img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 38%;
  }

  .mobile-nav-profile svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-divider {
    width: 1px;
    height: 112px;
    background: rgba(255, 255, 255, 0.34);
  }

  .mobile-menu-close {
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    cursor: pointer;
  }

  .mobile-menu-close svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .mobile-nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    margin-top: 66px;
  }

  .mobile-nav-links a,
  .mobile-nav-play {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    font-weight: 700;
  }

  .mobile-nav-links a {
    min-height: 130px;
    padding: 0 8px 0 50px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: 34px;
  }

  .mobile-nav-links a span:last-child,
  .mobile-nav-play span:last-child {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--deep);
  }

  .mobile-nav-links a span:last-child {
    width: 110px;
    height: 110px;
  }

  .mobile-nav-links svg,
  .mobile-nav-play svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav-play {
    min-height: 130px;
    margin-top: 26px;
    padding: 0 8px 0 50px;
    color: var(--ink);
    background: var(--lime);
    font-size: 34px;
  }

  .mobile-nav-play span:last-child {
    width: 112px;
    height: 112px;
    color: var(--white);
    background: var(--deep-2);
  }

  .hero {
    min-height: 710px;
  }

  .hero-copy {
    width: 100%;
    padding: 120px 22px 0;
  }

  .hero h1 {
    font-size: clamp(58px, 15vw, 84px);
  }

  .designer-proof {
    left: 22px;
    right: 22px;
    bottom: 32px;
    width: auto;
  }

  .account-popup {
    right: 18px;
  }

  .account-settings {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding-top: 118px;
  }

  .account-sidebar {
    position: static;
  }

  .features-page .site-header {
    width: calc(100% - 36px);
  }

  .features-hero {
    padding: 120px 0 54px;
  }

  .features-hero-content {
    width: calc(100% - 36px);
  }

  .features-hero h1 {
    font-size: clamp(58px, 15vw, 84px);
    white-space: normal;
  }

  .features-hero p {
    font-size: 19px;
  }

  .features-tools {
    padding: 36px 18px 96px;
  }

  .pricing-hero {
    padding: 122px 0 50px;
  }

  .pricing-hero-content,
  .pricing-lifetime,
  .pricing-plans,
  .pricing-comparison,
  .pricing-faq {
    width: calc(100% - 36px);
  }

  .pricing-hero h1 {
    font-size: clamp(50px, 13vw, 78px);
  }

  .pricing-lifetime h2,
  .pricing-comparison h2,
  .pricing-faq h2 {
    font-size: clamp(40px, 10vw, 60px);
  }

  .pricing-seal-star {
    left: auto;
    right: 18px;
    top: 100px;
    width: 54px;
    height: 54px;
  }

  .pricing-print-image {
    width: min(300px, 100%);
  }

  .lifetime-card {
    padding: 20px;
  }

  .pricing-toggle {
    width: min(330px, 100%);
  }

  .pricing-card-head strong {
    font-size: 32px;
  }

  .comparison-grid {
    margin-top: 40px;
  }

  .pricing-seal-question {
    left: auto;
    right: 14%;
    width: 50px;
    height: 50px;
  }

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

  .feature-detail-hero,
  .feature-detail-hero-content {
    min-height: 720px;
  }

  .feature-detail-hero-content {
    width: calc(100% - 36px);
    padding: 118px 0 38px;
  }

  .feature-detail-hero h1 {
    font-size: clamp(58px, 15vw, 84px);
  }

  .feature-detail-body {
    padding: 72px 18px 96px;
  }

  .feature-detail-intro h2 {
    font-size: clamp(56px, 14vw, 82px);
  }

  .feature-detail-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .feature-detail-card,
  .feature-detail-image-card,
  .feature-detail-image-card img {
    min-height: 300px;
  }

  .feature-detail-cta {
    width: calc(100% - 16px);
    min-height: 720px;
  }

  .feature-detail-cta-content {
    min-height: 720px;
    padding: 30px 18px 24px;
  }

  .feature-detail-cta h2,
  .feature-detail-cta h2 strong {
    font-size: clamp(46px, 12vw, 70px);
  }

  .feature-detail-cta h2 strong {
    text-align: left;
  }

  .feature-detail-seal {
    position: static;
    width: 78px;
    height: 78px;
    margin: 24px 0 0;
    transform: none;
  }

  .feature-detail-stats {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .feature-detail-button {
    margin-top: 30px;
  }

  .article-body {
    padding: 72px 18px 96px;
  }

  .article-intro h2 {
    font-size: clamp(44px, 11vw, 70px);
  }

  .article-intro p,
  .article-content p,
  .article-photo-row p {
    font-size: 18px;
  }

  .article-feature-image,
  .article-content figure {
    height: 320px;
    margin-top: 44px;
  }

  .article-layout {
    margin-top: 48px;
  }

  .article-sidebar {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .article-content h3,
  .article-photo-row h3 {
    font-size: 28px;
  }

  .article-content blockquote {
    padding: 28px 24px;
    font-size: 28px;
  }

  .projects-shell {
    padding-top: 120px;
  }

  .projects-content {
    width: calc(100% - 36px);
  }

  .projects-topline h1 {
    font-size: clamp(42px, 12vw, 76px);
  }

  .projects-actions {
    gap: 10px;
  }

  .projects-search {
    order: 1;
    width: 100%;
  }

  .project-view-toggle,
  .new-project-button {
    order: 2;
  }

  .projects-divider {
    margin: 30px 0 42px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .project-open-button {
    left: calc(50% - 32px);
    width: min(178px, calc(100% - 104px));
    height: 54px;
    padding: 0 5px 0 18px;
    font-size: 16px;
  }

  .project-open-button span:last-child,
  .project-settings {
    width: 48px;
    height: 48px;
  }

  .project-settings {
    right: 14px;
  }

  .project-settings-modal {
    width: calc(100vw - 28px);
    padding: 16px;
    border-radius: 20px;
  }

  .project-settings-field {
    min-height: 58px;
    padding: 0 18px;
    font-size: 18px;
  }

  .project-settings-actions {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    min-height: 0;
  }

  .auth-shell {
    padding: 18px;
  }

  .auth-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: calc(100vh - 36px);
    padding-top: 86px;
  }

  .auth-brand {
    left: 0;
    top: 0;
  }

  .auth-card,
  .auth-aside {
    padding: 28px;
  }

  .auth-aside {
    min-height: 420px;
  }

  .account-plan-summary,
  .payment-preview,
  .account-danger-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-mini-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    padding: 14px;
  }

  .order-meta-pill {
    min-height: 40px;
    font-size: 15px;
  }

  .order-product {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    margin-top: 22px;
  }

  .order-product img {
    width: 58px;
    height: 58px;
  }

  .order-product h2 {
    font-size: 18px;
  }

  .order-product strong {
    font-size: 15px;
  }

  .order-product p {
    margin-top: 11px;
    font-size: 14px;
  }

  .order-action {
    min-height: 46px;
    padding-left: 16px;
    font-size: 15px;
  }

  .order-action span:last-child {
    width: 38px;
    height: 38px;
  }

  .profile-info-grid {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }

  .tools-section {
    padding: 72px 18px 96px;
  }

  .floating-mark {
    width: 72px;
    height: 72px;
    right: 18px;
    bottom: 18px;
  }

  .floating-symbol {
    width: 42px;
    height: 42px;
  }

  .floating-chat {
    width: 128px;
    height: auto;
    right: calc(100% + 10px);
  }

  .floating-chat-box {
    right: 0;
    bottom: calc(100% + 12px);
    width: min(260px, calc(100vw - 36px));
    transform-origin: right bottom;
  }

  .tools-section h2,
  .why-section h2,
  .footer-panel h2 {
    font-size: clamp(46px, 11vw, 70px);
  }

  .about-overview {
    padding: 72px 18px 96px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-card-primary {
    min-height: 360px;
  }

  .about-card-primary h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .about-card-light {
    padding-top: 8px;
  }

  .about-icon {
    margin-bottom: 34px;
  }

  .about-manifesto,
  .about-privacy-panel,
  .about-ai-section,
  .about-community {
    margin-top: 58px;
  }

  .about-manifesto {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 34px;
  }

  .about-manifesto h2,
  .about-privacy-panel h2,
  .about-community h2 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .about-manifesto p,
  .about-panel-copy p,
  .about-community p {
    font-size: 17px;
  }

  .about-principles {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .about-principles article {
    min-height: 0;
    padding: 18px;
  }

  .about-principles h3 {
    margin-top: 30px;
  }

  .about-privacy-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .about-ai-section {
    grid-template-columns: 1fr;
  }

  .about-ai-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .about-ai-card h2 {
    margin-top: 34px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .about-ai-card ul {
    margin-top: 28px;
  }

  .about-community {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 34px;
  }

  .about-community-button {
    width: 100%;
  }

  .contact-main {
    padding: 72px 18px 96px;
  }

  .contact-form-card {
    padding: 26px 18px 20px;
  }

  .contact-form-card h2 {
    margin-bottom: 34px;
    font-size: clamp(44px, 11vw, 62px);
  }

  .contact-fields {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-info-card {
    min-height: 590px;
  }

  .tools-grid,
  .audience-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 330px;
  }

  .tool-card img {
    min-height: 330px;
  }

  .offer-shell {
    padding: 0 8px 76px;
  }

  .offer-panel {
    min-height: 0;
    padding: 28px 18px 42px;
  }

  .offer-panel h2 {
    font-size: clamp(46px, 11vw, 70px);
  }

  .offer-panel h2 em {
    margin-top: 6px;
    font-size: clamp(44px, 11vw, 66px);
    text-align: left;
  }

  .seal {
    top: 135px;
    left: auto;
    right: 30px;
    width: 64px;
    height: 64px;
  }

  .accordion {
    margin-top: 72px;
  }

  .feature-title {
    font-size: clamp(34px, 8vw, 48px);
  }

  .feature-body {
    display: flex;
    flex-direction: column;
  }

  .feature-body img {
    height: 260px;
  }

  .discover-button {
    margin-top: 36px;
  }

  .why-section {
    padding: 28px 18px 86px;
  }

  .audience-grid {
    margin-top: 54px;
  }

  .footer-panel {
    min-height: 0;
    margin: 0 8px 8px;
    padding: 60px 18px 34px;
  }

  .footer-intro {
    font-size: 19px;
  }

  .footer-links {
    margin-top: 54px;
  }

  .footer-links section {
    min-height: auto;
  }

  .footer-wordmark {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 56px;
  }

  .footer-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 12px;
    left: 50%;
    right: auto;
    width: calc(100% - 24px);
    gap: 8px;
    transform: translateX(-50%);
  }

  .header-actions {
    display: flex;
    gap: 8px;
  }

  .nav-pill {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-logo {
    width: clamp(112px, 31vw, 136px);
  }

  .profile-pill {
    min-width: 90px;
    height: 64px;
    gap: 8px;
    padding: 6px 12px 6px 6px;
  }

  .profile-pill img {
    width: 52px;
    height: 52px;
  }

  .profile-pill svg {
    width: 18px;
    height: 18px;
  }

  .header-divider {
    display: block;
    height: 48px;
  }

  .mobile-menu-button {
    width: 64px;
    height: 64px;
  }

  .mobile-menu-button span {
    width: 27px;
    height: 3px;
  }

  .mobile-menu-button span:nth-child(1) {
    transform: translateY(-8px);
  }

  .mobile-menu-button span:nth-child(3) {
    transform: translateY(8px);
  }

  .mobile-nav-overlay {
    padding: 18px 12px 24px;
    overflow-y: auto;
  }

  .mobile-nav-top {
    gap: 8px;
  }

  .mobile-nav-brand,
  .mobile-nav-profile {
    min-height: 64px;
  }

  .mobile-nav-brand {
    padding: 0 18px;
  }

  .mobile-nav-brand img {
    width: 132px;
  }

  .mobile-nav-profile {
    gap: 8px;
    padding: 6px 12px 6px 6px;
  }

  .mobile-nav-profile img {
    width: 52px;
    height: 52px;
  }

  .mobile-nav-profile svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-divider {
    height: 50px;
  }

  .mobile-menu-close {
    width: 64px;
    height: 64px;
  }

  .mobile-menu-close svg {
    width: 28px;
    height: 28px;
  }

  .mobile-nav-links {
    gap: 12px 8px;
    margin-top: 46px;
  }

  .mobile-nav-links a {
    min-height: 76px;
    padding: 0 5px 0 20px;
    font-size: 20px;
  }

  .mobile-nav-links a span:last-child {
    width: 66px;
    height: 66px;
  }

  .mobile-nav-links svg,
  .mobile-nav-play svg {
    width: 28px;
    height: 28px;
  }

  .mobile-nav-play {
    min-height: 76px;
    margin-top: 26px;
    padding: 0 5px 0 22px;
    font-size: 22px;
  }

  .mobile-nav-play span:last-child {
    width: 66px;
    height: 66px;
  }

  .account-card {
    padding: 22px 18px;
  }

  .orders-card {
    gap: 14px;
  }

  .order-card {
    padding: 12px;
    border-radius: 16px;
  }

  .order-meta-pill {
    flex-wrap: wrap;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .order-meta-pill strong {
    margin-left: 0;
  }

  .order-code-pill em {
    margin-left: 0;
    padding: 7px 14px;
    font-size: 13px;
  }

  .order-product {
    grid-template-columns: 1fr;
  }

  .order-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45;
  }

  .order-product h2 {
    font-size: 18px;
  }

  .order-product strong {
    font-size: 14px;
  }

  .order-product p {
    font-size: 14px;
  }

  .order-actions {
    margin-top: 22px;
  }

  .order-action {
    min-height: 44px;
    padding-left: 14px;
    font-size: 14px;
  }

  .order-action span:last-child {
    width: 36px;
    height: 36px;
  }

  .account-fields {
    grid-template-columns: 1fr;
  }

  .account-submit {
    min-height: 60px;
    padding-left: 20px;
  }

  .account-submit span:last-child {
    width: 50px;
    height: 50px;
  }

  .auth-shell {
    padding: 12px;
  }

  .auth-panel {
    min-height: calc(100vh - 24px);
    padding-top: 78px;
  }

  .auth-brand a {
    min-height: 64px;
    padding: 0 18px;
  }

  .auth-brand img {
    width: 132px;
  }

  .auth-card,
  .auth-aside {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .auth-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .auth-copy p,
  .auth-aside p {
    font-size: 16px;
  }

  .auth-form-grid,
  .auth-row {
    grid-template-columns: 1fr;
  }

  .auth-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-submit {
    min-height: 60px;
    padding-left: 20px;
  }

  .auth-submit span:last-child {
    width: 50px;
    height: 50px;
  }

  .auth-aside {
    min-height: 360px;
  }

  .auth-aside h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .account-plan-summary,
  .payment-preview,
  .account-danger-panel {
    padding: 18px;
  }

  .account-plan-summary strong,
  .payment-preview strong {
    font-size: 26px;
    line-height: 1.1;
  }

  .account-inline-pill {
    width: 100%;
  }

  .hero-copy {
    padding-top: 105px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .designer-proof p {
    font-size: 18px;
  }

  .tools-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .pricing-hero {
    padding-top: 108px;
  }

  .pricing-hero-content {
    padding-bottom: 28px;
  }

  .pricing-hero h1 {
    font-size: 46px;
  }

  .pricing-lifetime,
  .pricing-plans,
  .pricing-comparison,
  .pricing-faq {
    width: calc(100% - 24px);
  }

  .pricing-lifetime h2,
  .pricing-comparison h2,
  .pricing-faq h2 {
    font-size: 42px;
  }

  .pricing-seal-star,
  .pricing-seal-question {
    display: none;
  }

  .pricing-toggle {
    height: 44px;
    margin-bottom: 24px;
  }

  .pricing-toggle button {
    font-size: 12px;
  }

  .pricing-card-head {
    min-height: 112px;
    padding: 18px;
  }

  .pricing-card-head strong {
    font-size: 30px;
  }

  .pricing-card-head span {
    font-size: 13px;
  }

  .pricing-feature-list {
    gap: 11px;
    padding: 20px 18px 18px;
  }

  .pricing-feature-list li {
    font-size: 13px;
  }

  .pricing-card-copy {
    margin: auto 18px 18px;
    font-size: 12px;
  }

  .pricing-plan-button {
    height: 42px;
    margin: 0 18px 18px;
  }

  .pricing-plan-button span:last-child {
    width: 34px;
    height: 34px;
  }

  .comparison-grid {
    grid-template-columns: 128px repeat(3, 150px);
    gap: 10px;
  }

  .comparison-feature-list span,
  .comparison-column span {
    min-height: 36px;
    font-size: 11px;
  }

  .pricing-faq {
    padding-bottom: 78px;
  }

  .pricing-faq summary {
    min-height: 52px;
    padding: 0 16px;
  }

  .projects-content {
    width: calc(100% - 24px);
  }

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

  .projects-page.is-list-view .project-card {
    grid-template-columns: 1fr;
  }

  .projects-page.is-list-view .project-cover {
    aspect-ratio: 1.36;
    min-height: 0;
    border-radius: 14px 14px 0 0;
  }

  .projects-page.is-list-view .project-meta {
    border-radius: 0 0 14px 14px;
  }

  .new-project-button {
    order: 3;
    width: 100%;
  }

  .project-view-toggle {
    width: max-content;
  }

  .project-settings-preview {
    min-height: 220px;
  }

  .project-cancel-button,
  .project-save-button {
    min-height: 58px;
    font-size: 18px;
  }

  .tool-info {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .tool-info strong {
    font-size: 21px;
  }

  .small-arrow {
    width: 48px;
    height: 48px;
  }

  .contact-info-content {
    left: 18px;
    right: 18px;
  }

  .contact-support-block h2 {
    font-size: 20px;
  }

  .contact-submit {
    min-height: 60px;
    padding-left: 20px;
  }

  .contact-submit span:last-child {
    width: 50px;
    height: 50px;
  }

  .feature-item > .feature-toggle {
    padding: 22px 18px 18px;
  }

  .feature-body {
    margin: 0 18px;
  }

  .feature-item.is-open .feature-body {
    margin-bottom: 18px;
  }

  .feature-item > .feature-toggle {
    min-height: 105px;
  }

  .audience-card,
  .audience-card > img {
    min-height: 560px;
    height: 560px;
  }

  .audience-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p {
    margin-top: 20px;
  }

  .footer-bottom span {
    margin: 0 6px;
  }
}

.print-button,
.pricing-button,
.discover-button,
.feature-detail-button,
.contact-submit,
.account-submit,
.pricing-flow-submit,
.new-project-button,
.project-open-button,
.project-cancel-button,
.project-save-button,
.mobile-nav-play {
  font-family: "Matter", Arial, sans-serif;
  font-weight: 400;
}

@media (max-width: 920px) {
  .pricing-flow-hero {
    width: calc(100% - 36px);
    padding: 120px 0 40px;
  }

  .pricing-flow-hero h1,
  .checkout-success h1 {
    font-size: clamp(54px, 13vw, 84px);
  }

  .pricing-flow-hero p,
  .checkout-success p {
    font-size: 19px;
  }

  .pricing-flow-shell {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 24px;
    padding: 18px 0 96px;
  }

  .pricing-flow-summary {
    position: static;
  }

  .pricing-flow-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-success {
    width: calc(100% - 36px);
    padding: 132px 0 96px;
  }

  .legal-hero {
    padding: 120px 0 46px;
  }

  .legal-hero-content,
  .legal-content {
    width: calc(100% - 36px);
  }

  .legal-hero h1 {
    font-size: clamp(54px, 13vw, 86px);
  }

  .legal-hero p {
    font-size: 19px;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 96px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .pricing-flow-hero {
    width: calc(100% - 24px);
    padding-top: 108px;
  }

  .pricing-flow-hero h1,
  .checkout-success h1 {
    font-size: 48px;
  }

  .pricing-flow-hero p,
  .checkout-success p {
    font-size: 17px;
  }

  .pricing-flow-shell {
    width: calc(100% - 24px);
    padding-bottom: 78px;
  }

  .pricing-flow-summary,
  .pricing-flow-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .pricing-flow-summary h2,
  .pricing-flow-card h2 {
    font-size: 34px;
  }

  .pricing-flow-summary-price {
    font-size: 42px;
  }

  .pricing-flow-fields,
  .pricing-flow-options {
    grid-template-columns: 1fr;
  }

  .pricing-flow-submit {
    min-height: 60px;
    padding-left: 20px;
    font-size: 15px;
  }

  .pricing-flow-submit span:last-child {
    width: 50px;
    height: 50px;
  }

  .checkout-success {
    width: calc(100% - 24px);
    padding: 116px 0 78px;
  }

  .checkout-success-summary {
    display: grid;
    justify-items: center;
    width: 100%;
    border-radius: 24px;
  }

  .checkout-success-link {
    width: 100%;
  }

  .pricing-flow-page .floating-mark {
    right: 12px;
    bottom: 12px;
    width: 64px;
    height: 64px;
  }

  .pricing-flow-page .floating-symbol {
    width: 38px;
    height: 38px;
  }

  .about-page .floating-mark {
    right: 12px;
    bottom: 12px;
    width: 64px;
    height: 64px;
  }

  .about-page .floating-symbol {
    width: 38px;
    height: 38px;
  }

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

  .legal-hero-content,
  .legal-content {
    width: calc(100% - 24px);
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .legal-hero p {
    font-size: 17px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-article section {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .legal-article h2 {
    font-size: 24px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 16px;
  }
}
