:root {
  --green: #347d16;
  --green-2: #5fae27;
  --green-3: #edf7e7;
  --yellow: #f5bd10;
  --ink: #090909;
  --text: #1f241f;
  --muted: #5e665d;
  --line: #dfe8da;
  --panel: #f7fbf4;
  --white: #ffffff;
  --black: #050706;
  --shadow: 0 18px 40px rgba(33, 77, 20, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(223, 232, 218, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-footer {
  color: var(--white);
  font-size: 24px;
}

.brand-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
}

.site-nav a,
.nav-menu > button {
  position: relative;
  border: 0;
  background: transparent;
  color: #121412;
  padding: 9px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav a::after,
.nav-menu > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.nav-menu > button:hover::after,
.site-nav [aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav [aria-current="page"] {
  color: var(--green);
}

.nav-menu {
  position: relative;
  display: inline-flex;
}

.nav-menu > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav-menu-list {
  position: absolute;
  right: 0;
  top: 100%;
  display: none;
  gap: 4px;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-menu:hover .nav-menu-list,
.nav-menu:focus-within .nav-menu-list {
  display: grid;
}

.nav-menu-list a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.nav-menu-list a:hover {
  background: var(--panel);
}

.app-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  padding: 9px 18px 10px;
  font-weight: 800;
  line-height: 0.95;
  box-shadow: 0 10px 22px rgba(52, 125, 22, 0.2);
}

.app-store small {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.app-store-small {
  min-height: 46px;
  background: var(--white);
  color: var(--black);
  padding: 7px 12px;
  font-size: 15px;
  box-shadow: none;
}

main {
  min-height: 60vh;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 56px 0 24px;
}

.hero-copy h1,
.page-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy h1 span,
.green {
  color: var(--green);
}

.hero-copy > p {
  max-width: 490px;
  margin: 28px 0 24px;
  color: #202320;
  font-size: 20px;
  line-height: 1.65;
}

.benefits {
  display: grid;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.benefits li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  font-size: 17px;
}

.benefits strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.line-icon {
  width: 42px;
  height: 42px;
  color: var(--green);
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.button:hover,
.app-store:hover {
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 6% 4% 8% 10%;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 28%, rgba(95, 174, 39, 0.12), transparent 34%),
    radial-gradient(circle at 30% 72%, rgba(245, 189, 16, 0.13), transparent 38%);
  filter: blur(4px);
}

.hero-media img {
  width: min(100%, 680px);
}

.how-panel,
.download-band,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, #f3faef 0%, #fff 48%, #e4f3d9 100%);
  box-shadow: var(--shadow);
}

.how-panel {
  margin: 26px auto 10px;
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
}

.section-heading {
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.step-card {
  position: relative;
  padding: 0 18px;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 10px 24px rgba(52, 125, 22, 0.22);
}

.step-card:nth-child(2) .step-icon {
  color: var(--black);
  background: var(--yellow);
}

.step-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
}

.step-card p {
  margin: 0;
  color: #323832;
}

.workflow-note {
  max-width: 710px;
  margin: 28px auto 0;
  color: #1b201a;
  font-size: 18px;
}

.founder-section {
  padding: 42px 0 18px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.92 / 1;
  object-fit: cover;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px 15px 16px;
}

.article-number {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.article-card:nth-child(2n) .article-number {
  color: var(--yellow);
}

.article-card h3 {
  margin: 9px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.article-card p {
  margin: 0 0 18px;
  color: #3d443d;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--green);
  font-weight: 800;
}

.download-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 34px 0 8px;
  padding: 16px clamp(18px, 4vw, 42px);
}

.download-band img {
  width: 86px;
  height: 86px;
  border-radius: 18px;
}

.download-band h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 26px;
}

.download-band p {
  margin: 0;
  color: #2a3129;
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(420px, 2fr);
  gap: clamp(26px, 5vw, 70px);
  margin-top: 0;
  padding: 34px clamp(22px, 5vw, 58px) 28px;
  background: linear-gradient(135deg, #2d7c14 0%, #4e9d23 42%, #050706 100%);
  color: var(--white);
}

.footer-brand p {
  max-width: 240px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.25;
}

.social-links {
  display: flex;
  gap: 9px;
  margin: 14px 0;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 26px;
}

.footer-columns h2 {
  margin: 0 0 13px;
  color: #bdf07f;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 14px;
}

.copyright,
.footer-mark {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.footer-mark {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  margin: 0;
}

.subpage {
  padding: 46px 0 64px;
}

.page-title {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.page-title h1 {
  font-size: clamp(38px, 4vw, 58px);
}

.page-title p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 19px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.framed-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.framed-image img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.copy-block h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.copy-block h3 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.45;
}

.copy-block p {
  margin: 0 0 15px;
  color: #30372f;
  font-size: 17px;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 26px 34px;
}

.quote-mark {
  color: var(--green);
  font-size: 68px;
  font-weight: 900;
  line-height: 0.7;
}

.quote-panel blockquote {
  margin: 0;
  color: #172014;
  font-size: 19px;
  font-weight: 800;
}

.quote-panel cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.founder-avatar {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, #101411, #386f22);
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
}

.how-steps-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 34px;
}

.phone-step {
  text-align: center;
}

.step-label {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.phone-mock {
  width: min(100%, 210px);
  min-height: 330px;
  margin: 0 auto 16px;
  border: 9px solid #090909;
  border-radius: 30px;
  background: #101410;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.phone-bar {
  height: 42px;
  padding: 12px 15px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
}

.phone-screen {
  display: grid;
  gap: 10px;
  padding: 10px 14px 18px;
}

.phone-search {
  height: 32px;
  border: 1px solid #3d463b;
  border-radius: 18px;
  color: #aeb8aa;
  padding: 7px 12px;
  font-size: 11px;
  text-align: left;
}

.map-stars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 18px;
  padding: 14px 8px;
}

.map-stars span {
  color: var(--green-2);
  font-size: 24px;
  line-height: 1;
}

.site-log-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid #2a3528;
  border-radius: 7px;
  padding: 10px;
  text-align: left;
}

.site-log-row strong {
  display: block;
  font-size: 12px;
}

.site-log-row small {
  color: #aeb8aa;
}

.mini-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
}

.note-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--green-3);
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

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

.info-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.035);
}

.info-card .line-icon {
  margin: 0 auto 15px;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.info-card p,
.info-card li {
  color: #3b423a;
  font-size: 15px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.subtle-message {
  margin: 26px auto 0;
  max-width: 760px;
  border-radius: 8px;
  background: var(--panel);
  padding: 13px 18px;
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.articles-page .article-grid {
  margin-top: 28px;
}

.article-actions {
  margin-top: 30px;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 34px;
  align-items: start;
}

.article-main {
  max-width: 760px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.article-main h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
}

.article-hero-image {
  width: 100%;
  margin: 22px 0 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-main p {
  color: #293028;
  font-size: 18px;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-sidebar h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
}

.side-article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.side-article:first-of-type {
  border-top: 0;
}

.side-article img {
  width: 74px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
}

.side-article span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.side-article strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contents-box {
  position: sticky;
  top: 108px;
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.contents-box h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.contents-box ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: #3b423a;
  font-size: 14px;
}

.legal-copy {
  max-width: 760px;
}

.legal-copy h1 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
}

.legal-copy .updated {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.legal-section {
  margin: 26px 0;
}

.legal-section h2 {
  color: var(--ink);
  font-size: 22px;
}

.pdf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.help-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 260px;
  align-items: center;
  gap: 30px;
  margin-bottom: 34px;
}

.help-hero h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
}

.help-hero p {
  max-width: 540px;
  color: var(--muted);
  font-size: 20px;
}

.help-illustration {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: rgba(95, 174, 39, 0.55);
}

.faq-box {
  margin-bottom: 26px;
  border-radius: 8px;
  background: rgba(247, 251, 244, 0.9);
  padding: 18px;
}

.faq-box > h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.faq-item {
  margin: 10px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-question {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-weight: 900;
}

.faq-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 54px;
  color: #3f473e;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(225deg);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.danger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  border: 1px solid #f0c9c9;
  border-radius: 8px;
  background: #fffafa;
  padding: 18px 22px;
  color: #b42318;
  font-weight: 900;
}

.danger-row span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-media {
    justify-content: center;
  }

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

  .article-grid .article-card:nth-child(n + 4) {
    grid-column: span 1;
  }

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

@media (max-width: 820px) {
  .page {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: auto;
    padding: 14px;
    gap: 14px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .app-store-small {
    min-height: 42px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-copy h1,
  .page-title h1,
  .help-hero h1 {
    font-size: 42px;
  }

  .hero-copy > p {
    font-size: 18px;
  }

  .steps,
  .how-steps-page,
  .split-layout,
  .article-layout,
  .legal-layout,
  .help-hero,
  .help-grid,
  .download-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .download-band {
    text-align: center;
  }

  .download-band img,
  .download-band .app-store {
    justify-self: center;
  }

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

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

  .footer-mark {
    grid-column: 1;
    justify-self: start;
  }

  .article-sidebar,
  .contents-box {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .app-store-small {
    justify-self: start;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-actions .app-store,
  .hero-actions .button,
  .pdf-actions .button,
  .pdf-actions .app-store {
    width: 100%;
  }

  .benefits li {
    grid-template-columns: 36px 1fr;
  }

  .line-icon {
    width: 36px;
    height: 36px;
  }

  .article-grid,
  .card-grid-4,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .founder-avatar {
    width: 90px;
    height: 90px;
  }
}

/* Polish pass: real map screenshot, correct App Store icon, editorial articles. */
.app-screen-main {
  width: 356px;
}

.app-screen-main img {
  display: block;
}

.map-showcase {
  width: min(100%, 650px);
  min-height: 690px;
}

.map-showcase .app-screen-main {
  width: 352px;
  margin-left: auto;
  margin-right: 64px;
}

.app-screen-map-overview {
  left: 24px;
  bottom: 66px;
  width: 262px;
  transform: rotate(-4deg);
}

.map-showcase .app-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.download-band > img {
  width: 86px;
  height: 86px;
  border-radius: 20px;
}

.download-band .apple-logo,
.download-band .app-store .apple-logo {
  width: 22px;
  height: 22px;
  border-radius: 0;
  box-shadow: none;
}

.download-band .app-store:not(.app-store-small) .apple-logo {
  filter: invert(1);
}

.founder-section {
  padding: 64px 0 28px;
}

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

.article-card {
  border-color: rgba(214, 222, 208, 0.96);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 23, 34, 0.12);
}

.article-card img {
  aspect-ratio: 16 / 9;
  filter: saturate(0.96) contrast(1.02);
}

.article-card-body {
  padding: 18px 17px 18px;
}

.article-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.article-card p {
  color: #536070;
}

.article-page {
  width: min(1160px, calc(100% - 48px));
}

.article-page.subpage {
  padding-top: 34px;
}

.article-layout {
  grid-template-columns: minmax(0, 790px) 300px;
  gap: clamp(30px, 5vw, 64px);
}

.article-main {
  max-width: none;
}

.article-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-main h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
}

.article-meta {
  flex-wrap: wrap;
  margin: 18px 0 28px;
}

.article-hero-frame {
  overflow: hidden;
  margin: 0 0 36px;
  border: 1px solid rgba(220, 228, 215, 0.96);
  border-radius: 8px;
  background: #f4f6f2;
  box-shadow: 0 22px 54px rgba(17, 23, 34, 0.12);
}

.article-hero-image {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.article-copy {
  max-width: 720px;
}

.article-copy p {
  margin: 0 0 21px;
  color: #263241;
  font-size: 19px;
  line-height: 1.78;
}

.article-copy p:first-child {
  color: #151d29;
  font-size: 22px;
  line-height: 1.62;
}

.article-sidebar {
  top: 100px;
  padding: 18px;
}

.article-sidebar h2 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.side-article {
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 11px 0;
}

.side-article img {
  width: 92px;
  height: 58px;
  border-radius: 8px;
}

.side-article strong {
  font-size: 13.5px;
}

@media (max-width: 1080px) {
  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-showcase .app-screen-main {
    margin-right: auto;
  }

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

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .article-page {
    width: min(100% - 30px, 1160px);
  }

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

  .article-main h1 {
    font-size: 42px;
  }

  .article-copy p,
  .article-copy p:first-child {
    font-size: 17px;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .app-screen-main {
    width: auto;
  }

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

  .article-card img {
    aspect-ratio: 16 / 8.8;
  }

  .article-main h1 {
    font-size: 38px;
  }

  .side-article {
    grid-template-columns: 86px 1fr;
  }
}

/* Visual refresh: real iOS screenshots and asset-based icons. */
:root {
  --green: #347d16;
  --green-2: #6aa62d;
  --green-3: #eef6e8;
  --yellow: #f4c21f;
  --navy: #35486a;
  --ink: #111722;
  --text: #253044;
  --muted: #667085;
  --line: #dce4d7;
  --panel: #f6f8f5;
  --white: #ffffff;
  --black: #050706;
  --shadow: 0 24px 64px rgba(31, 53, 23, 0.12);
  --soft-shadow: 0 12px 32px rgba(17, 23, 34, 0.08);
  --radius: 8px;
}

body {
  background:
    linear-gradient(180deg, #fbfcfa 0%, #ffffff 42%, #f7f9f6 100%);
  color: var(--text);
}

.site-header {
  min-height: 76px;
  padding: 13px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 252, 250, 0.88);
  border-bottom: 1px solid rgba(220, 228, 215, 0.82);
  box-shadow: 0 12px 32px rgba(17, 23, 34, 0.04);
}

.brand {
  gap: 11px;
  font-size: 23px;
  font-weight: 850;
}

.brand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(17, 23, 34, 0.14);
}

.brand-footer .brand-icon {
  width: 34px;
  height: 34px;
}

.brand-mark {
  display: none;
}

.site-nav {
  gap: clamp(13px, 1.8vw, 24px);
}

.site-nav a,
.nav-menu > button {
  color: #293241;
  font-size: 14px;
  font-weight: 720;
}

.app-store {
  min-height: 54px;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(53, 72, 106, 0.2);
}

.app-store-small {
  min-height: 44px;
  border-color: #ccd6c6;
  background: #ffffff;
  color: #111722;
  box-shadow: 0 8px 20px rgba(17, 23, 34, 0.06);
}

.apple-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.app-store:not(.app-store-small) .apple-logo {
  filter: invert(1);
}

.page {
  width: min(var(--max), calc(100% - 48px));
}

.hero {
  grid-template-columns: minmax(360px, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  min-height: min(760px, calc(100svh - 76px));
  padding: 42px 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.page-title h1 {
  color: var(--ink);
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span,
.green {
  color: var(--navy);
}

.hero-copy > p {
  max-width: 530px;
  margin: 24px 0 24px;
  color: #354052;
  font-size: 19px;
  line-height: 1.62;
}

.benefits {
  gap: 14px;
  margin-bottom: 26px;
}

.benefits li {
  grid-template-columns: 38px 1fr;
  gap: 13px;
  color: #586274;
  font-size: 15px;
}

.benefits strong {
  color: var(--ink);
  font-size: 16px;
}

.line-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(35%) sepia(41%) saturate(1058%) hue-rotate(58deg) brightness(92%) contrast(91%);
}

.line-icon.yellow {
  filter: brightness(0) saturate(100%) invert(79%) sepia(94%) saturate(544%) hue-rotate(352deg) brightness(101%) contrast(91%);
}

.danger-row .line-icon {
  filter: brightness(0) saturate(100%) invert(22%) sepia(82%) saturate(2361%) hue-rotate(347deg) brightness(88%) contrast(93%);
}

.button {
  border-color: #ccd6c6;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 23, 34, 0.06);
}

.button:hover,
.app-store:hover {
  transform: translateY(-1px);
}

.hero-media {
  justify-content: center;
}

.hero-media::before {
  display: none;
}

.screen-showcase {
  position: relative;
  width: min(100%, 660px);
  min-height: 655px;
}

.app-screen {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 34px;
  background: #f6f7f9;
  box-shadow: 0 28px 64px rgba(17, 23, 34, 0.18);
}

.app-screen img {
  width: 100%;
  height: auto;
}

.app-screen-main {
  z-index: 3;
  width: 338px;
  margin: 0 auto;
}

.app-screen-side {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  width: 230px;
  box-shadow: 0 18px 44px rgba(17, 23, 34, 0.15);
}

.app-screen-login {
  left: 8px;
  transform: rotate(-3.5deg);
}

.app-screen-signup {
  right: 8px;
  transform: rotate(3.5deg);
}

.how-panel {
  width: 100vw;
  margin: 18px 0 0 calc(50% - 50vw);
  border: 0;
  border-radius: 0;
  background: #f2f6ef;
  box-shadow: none;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2));
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
}

.app-proof-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
}

.step-card {
  padding: 22px 10px;
}

.step-card h3 {
  color: var(--ink);
  font-size: 19px;
}

.step-card-screen {
  padding: 0;
}

.step-card-screen img {
  width: min(100%, 245px);
  margin: 0 auto;
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
}

.step-icon {
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.step-icon .line-icon {
  width: 34px;
  height: 34px;
}

.download-band {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: #ffffff;
  box-shadow: none;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
}

.download-band h2,
.download-band p {
  color: #ffffff;
}

.download-band img {
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.download-band .app-store-small {
  border-color: rgba(255, 255, 255, 0.5);
}

.article-card,
.info-card,
.framed-image,
.article-sidebar,
.faq-item,
.contents-box {
  border-color: rgba(220, 228, 215, 0.92);
  box-shadow: var(--soft-shadow);
}

.article-grid {
  gap: 20px;
}

.article-card {
  border-radius: 8px;
}

.article-card h3 {
  color: var(--ink);
}

.site-footer {
  background: #101721;
}

.how-steps-page {
  gap: 24px;
}

.phone-step {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 100%;
  border: 1px solid rgba(220, 228, 215, 0.92);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.phone-step h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 20px;
}

.phone-step p {
  max-width: 270px;
  margin: 16px 0 0;
  color: #566174;
}

.workflow-screen {
  width: min(100%, 246px);
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(17, 23, 34, 0.13);
}

.phone-mock {
  display: none;
}

.note-band {
  background: #eef4ea;
  color: var(--navy);
}

.help-illustration {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 120px;
}

.help-illustration .line-icon {
  width: 52px;
  height: 52px;
}

@media (max-width: 1080px) {
  .site-header {
    padding: 13px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 36px;
  }

  .screen-showcase {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    row-gap: 8px;
  }

  .hero-copy h1,
  .page-title h1,
  .help-hero h1 {
    font-size: 44px;
  }

  .screen-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .map-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .app-screen,
  .app-screen-main,
  .app-screen-side {
    position: static;
    width: auto;
    margin: 0;
    transform: none;
    border-radius: 20px;
  }

  .map-showcase .app-screen-main,
  .app-screen-map-overview {
    width: auto;
  }

  .app-proof-grid,
  .steps,
  .how-steps-page,
  .split-layout,
  .article-layout,
  .legal-layout,
  .help-hero,
  .help-grid,
  .download-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .download-band {
    text-align: left;
  }

  .how-panel,
  .download-band {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .download-band img,
  .download-band .app-store {
    justify-self: start;
  }

  .workflow-screen,
  .step-card-screen img {
    width: min(100%, 230px);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-header > .app-store-small {
    display: none;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a,
  .nav-menu > button {
    font-size: 12px;
  }

  .hero {
    gap: 22px;
    padding-top: 26px;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy h1,
  .page-title h1,
  .help-hero h1 {
    font-size: 40px;
  }

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

  .screen-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

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

  .app-screen {
    min-width: 0;
    border-radius: 14px;
  }

  .benefits li {
    grid-template-columns: 34px 1fr;
  }

  .line-icon {
    width: 34px;
    height: 34px;
  }

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

  .hero-actions .app-store,
  .hero-actions .button {
    max-width: 100%;
    white-space: normal;
  }

  .app-store span,
  .button {
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .how-panel,
  .download-band {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    column-gap: 12px;
    row-gap: 8px;
  }
}

/* Redesign 8: start screen as the hero focus, with map and registration as supporting product proof. */
.product-showcase .app-screen-main {
  width: 342px;
}

.app-screen-map {
  left: 8px;
  transform: rotate(-3.5deg);
}

.proof-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  padding: 0;
}

.proof-screens img {
  width: min(100%, 170px);
  margin: 0 auto;
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

@media (max-width: 820px) {
  .product-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-showcase .app-screen-main,
  .product-showcase .app-screen-side {
    width: auto;
  }

  .proof-screens {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase .app-screen-map {
    display: none;
  }
}

@media (min-width: 821px) {
  .how-panel,
  .download-band {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Redesign 13: current app verification form and wider home flow. */
.how-panel {
  width: 100vw;
  margin: 18px 0 0 calc(50% - 50vw);
  padding: 64px max(32px, calc((100vw - 1440px) / 2));
}

.home-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  width: min(100%, 1260px);
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.home-flow-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  min-width: 0;
  border: 1px solid rgba(220, 228, 215, 0.92);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px 24px 26px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.home-flow-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.home-flow-card p {
  max-width: 300px;
  margin: 0;
  color: #566174;
}

.home-flow-screen {
  width: min(100%, 260px);
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(17, 23, 34, 0.13);
}

.proof-screens-sequence {
  align-items: stretch;
}

.verification-phone {
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(100%, 260px);
  aspect-ratio: 1206 / 2622;
  overflow: hidden;
  border: 1px solid rgba(211, 220, 204, 0.95);
  border-radius: 26px;
  background: #ffffff;
  color: #111722;
  padding: 16px 16px 18px;
  text-align: left;
  box-shadow: 0 18px 42px rgba(17, 23, 34, 0.13);
}

.phone-status {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  min-height: 22px;
  color: #05070b;
  font-size: 11px;
  font-weight: 800;
}

.phone-status span:last-child {
  justify-self: end;
}

.phone-island {
  width: 66px;
  height: 20px;
  border-radius: 999px;
  background: #000000;
}

.phone-signal {
  letter-spacing: 1px;
}

.verification-nav {
  display: grid;
  place-items: center;
  min-height: 22px;
  border-bottom: 1px solid #eef0f4;
  padding-bottom: 8px;
  color: #1d2430;
  font-size: 12px;
  font-weight: 760;
}

.verification-header {
  display: grid;
  gap: 6px;
  padding: 2px 2px 0;
}

.verification-header h3 {
  margin: 0;
  color: #111722;
  font-size: 22px;
  line-height: 1.1;
}

.verification-header p {
  margin: 0;
  color: #697385;
  font-size: 12px;
  line-height: 1.35;
}

.company-form-preview {
  display: grid;
  gap: 9px;
  border-radius: 16px;
  background: #ffffff;
  padding: 13px;
  box-shadow: 0 8px 22px rgba(17, 23, 34, 0.08);
}

.company-form-preview h4 {
  margin: 0 0 1px;
  color: #111722;
  font-size: 15px;
  line-height: 1.2;
}

.native-field,
.upload-license,
.submit-disabled {
  min-height: 33px;
  border-radius: 8px;
}

.native-field {
  display: flex;
  align-items: center;
  border: 1px solid #d9dce2;
  background: #f6f6f9;
  padding: 0 10px;
  color: #7a8492;
  font-size: 11px;
  font-weight: 650;
}

.native-select::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 1.5px solid #8d94a0;
  border-bottom: 1.5px solid #8d94a0;
  transform: rotate(45deg) translateY(-2px);
}

.native-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.upload-license {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  background: rgba(17, 23, 34, 0.05);
  color: #1f2937;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 760;
}

.upload-license .line-icon {
  width: 19px;
  height: 19px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(76%) saturate(2064%) hue-rotate(185deg) brightness(97%) contrast(94%);
}

.submit-disabled {
  display: grid;
  place-items: center;
  background: #b5b7bd;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.home-flow-verification {
  width: min(100%, 260px);
}

.workflow-verification {
  width: min(100%, 246px);
}

@media (max-width: 820px) {
  .how-panel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-flow-grid {
    grid-template-columns: 1fr;
  }

  .home-flow-card {
    max-width: 390px;
    margin: 0 auto;
  }

  .home-flow-verification {
    width: min(100%, 260px);
  }

  .workflow-verification {
    width: min(100%, 230px);
  }
}

/* Redesign 15: article polish and professional reading surfaces. */
.article-page {
  width: min(1240px, calc(100% - 48px));
}

.article-page.subpage {
  padding-top: 42px;
}

.article-layout {
  grid-template-columns: minmax(0, 780px) minmax(330px, 380px);
  gap: clamp(38px, 5vw, 76px);
  align-items: start;
}

.article-main h1 {
  max-width: 820px;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.02;
}

.article-meta {
  gap: 10px;
  color: #667085;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

.article-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-radius: 50%;
  background: #b7c0ad;
}

.article-hero-frame {
  margin-bottom: 34px;
}

.article-copy {
  max-width: 730px;
}

.article-copy p {
  color: #253044;
  font-size: 18.5px;
  line-height: 1.74;
}

.article-copy p:first-child {
  font-size: 21px;
}

.article-sidebar {
  top: 96px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 18px 46px rgba(17, 23, 34, 0.09);
}

.article-sidebar h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.side-article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(220, 228, 215, 0.92);
}

.side-article:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.side-article img {
  width: 104px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.side-article-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
}

.side-article-number {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef6e8;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.side-article strong {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.18;
}

.side-article small {
  display: block;
  color: #667085;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.side-article:hover strong {
  color: var(--green);
}

.articles-page {
  width: min(1240px, calc(100% - 48px));
}

.articles-page .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.articles-page .article-card {
  min-height: 100%;
}

.articles-page .article-card img {
  aspect-ratio: 16 / 9;
}

.articles-page .article-card-body {
  min-height: 250px;
}

.articles-page .article-card h3 {
  font-size: 20px;
  line-height: 1.16;
}

.article-actions {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .articles-page .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .article-page,
  .articles-page {
    width: min(100% - 30px, 1240px);
  }

  .article-page.subpage {
    padding-top: 30px;
  }

  .article-main h1 {
    font-size: 38px;
  }

  .article-copy p,
  .article-copy p:first-child {
    font-size: 17px;
    line-height: 1.72;
  }

  .article-sidebar {
    padding: 16px;
  }

  .side-article {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .side-article img {
    width: 96px;
    height: 66px;
  }

  .side-article strong {
    font-size: 14px;
  }

  .side-article small {
    display: none;
  }

  .articles-page .article-grid {
    grid-template-columns: 1fr;
  }

  .articles-page .article-card-body {
    min-height: 0;
  }
}

/* Redesign 16: high-quality About visual. */
.about-page {
  width: min(1180px, calc(100% - 48px));
}

.about-page .split-layout {
  grid-template-columns: minmax(420px, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(36px, 6vw, 78px);
}

.about-visual {
  border-color: rgba(220, 228, 215, 0.96);
  background: #f4f6f2;
  box-shadow: 0 24px 58px rgba(17, 23, 34, 0.12);
}

.about-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 38% center;
}

.about-page .copy-block h3 {
  max-width: 620px;
}

.about-page .quote-panel {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .about-page .split-layout {
    grid-template-columns: 1fr;
  }

  .about-visual img {
    aspect-ratio: 16 / 10;
    object-position: center;
  }
}

@media (max-width: 640px) {
  .about-page {
    width: min(100% - 30px, 1180px);
  }

  .about-visual img {
    aspect-ratio: 4 / 3;
  }
}

/* Redesign 17: conversion, mobile navigation, editorial hierarchy, and reading completion polish. */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(52, 125, 22, 0.34);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav-toggle,
.nav-download {
  display: none;
}

.app-store.is-coming-soon {
  border-color: #b8c6ae;
}

.app-store:not(.app-store-small).is-coming-soon {
  background: #263a5d;
}

.app-store-small.is-coming-soon {
  background: #fffdf8;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  border: 1px solid rgba(220, 228, 215, 0.92);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  color: #293241;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 23, 34, 0.05);
}

.trust-strip .line-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.articles-page .article-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  min-height: 380px;
}

.articles-page .article-card-featured img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.articles-page .article-card-featured .article-card-body {
  align-content: center;
  min-height: 0;
  padding: 32px;
}

.articles-page .article-card-featured .article-number {
  width: 34px;
  height: 34px;
  font-size: 17px;
}

.articles-page .article-card-featured h3 {
  max-width: 390px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.articles-page .article-card-featured p {
  max-width: 370px;
  font-size: 17px;
}

.article-end {
  display: grid;
  gap: 22px;
  margin-top: 44px;
  border: 1px solid rgba(220, 228, 215, 0.96);
  border-radius: 8px;
  background: #f4f8f1;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(17, 23, 34, 0.07);
}

.article-end-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-end h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
}

.article-end p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #566174;
  font-size: 16px;
}

.article-end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(220, 228, 215, 0.96);
  padding-top: 16px;
}

.article-pagination a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(220, 228, 215, 0.96);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 800;
}

.trust-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px auto 0;
  max-width: 1000px;
}

.trust-proof-strip article {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(220, 228, 215, 0.96);
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(17, 23, 34, 0.05);
}

.trust-proof-strip strong {
  color: var(--ink);
  font-size: 16px;
}

.trust-proof-strip span {
  color: #566174;
  font-size: 14px;
  line-height: 1.45;
}

.help-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.help-quick-actions a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(220, 228, 215, 0.96);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(17, 23, 34, 0.05);
}

.help-quick-actions .line-icon {
  width: 32px;
  height: 32px;
}

.help-quick-actions span {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: #566174;
  font-size: 13px;
  line-height: 1.35;
}

.help-quick-actions strong {
  color: var(--ink);
  font-size: 15px;
}

@media (max-width: 900px) {
  .trust-strip,
  .trust-proof-strip,
  .help-quick-actions {
    grid-template-columns: 1fr;
  }

  .articles-page .article-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .articles-page .article-card-featured img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
    min-height: 64px;
    gap: 12px;
    padding: 12px 16px;
  }

  .site-header > .app-store-small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid rgba(220, 228, 215, 0.96);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 8px 18px rgba(17, 23, 34, 0.06);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    border-top: 1px solid rgba(220, 228, 215, 0.92);
    padding: 12px 0 4px;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-nav a,
  .nav-menu > button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 38px;
    padding: 8px 0;
    font-size: 15px;
  }

  .site-nav a::after,
  .nav-menu > button::after {
    bottom: 4px;
    right: auto;
    width: 42px;
  }

  .nav-menu {
    display: grid;
    width: 100%;
  }

  .nav-menu > button {
    pointer-events: none;
  }

  .nav-menu-list {
    position: static;
    display: grid;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 4px 18px;
  }

  .nav-menu-list a {
    min-height: 34px;
    padding: 6px 0;
    color: #566174;
    font-size: 14px;
  }

  .nav-download {
    display: flex;
    margin-top: 6px;
    border: 1px solid rgba(53, 72, 106, 0.18);
    border-radius: 8px;
    background: #f5f8f1;
    color: var(--navy);
    padding: 10px 12px;
    font-weight: 850;
  }

  .hero {
    padding-top: 22px;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 22px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .trust-strip span {
    padding: 12px 14px;
  }

  .article-end {
    padding: 20px;
  }

  .article-end-actions,
  .article-end-actions .app-store,
  .article-end-actions .button {
    width: 100%;
  }

  .article-pagination {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
