:root {
  --ws-green:     #00c08b;
  --ws-green-dk:  #00a077;
  --ws-green-lt:  #e6faf5;
  --ws-green-mid: #b3ede0;
  --ws-teal:      #00897b;
  --ws-navy:      #1a2e2a;
  --white:        #ffffff;
  --off-white:    #f7faf9;
  --text:         #1c2b28;
  --text-mid:     #4a6560;
  --text-light:   #7a9993;
  --border:       #d4ede7;
  --radius:       18px;
  --shadow-sm:    0 2px 12px rgba(0,192,139,0.10);
  --shadow:       0 6px 32px rgba(0,192,139,0.14);
  --content:      940px;
  --measure:      720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--off-white); color: var(--text); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--ws-green-dk); }
a:hover { color: var(--ws-teal); }
[id] { scroll-margin-top: 88px; }

body > nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.93); backdrop-filter: blur(16px); padding: 0 24px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--content); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; color: var(--ws-navy); text-decoration: none; flex-shrink: 0; white-space: nowrap; line-height: 1; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; text-decoration: none; color: var(--ws-navy); font-weight: 700; font-size: 0.9rem; padding: 9px 13px; border-radius: 9px; transition: background 0.18s, color 0.18s; white-space: nowrap; line-height: 1; }
.nav-menu > li > a:hover, .nav-menu > li > a[aria-current="page"], .nav-menu > li.active > a { background: var(--ws-green-lt); color: var(--ws-green-dk); }
.nav-menu > li > a[aria-current="page"], .nav-menu > li.active > a { font-weight: 800; }

.has-dropdown > a::after { content: '▾'; font-size: 0.7em; margin-left: 5px; opacity: 0.6; }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 210px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.88rem; padding: 9px 13px; border-radius: 8px; transition: background 0.15s, color 0.15s; }
.dropdown a:hover { background: var(--ws-green-lt); color: var(--ws-green-dk); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ws-navy); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1000px) {
  body > nav { padding: 0 18px; }
  .nav-inner { padding: 12px 0; }
  .nav-toggle { display: flex; }
  .nav-logo { font-size: 1.18rem; }
  .nav-menu { position: fixed; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.32s ease, padding 0.32s ease; z-index: 99; }
  .nav-menu.open { max-height: calc(100vh - 60px); overflow-y: auto; padding: 12px 18px 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-menu > li > a { padding: 12px 14px; font-size: 0.98rem; }
  .has-dropdown > a::after { float: right; transition: transform 0.25s ease; }
  .has-dropdown.open > a::after { transform: rotate(180deg); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--ws-green-mid); border-radius: 0; margin: 0 0 0 14px; padding: 0; min-width: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease; }
  .has-dropdown.open > .dropdown { max-height: 70vh; margin: 2px 0 6px 14px; padding: 2px 0; }
  .dropdown a { padding: 9px 14px; }
}

.hero { background: radial-gradient(120% 120% at 50% -25%, #d8f6ec 0%, #ecfbf6 42%, #ffffff 76%); padding: 92px 24px 28px; text-align: center; position: relative; overflow: hidden; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(65px); opacity: 0.4; pointer-events: none; }
.hero::before { width: 500px; height: 500px; background: var(--ws-green-mid); top: -160px; left: -120px; }
.hero::after { width: 380px; height: 380px; background: #a8e8d8; bottom: 60px; right: -90px; }
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--ws-green-mid); color: var(--ws-teal); font-size: 0.82rem; font-weight: 700; padding: 7px 16px; border-radius: 50px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.blink-dot { width: 8px; height: 8px; background: var(--ws-green); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(2.1rem, 5vw, 3.1rem); font-weight: 600; line-height: 1.18; letter-spacing: -0.02em; color: var(--ws-navy); margin-bottom: 32px; }
.hero h1 .accent { color: var(--ws-green); font-style: italic; }
.hero-sub { font-size: 1.06rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 48px; font-weight: 600; line-height: 1.68; }

.page-hero { background: radial-gradient(120% 130% at 85% -10%, #d8f6ec 0%, #ecfbf6 38%, #ffffff 78%); padding: 44px 24px 60px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero::before { content: ''; position: absolute; width: 480px; height: 480px; background: var(--ws-green-mid); border-radius: 50%; filter: blur(90px); opacity: 0.28; top: -220px; right: -160px; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--ws-green-mid), transparent); pointer-events: none; }
.page-hero-inner { position: relative; max-width: var(--content); margin: 0 auto; }
.page-hero h1 { font-family: 'Lora', serif; font-size: clamp(2.1rem, 4.8vw, 3rem); font-weight: 600; line-height: 1.14; letter-spacing: -0.025em; color: var(--ws-navy); margin-bottom: 18px; max-width: 880px; }
.page-hero h1 .accent { color: var(--ws-green); font-style: italic; }
.page-hero-sub { font-size: 1.08rem; color: var(--text-mid); font-weight: 600; max-width: var(--measure); line-height: 1.72; }
.page-hero .byline { margin-top: 22px; }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.hero-cta .code-box { margin: 0; box-shadow: none; }
.hero-cta .code-box .code-val { font-size: 1.25rem; padding: 12px 18px; }
.hero-cta .code-box .code-lbl,
.hero-cta .code-box .code-copy { padding-top: 12px; padding-bottom: 12px; }

.breadcrumbs { margin-bottom: 22px; font-size: 0.8rem; font-weight: 700; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0; align-items: center; padding: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; color: var(--text-light); }
.breadcrumbs li:last-child { color: var(--ws-teal); }
.breadcrumbs a { color: var(--text-mid); text-decoration: none; transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--ws-green-dk); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin: 0 9px; color: var(--ws-green-mid); font-weight: 800; }

.code-box { display: inline-flex; align-items: stretch; background: #fff; border: 2px solid var(--ws-green-mid); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 28px; }
.code-lbl { padding: 14px 18px; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); border-right: 2px solid var(--ws-green-mid); display: flex; align-items: center; white-space: nowrap; }
.code-val { padding: 14px 22px; font-size: 1.55rem; font-weight: 900; color: var(--ws-green-dk); letter-spacing: 0.05em; font-family: 'Courier New', monospace; display: flex; align-items: center; }
.code-copy { background: var(--ws-green); color: #fff; border: none; padding: 14px 20px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.86rem; cursor: pointer; transition: background 0.2s; white-space: nowrap; display: flex; align-items: center; }
.code-copy:hover { background: var(--ws-green-dk); }
.code-copy.copied { background: var(--ws-teal); }

.hero-cta > .code-copy { background: #fff; color: var(--ws-green-dk); border: 2px solid var(--ws-green-mid); border-radius: 50px; padding: 13px 32px; font-size: 1rem; line-height: 1.7; font-weight: 900; letter-spacing: 0.01em; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.hero-cta > .code-copy:hover { background: #f0fbf6; border-color: var(--ws-green); color: var(--ws-green-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-cta > .code-copy.copied { background: var(--ws-teal); border-color: var(--ws-teal); color: #fff; }

.cta-stack { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 56px; }
.btn-big { display: inline-flex; align-items: center; gap: 10px; background: var(--ws-green); color: #fff; text-decoration: none; font-weight: 900; font-size: 1.1rem; padding: 18px 40px; border-radius: 50px; box-shadow: 0 6px 28px rgba(0,192,139,0.38); transition: all 0.2s; }
.hero-cta .btn-big { font-size: 1rem; padding: 15px 32px; }
.btn-big:hover { background: var(--ws-green-dk); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,192,139,0.45); }

.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

section { padding: 72px 24px; }
:is(.how, .cmp, .prose, .faq) + :is(.how, .cmp, .prose, .faq),
:is(.features, .related) + :is(.features, .related) { padding-top: 0; }
.page-hero + :is(.prose, .how) { padding-top: 60px; }
.container { max-width: var(--content); margin: 0 auto; }
.eyebrow { font-size: 0.77rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ws-green); margin-bottom: 10px; }
.sec-h { font-family: 'Lora', serif; font-size: clamp(1.65rem, 4vw, 2.45rem); font-weight: 600; color: var(--ws-navy); line-height: 1.22; letter-spacing: -0.02em; margin-bottom: 14px; }
.sec-p { font-size: 1rem; color: var(--text-mid); font-weight: 600; max-width: 620px; line-height: 1.7; margin-bottom: 44px; }

.how { background: var(--white); }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 0 18px; }
.step-l { display: flex; flex-direction: column; align-items: center; }
.step-circle { width: 50px; height: 50px; background: var(--ws-green-lt); border: 2px solid var(--ws-green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1rem; color: var(--ws-green-dk); flex-shrink: 0; }
.step-line { width: 2px; flex: 1; background: var(--ws-green-mid); margin: 4px 0; min-height: 28px; }
.step:last-child .step-line { display: none; }
.step:last-child .step-r { padding-bottom: 0; }
.step-r { padding: 4px 0 36px; }
.step-r h3 { font-weight: 800; font-size: 1.04rem; color: var(--ws-navy); margin-bottom: 6px; margin-top: 10px; }
.step-r p { font-size: 0.93rem; color: var(--text-mid); font-weight: 600; line-height: 1.68; }
.step-r a { color: var(--ws-green-dk); font-weight: 700; }

.features { background: var(--off-white); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
@media (max-width: 600px) { .features .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .features .feat { padding: 18px 15px; } }
.feat, .acct, .related-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.feat:hover, .acct:hover, .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ws-green-mid); }
.feat:not(:has(h3 a)):hover { transform: none; box-shadow: none; border-color: var(--border); }
.feat { padding: 26px 22px; position: relative; overflow: hidden; }
.feat-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; font-weight: 400; color: var(--ws-green-dk); }
.feat h3 { font-weight: 800; font-size: 0.98rem; color: var(--ws-navy); margin-bottom: 8px; }
.feat p { font-size: 0.88rem; color: var(--text-mid); font-weight: 600; line-height: 1.65; }
.features .feat h3 a { color: inherit; font-weight: inherit; text-decoration: none; }
.feat h3 a::after { content: ''; position: absolute; inset: 0; z-index: 1; }

.accts { background: var(--ws-green-lt); }
.acct-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.prose .acct-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 600px) { .prose .acct-grid, .prose .feat-grid { grid-template-columns: repeat(2, 1fr); } }
.prose .acct { padding: 26px 22px; }
.prose .acct-icon { font-size: 1.9rem; margin-bottom: 12px; }
.prose .acct h3 { font-size: 0.98rem; }
.prose .acct p { font-size: 0.88rem; }
.prose .feat h3 a { color: inherit; font-weight: inherit; text-decoration: none; }
.acct { padding: 22px 18px; text-decoration: none; display: block; }
.acct-icon { font-size: 1.55rem; margin-bottom: 10px; display: block; color: var(--ws-green-dk); font-weight: 400; }
.acct h3 { font-weight: 800; font-size: 0.93rem; color: var(--ws-navy); margin-bottom: 6px; }
.acct p { font-size: 0.84rem; color: var(--text-mid); font-weight: 600; line-height: 1.6; }

.cmp { background: var(--white); }
.tbl-wrap { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
@media (max-width: 768px) {
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
  .tbl-wrap table { min-width: 560px; }
}
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
thead th { padding: 16px 20px; text-align: left; font-weight: 800; font-size: 0.84rem; background: var(--ws-navy); color: #fff; }
thead th.hl { background: var(--ws-green); }
tbody td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--text); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: var(--off-white); }
tbody td.hl { background: var(--ws-green-lt) !important; color: var(--ws-teal); font-weight: 800; }
.yes { color: var(--ws-green-dk); font-weight: 800; }
.no { color: #bbb; }

.ed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 680px) { .ed-grid { grid-template-columns: 1fr; } }
.ed-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.ed-card h3 { font-family: 'Lora', serif; font-size: 1.18rem; font-weight: 600; color: var(--ws-navy); margin-bottom: 12px; line-height: 1.35; }
.ed-card p { font-size: 0.91rem; color: var(--text-mid); font-weight: 600; line-height: 1.76; margin-bottom: 12px; }
.ed-card p:last-child { margin-bottom: 0; }

.prose { background: var(--white); }
.prose .container { max-width: var(--content); }
.prose-body { max-width: var(--content); }
.prose-body > :first-child { margin-top: 0; }
.prose-body > :last-child { margin-bottom: 0; }
.prose-body { font-size: 1.02rem; color: var(--text); font-weight: 500; line-height: 1.85; }
.prose-body > h2 { font-family: 'Lora', serif; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 600; color: var(--ws-navy); line-height: 1.25; letter-spacing: -0.02em; margin: 48px 0 14px; scroll-margin-top: 90px; }
.prose-body > h3 { font-weight: 800; font-size: 1.18rem; color: var(--ws-navy); margin: 32px 0 10px; }
.prose-body > p { margin-bottom: 18px; color: var(--text-mid); font-weight: 600; }
.prose-body a { color: var(--ws-green-dk); font-weight: 700; }
.prose-body strong { color: var(--text); }
.prose-body a strong { color: inherit; }
.prose-body ul, .prose-body ol { margin: 0 0 18px 22px; color: var(--text-mid); font-weight: 600; }
.prose-body li { margin-bottom: 8px; }
.prose-body > img, .prose-body > .img-frame { margin: 32px 0 44px; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.prose-body .tbl-wrap { margin: 8px 0 24px; }
.prose-body .tbl-wrap table { margin: 0; }
.prose-body blockquote { border-left: 3px solid var(--ws-green); background: var(--ws-green-lt); padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 0 0 22px; color: var(--ws-teal); font-weight: 700; }
.lead { font-size: 1.12rem !important; color: var(--text-mid); font-weight: 700 !important; line-height: 1.7; margin-bottom: 28px !important; }

.toc { background: #fff; border: 1.5px solid var(--border); border-left: 4px solid var(--ws-green); border-radius: 14px; padding: 22px 28px; margin: 8px 0 40px; box-shadow: var(--shadow-sm); }
.toc-title { font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ws-green); margin-bottom: 14px; }
.toc ol { margin: 0; padding-left: 18px; color: var(--text-mid); font-weight: 700; font-size: 0.94rem; columns: 2; column-gap: 36px; }
.toc li { margin-bottom: 9px; break-inside: avoid; padding-left: 4px; }
.toc li::marker { color: var(--ws-green-mid); font-weight: 800; }
.toc a { color: var(--text-mid); text-decoration: none; transition: color 0.15s; }
.toc a:hover { color: var(--ws-green-dk); text-decoration: underline; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

.cta-band { background: var(--ws-green-lt); border: 1.5px solid var(--ws-green-mid); border-radius: var(--radius); padding: 26px 28px; margin: 32px 0; text-align: center; }
.cta-band p { color: var(--ws-teal) !important; font-weight: 800 !important; margin-bottom: 16px !important; font-size: 1.02rem; }
.cta-band .btn-big { font-size: 1rem; padding: 15px 32px; color: #fff; }

.byline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-light); font-weight: 700; margin-top: 18px; }
.byline .dot-sep { opacity: 0.5; }

.faq { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--ws-green-mid); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; text-align: left; font-family: 'Nunito', sans-serif; font-size: 0.97rem; font-weight: 800; color: var(--ws-navy); cursor: pointer; line-height: 1.4; }
.faq-chevron { width: 28px; height: 28px; background: var(--ws-green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.3s; font-size: 0.72rem; color: var(--ws-green-dk); font-weight: 900; }
.faq-item.open .faq-chevron { background: var(--ws-green); color: #fff; transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body-inner { padding: 0 22px 20px; font-size: 0.91rem; color: var(--text-mid); font-weight: 600; line-height: 1.76; }
.faq-body-inner a { color: var(--ws-green-dk); font-weight: 700; }

.prose-body .faq-list { margin-top: 8px; }

.related { background: var(--off-white); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.related-card { padding: 24px 22px; text-decoration: none; display: block; }
.related-card .rc-icon { font-size: 1.7rem; margin-bottom: 10px; display: block; color: var(--ws-green-dk); font-weight: 400; }
.related-card h3 { font-weight: 800; font-size: 1rem; color: var(--ws-navy); margin-bottom: 6px; }
.related-card p { font-size: 0.86rem; color: var(--text-mid); font-weight: 600; line-height: 1.6; }
.related-card .rc-arrow { color: var(--ws-green-dk); font-weight: 800; font-size: 0.86rem; margin-top: 10px; display: inline-block; }

.final { background: linear-gradient(135deg, var(--ws-green) 0%, var(--ws-teal) 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,0.07); border-radius: 50%; top: -200px; right: -100px; pointer-events: none; }
.final::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; bottom: -100px; left: -60px; pointer-events: none; }
.final-inner { position: relative; max-width: 580px; margin: 0 auto; }
.final h2 { font-family: 'Lora', serif; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2; }
.final p { color: rgba(255,255,255,0.82); font-size: 1rem; font-weight: 700; margin-bottom: 36px; line-height: 1.65; }
.final-chip { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 10px 22px; font-family: 'Courier New', monospace; font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; margin-bottom: 28px; }

footer { background: var(--ws-navy); color: rgba(255,255,255,0.5); padding: 56px 24px 32px; font-size: 0.85rem; font-weight: 600; line-height: 1.7; }
.footer-grid { max-width: var(--content); margin: 0 auto 36px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { footer { padding: 32px 24px; } .footer-grid { display: block; columns: 2; column-gap: 24px; margin-bottom: 28px; } .footer-grid > * { break-inside: avoid; margin-bottom: 28px; } .footer-col:last-child { margin-bottom: 0; } .footer-brand { column-span: all; } .footer-brand p { max-width: 100%; } }
@media (max-width: 380px) { .footer-grid { columns: 1; } }
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; min-height: 30px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.58); max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; line-height: 1; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; min-height: 30px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-legal { max-width: var(--content); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; color: rgba(255,255,255,0.38); font-size: 0.78rem; }
.footer-legal p { margin-bottom: 8px; }
.footer-legal a { color: rgba(255,255,255,0.55); text-decoration: underline; }

.reveal { animation: revealFade 0.6s ease backwards; }
@keyframes revealFade { from { opacity: 0; translate: 0 16px; } to { opacity: 1; translate: 0 0; } }
.reveal.visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } html { scroll-behavior: auto; } }

.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 760px) { .how-layout { grid-template-columns: 1fr; } }
.accts-layout { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.accts-layout .acct-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .accts-layout { grid-template-columns: 1fr; } }

.img-frame { border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

.phone-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.phone-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 300px); height: 78%;
  background: var(--ws-green-mid);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.phone-shot { position: relative; z-index: 1; display: block; filter: drop-shadow(0 18px 36px rgba(0,0,0,0.20)); }

@media (max-width: 600px) {
  .code-box { flex-wrap: wrap; border-radius: 12px; }
  .code-copy { width: 100%; text-align: center; justify-content: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-big { justify-content: center; }
  .hero-cta .code-box { width: 100%; }
  .phone-shot { max-width: 75% !important; }
  .hero { padding-top: 48px; }
  .prose-body > img, .prose-body > .img-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }
}

#float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: var(--ws-green); color: #fff; text-decoration: none; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem; padding: 14px 22px; border-radius: 50px; box-shadow: 0 6px 28px rgba(0,192,139,0.45); transition: background 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.3s; opacity: 1; pointer-events: auto; }
#float-cta:hover { background: var(--ws-green-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,192,139,0.55); }
@media (max-width: 768px) {
  #float-cta { right: 50%; transform: translateX(50%); bottom: 20px; font-size: 1rem; padding: 15px 24px; opacity: 0; pointer-events: none; white-space: nowrap; }
  #float-cta.visible { opacity: 1; pointer-events: auto; }
  #float-cta:hover { transform: translateX(50%) translateY(-2px); }
}

.nf-main { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; position: relative; overflow: hidden; }
.nf-main::before, .nf-main::after { content: ''; position: absolute; border-radius: 50%; filter: blur(72px); opacity: 0.35; pointer-events: none; }
.nf-main::before { width: 520px; height: 520px; background: var(--ws-green-mid); top: -160px; left: -140px; }
.nf-main::after { width: 380px; height: 380px; background: #a8e8d8; bottom: -80px; right: -100px; }
.nf-card { position: relative; background: var(--white); border: 1.5px solid var(--border); border-radius: 28px; box-shadow: var(--shadow); padding: 56px 44px 48px; max-width: 560px; width: 100%; text-align: center; }
.four-oh-four { font-family: 'Lora', serif; font-size: clamp(5rem, 18vw, 8rem); font-weight: 600; line-height: 1; letter-spacing: -0.04em; color: var(--ws-green); margin-bottom: 4px; }
.nf-card h1 { font-family: 'Lora', serif; font-size: clamp(1.55rem, 4vw, 2rem); font-weight: 600; color: var(--ws-navy); line-height: 1.25; margin-bottom: 14px; }
.nf-card .sub { font-size: 0.97rem; color: var(--text-mid); font-weight: 600; line-height: 1.7; margin-bottom: 32px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ws-teal); text-decoration: none; font-weight: 800; font-size: 0.92rem; padding: 14px 28px; border-radius: 50px; border: 1.5px solid var(--ws-green-mid); transition: all 0.2s; margin-top: 12px; }
.btn-secondary:hover { background: var(--ws-green-lt); border-color: var(--ws-green); }

/* Author byline (link) */
.byline a { color: var(--ws-green-dk); text-decoration: none; }
.byline a:hover { color: var(--ws-teal); text-decoration: underline; }

/* Circular author photo */
.author-photo { display: block; width: 90px; height: 90px; flex-shrink: 0; border-radius: 50%; object-fit: cover; aspect-ratio: 1 / 1; box-shadow: 0 0 0 1.5px var(--ws-green-mid), var(--shadow-sm); background: var(--ws-green-lt); }

/* Author bio card (sits at the end of the article prose) */
.author-box { max-width: var(--content); margin: 0 auto; display: flex; align-items: center; gap: 22px; background: var(--ws-green-lt); border: 1.5px solid var(--ws-green-mid); border-radius: var(--radius); padding: 22px 26px; }
.author-box-inset { margin-top: 60px; }
.prose-body > h2 + .author-box-inset { margin-top: 16px; }
.author-box-body { min-width: 0; }
.author-box .eyebrow { margin-bottom: 3px; }
.author-name { font-family: 'Lora', serif; font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; color: var(--ws-navy); line-height: 1.2; margin: 0 0 6px; }
.author-bio-text { font-size: 0.92rem; color: var(--text-mid); font-weight: 600; line-height: 1.65; margin: 0; }
.author-bio-text a { color: var(--ws-green-dk); font-weight: 800; text-decoration: none; white-space: nowrap; }
.author-bio-text a:hover { color: var(--ws-teal); text-decoration: underline; }

/* Larger canonical author section on About */
.author-box-lg { align-items: center; gap: 30px; padding: 30px 32px; }
.author-box-lg .author-photo { width: 149px; height: 149px; }
.author-role { font-size: 0.9rem; color: var(--ws-teal); font-weight: 700; margin: 0 0 12px; }
.author-name-lg { font-size: clamp(1.6rem, 3.4vw, 2.05rem); margin-bottom: 6px; }

@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 24px 22px; }
  .author-box-lg { align-items: center; }
}
