@font-face {
    font-family: Inter;
    src: url('../fonts/inter-variable.woff2') format('woff2');
    font-style: normal;
    font-weight: 100 900;
    font-display: swap
}

:root {
    --content: 1100px;
    --navy: #102b4e;
    --text: #304663;
    --muted: #526581;
    --green: #aacfa2;
    --green-hover: #98c28e;
    --green-ink: #173a2b;
    --green-dark: #527e48;
    --pale: #f0f6ee;
    --border: #dce7d8;
    --white: #fff;
    --radius: 9px;
    --font: Inter, Arial, Helvetica, sans-serif
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.55;
    overflow-wrap: break-word
}

body,
button,
input,
select,
textarea {
    font-family: var(--font)
}

button,
input,
select,
textarea {
    font-size: 1rem
}

button,
a,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: transparent
}

button {
    cursor: pointer
}

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

a,
button,
summary {
    touch-action: manipulation
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

picture {
    display: block
}

h1,
h2,
h3,
p {
    margin: 0
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.45rem, 4.05vw, 3.2rem);
    font-weight: 800;
    line-height: 1.075;
    letter-spacing: -.045em
}

h2 {
    font-size: 2.2rem;
    font-weight: 800
}

h3 {
    font-size: 1.2rem;
    font-weight: 750;
    letter-spacing: -.025em
}

ul,
ol {
    margin: 0;
    padding: 0
}

:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 5px
}

[hidden] {
    display: none !important
}

.container {
    width: min(var(--content), calc(100% - 48px));
    margin-inline: auto
}

.icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--green);
    color: var(--green-ink);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease;
    cursor: pointer
}

.button:hover {
    background: var(--green-hover)
}

.button .icon {
    width: 20px;
    height: 20px
}

.button-small {
    min-height: 44px;
    padding: 10px 17px;
    font-size: .83rem;
    white-space: nowrap
}

.button-outline {
    background: var(--white);
    border-color: var(--green-dark);
    color: var(--navy)
}

.button-outline:hover {
    background: var(--pale)
}

.button-white {
    background: var(--white);
    color: var(--navy)
}

.button-white:hover {
    background: var(--pale)
}

.button[disabled] {
    opacity: .6;
    cursor: wait
}

.skip-link {
    position: absolute;
    left: 20px;
    top: -100px;
    padding: 12px 20px;
    background: var(--navy);
    color: var(--white);
    z-index: 20;
    border-radius: 6px
}

.skip-link:focus {
    top: 15px
}

.site-header {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-bottom: 1px solid #e8eee7
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.58rem;
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.1;
    color: var(--navy);
    white-space: nowrap
}

.brand-mark {
    display: flex;
    color: var(--green-dark)
}

.brand-mark svg {
    width: 42px;
    height: 42px
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: .83rem;
    font-weight: 650;
    flex: 1;
    max-width: 740px;
    color: var(--navy)
}

.site-nav>a {
    padding-block: 15px;
    white-space: nowrap
}

.site-nav>a:hover,
.site-footer a:hover {
    color: var(--green-ink);
    text-decoration: underline;
    text-underline-offset: 4px
}

.nav-actions {
    display: flex;
    gap: 10px;
    margin-left: auto
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
    min-height: 44px;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 700
}

.hero {
    background: var(--white)
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 470px
}

.hero-copy {
    padding: 46px 25px 34px 0;
    align-self: center;
    position: relative;
    z-index: 2
}

.hero-intro {
    max-width: 500px;
    margin-top: 23px;
    font-size: 1.09rem;
    line-height: 1.5
}

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

.hero-actions .button {
    width: 100%
}

.hero-actions span {
    display: block;
    margin-top: 9px;
    font-size: .71rem;
    text-align: center;
    line-height: 1.5;
    color: var(--muted)
}

.hero-photo {
    position: relative;
    min-width: 0;
    isolation: isolate
}

.hero-photo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center
}

.hero-chat {
    position: absolute;
    width: 218px;
    right: 20px;
    bottom: 37px;
    font-size: .9rem;
    z-index: 1
}

.js .hero-chat[data-hero-chat] .chat-bubble {
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, .61, .36, 1)
}

.js .hero-chat[data-hero-chat] .chat-reply {
    opacity: 0;
    transform: translateY(10px) scale(.98)
}

.js .hero-chat[data-hero-chat] .chat-reply.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1)
}

.js .hero-chat[data-hero-chat].is-fading .chat-bubble {
    opacity: 0;
    transform: translateY(-8px) scale(.98)
}

@media(prefers-reduced-motion: reduce) {
    .js .hero-chat[data-hero-chat] .chat-bubble {
        transition: none
    }
}

.chat-bubble {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 12px 15px 28px;
    color: var(--navy);
    line-height: 1.4
}

.chat-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--green-dark);
    font-size: .63rem;
    font-weight: 750;
    margin-bottom: 6px
}

.chat-brand .icon {
    width: 15px;
    height: 15px
}

.chat-time {
    position: absolute;
    right: 13px;
    bottom: 7px;
    color: var(--muted);
    font-size: .65rem;
    font-weight: 500;
    white-space: nowrap
}

.chat-time .icon {
    height: 13px;
    width: 13px;
    color: var(--green-dark);
    margin-left: 3px
}

.chat-reply {
    width: 72%;
    margin: 9px 0 0 auto;
    background: #dcefd5;
    min-height: 43px;
    padding: 10px 65px 10px 15px
}

.chat-reply .chat-time {
    bottom: 12px
}

.audiences {
    padding: 21px 0 25px;
    background: var(--pale)
}

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

.audience-card,
.start-card {
    display: grid;
    grid-template-columns: 139px minmax(0, 1fr);
    gap: 20px;
    min-width: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 9px;
    scroll-margin-top: 20px
}

.audience-card>img,
.start-card>img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    object-position: 39% center;
    min-height: 178px
}

.audience-card>div,
.start-card>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 7px 8px 7px 0;
    min-width: 0
}

.audience-card h2 {
    font-size: 1.52rem;
    letter-spacing: -.04em
}

.audience-card p,
.start-card p {
    font-size: .95rem;
    line-height: 1.45;
    margin: 8px 0 15px
}

.audience-card .button,
.start-card .button {
    width: 100%;
    font-size: .88rem;
    min-height: 45px;
    padding: 11px 9px;
    gap: 7px;
    margin-top: auto
}

.trust-strip {
    padding: 27px 0;
    background: var(--pale)
}

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

.trust-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 27px;
    border-left: 1px solid #d5e4d0;
    min-width: 0
}

.trust-item:first-child {
    border-left: 0;
    padding-left: 0
}

.trust-item:last-child {
    padding-right: 0
}

.trust-item>.icon {
    width: 49px;
    height: 49px;
    color: var(--green-dark)
}

.trust-item h3 {
    font-size: 1rem;
    letter-spacing: -.03em;
    margin-bottom: 5px
}

.trust-item p {
    font-size: .875rem;
    line-height: 1.5
}

.section {
    padding: 48px 0
}

.section-heading {
    text-align: center;
    margin-bottom: 33px
}

.section-heading p {
    margin-top: 9px;
    font-size: 1.05rem
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    list-style: none;
    text-align: center;
    margin: 0 auto;
    max-width: 1030px
}

.step-symbols {
    display: flex;
    justify-content: center;
    gap: 13px;
    align-items: center;
    margin-bottom: 20px
}

.step-number,
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pale);
    color: var(--green-dark);
    flex-shrink: 0
}

.step-number {
    font-size: 2rem;
    line-height: 1;
    font-weight: 800
}

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

.steps h3 {
    font-size: 1.17rem
}

.steps p {
    font-size: .98rem;
    margin: 10px auto 0;
    line-height: 1.5;
    max-width: 290px
}

.demo-section {
    padding: 21px 0;
    background: var(--pale)
}

.demo-layout {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 30px;
    align-items: stretch
}

.demo-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 380px
}

.demo-photo picture,
.demo-photo img {
    width: 100%;
    height: 100%
}

.demo-photo img {
    object-fit: cover;
    object-position: 40% center
}

.demo-chat {
    position: absolute;
    right: 22px;
    top: 48px;
    width: 215px;
    font-size: .95rem
}

.example-label {
    display: table;
    margin-bottom: 8px;
    padding: 5px 12px;
    border-radius: 6px;
    background: var(--green);
    color: var(--green-ink);
    font-size: .8rem;
    font-weight: 750
}

.demo-chat .chat-bubble {
    padding-top: 14px;
    padding-bottom: 30px
}

.demo-chat .chat-reply {
    padding-block: 12px
}

.chat-confirmation {
    margin-top: 27px;
    padding: 14px 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    line-height: 1.4;
    color: var(--navy)
}

.check-dot {
    width: 29px;
    height: 29px;
    flex-shrink: 0;
    border-radius: 50%;
    color: white;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center
}

.check-dot .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.5
}

.demo-copy {
    padding: 21px 19px 22px 0;
    align-self: center
}

.demo-copy h2 {
    font-size: 2rem;
    line-height: 1.2
}

.demo-copy>p {
    margin-top: 19px;
    line-height: 1.55;
    font-size: 1rem
}

.check-list {
    list-style: none;
    display: grid;
    gap: 17px;
    margin-top: 32px
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: .91rem;
    line-height: 1.45
}

.check-list .icon {
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    padding: 5px;
    width: 28px;
    height: 28px;
    stroke-width: 2.5
}

.no-reply {
    background: var(--pale);
    text-align: center;
    padding: 20px 0 27px
}

.no-reply h2 {
    font-size: 1.55rem;
    display: flex;
    justify-content: center;
    gap: 13px;
    align-items: center
}

.no-reply .icon-circle {
    width: 43px;
    height: 43px;
    background: #dcead6
}

.no-reply .icon {
    height: 26px;
    width: 26px
}

.no-reply p {
    font-size: .93rem;
    margin-top: 5px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 39px;
    padding-block: 4px
}

.feature {
    display: flex;
    gap: 17px;
    align-items: flex-start;
    min-width: 0
}

.feature .icon-circle {
    width: 66px;
    height: 66px
}

.feature .icon-circle .icon {
    width: 32px;
    height: 32px
}

.feature h3 {
    font-size: 1rem;
    line-height: 1.35;
    padding-top: 4px;
    letter-spacing: -.025em
}

.feature p {
    font-size: .92rem;
    line-height: 1.5;
    margin-top: 6px
}

.start-section {
    background: var(--pale);
    padding-block: 34px
}

.start-section .section-heading {
    margin-bottom: 29px
}

.start-card {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 20px
}

.start-card>img {
    min-height: 205px
}

.start-card h3 {
    font-size: 1.21rem
}

.start-card p {
    margin-bottom: 18px
}

.start-card .button {
    font-size: .93rem
}

.faq-section {
    padding-bottom: 27px
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--white)
}

.faq-list summary {
    padding: 13px 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 750;
    cursor: pointer;
    line-height: 1.4;
    min-height: 47px
}

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

.faq-list summary .icon {
    width: 19px;
    height: 19px;
    transition: transform .18s ease
}

.faq-list details[open] summary .icon {
    transform: rotate(180deg)
}

.faq-list details[open] summary {
    padding-bottom: 8px
}

.faq-list details>div {
    padding: 0 16px 15px
}

.faq-list p {
    font-size: .88rem;
    line-height: 1.55
}

.faq-photo {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 290px
}

.faq-photo picture,
.faq-photo img {
    width: 100%;
    height: 100%
}

.faq-photo img {
    object-fit: cover;
    object-position: 38% center
}

.faq-photo>p {
    position: absolute;
    right: 17px;
    top: 19px;
    font-size: 1.18rem;
    font-weight: 650;
    font-style: italic;
    line-height: 1.35;
    color: var(--navy);
    background: var(--white);
    padding: 12px 15px;
    border-radius: 5px
}

.closing-section {
    padding: 0 0 25px
}

.closing-cta {
    background: var(--green);
    color: var(--green-ink);
    border-radius: 7px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.closing-cta h2 {
    font-size: 2rem;
    letter-spacing: -.035em;
    color: var(--green-ink)
}

.closing-cta p {
    font-size: 1rem;
    margin-top: 6px
}

.closing-cta .button {
    min-width: 220px;
    flex-shrink: 0
}

.site-footer {
    background: var(--green);
    color: var(--navy);
    padding: 43px 0 23px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1.2fr 1.2fr;
    gap: 25px;
    align-items: start
}

.site-footer .brand {
    font-size: 1.45rem;
    gap: 8px
}

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

.footer-brand p {
    font-size: .76rem;
    margin: 9px 0 0 44px;
    line-height: 1.4
}

.site-footer h2 {
    font-size: .88rem;
    margin: 8px 0 15px;
    letter-spacing: -.02em;
    font-weight: 750
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 9px;
    font-size: .85rem;
    line-height: 1.45
}

.footer-note {
    border-left: 1px solid #7fa177;
    padding: 10px 0 24px 25px;
    font-size: 1.08rem;
    font-weight: 650;
    line-height: 1.4;
    font-style: italic;
    margin-top: 7px
}

.footer-note::after {
    content: "";
    display: block;
    width: 88px;
    height: 2px;
    background: var(--green-dark);
    margin-top: 13px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    font-size: .77rem
}

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

.page-heading {
    padding: 55px 0 35px;
    background: var(--pale)
}

.page-heading h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    max-width: 820px
}

.page-heading p {
    margin-top: 17px;
    max-width: 750px;
    line-height: 1.65
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: .86rem;
    color: var(--muted);
    margin-bottom: 22px;
    flex-wrap: wrap
}

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

.content-section {
    padding: 45px 0 65px
}

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

.form-card {
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white)
}

.form-card h2 {
    font-size: 1.65rem;
    margin-bottom: 22px
}

.field {
    margin-bottom: 20px
}

.field label,
.field-label {
    display: block;
    font-size: .97rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 7px
}

.field small,
.form-note {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.5;
    margin-top: 6px
}

.field input:not([type=checkbox]):not([type=radio]),
.field select,
.field textarea {
    display: block;
    width: 100%;
    border: 1px solid #aebbaf;
    border-radius: 6px;
    background: var(--white);
    padding: 12px 13px;
    min-height: 48px;
    color: var(--navy);
    line-height: 1.5
}

.field textarea {
    resize: vertical;
    min-height: 130px
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--green-dark)
}

.field [aria-invalid=true] {
    border-color: #ae2828 !important
}

.field-error {
    color: #922828;
    font-size: .84rem;
    display: block;
    margin-top: 5px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.choice-field {
    border: 0;
    padding: 0;
    margin: 0 0 22px;
    min-width: 0
}

.choice-field legend {
    padding: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: .97rem;
    color: var(--navy)
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.choice {
    position: relative;
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 54px;
    padding: 12px;
    border: 1px solid #aebbaf;
    border-radius: 6px;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 650;
    color: var(--navy)
}

.choice:has(input:checked) {
    background: var(--pale);
    border-color: var(--green-dark)
}

.choice input,
.days-grid input {
    accent-color: var(--green-dark);
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    margin: 0
}

.days-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.day-choice {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--pale);
    border: 1px solid var(--border);
    padding: 9px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .86rem
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    line-height: 1.5;
    margin: 21px 0
}

.agreement input {
    width: 19px;
    height: 19px;
    margin: 3px 0 0;
    accent-color: var(--green-dark);
    flex-shrink: 0
}

.agreement a,
.prose a,
.form-note a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px
}

.submit-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center
}

.submit-row .button {
    min-width: 210px
}

.form-status {
    background: var(--pale);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 25px
}

.form-status h2 {
    font-size: 1.4rem;
    margin: 0 0 8px
}

.form-status p {
    font-size: .95rem
}

.form-status.error {
    background: #fff4f2;
    border-color: #d99a92;
    color: #752620
}

.form-aside h2 {
    font-size: 1.6rem;
    margin-bottom: 15px
}

.form-aside>p {
    font-size: 1rem;
    margin-top: 14px;
    line-height: 1.6
}

.form-aside .check-list {
    margin-block: 25px
}

.form-aside img {
    border-radius: var(--radius);
    margin-top: 26px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.contact-links {
    display: grid;
    gap: 15px;
    margin: 22px 0
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 650;
    overflow-wrap: anywhere
}

.contact-links .icon {
    color: var(--green-dark)
}

.prose {
    max-width: 800px
}

.prose h2 {
    font-size: 1.55rem;
    margin: 35px 0 14px
}

.prose h2:first-child {
    margin-top: 0
}

.prose p {
    margin-bottom: 18px;
    line-height: 1.75
}

.prose ul {
    margin: 0 0 22px 23px
}

.prose li {
    margin: 7px 0
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.trap-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.offline-notice {
    border-left: 4px solid var(--green-dark);
    background: var(--pale);
    padding: 19px 21px;
    font-size: .97rem;
    border-radius: 0 7px 7px 0
}

.offline-notice p+p {
    margin-top: 10px
}

@media(min-width:1200px) {
    .hero-copy {
        padding-right: 30px
    }

    .hero-layout {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:1100px) {
    .header-inner {
        gap: 18px
    }

    .site-nav {
        gap: 17px;
        font-size: .79rem
    }

    .brand {
        font-size: 1.35rem
    }

    .brand-mark svg {
        width: 38px;
        height: 38px
    }

    .button-small {
        padding-inline: 12px
    }

    .audience-card,
    .start-card {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 15px
    }

    .trust-item {
        gap: 14px;
        padding-inline: 20px
    }

    .trust-item>.icon {
        width: 42px;
        height: 42px
    }

    .steps {
        gap: 26px
    }

    .feature {
        gap: 13px
    }

    .feature .icon-circle {
        width: 57px;
        height: 57px
    }

    .features-grid {
        column-gap: 22px
    }

    .demo-layout {
        gap: 25px;
        grid-template-columns: 1.5fr 1fr
    }

    .demo-copy h2 {
        font-size: 1.8rem
    }

    .footer-grid {
        gap: 20px;
        grid-template-columns: 1.65fr 1fr 1fr 1.2fr
    }

    .footer-note {
        display: none
    }

    .hero-chat {
        right: 15px;
        width: 198px
    }

    .hero-actions {
        gap: 10px
    }

    .hero-actions .button {
        padding-inline: 12px
    }

    .hero-actions span {
        font-size: .69rem
    }
}

@media(max-width:950px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: 75px
    }

    .menu-toggle {
        display: flex
    }

    .site-nav {
        width: 100%;
        max-width: none;
        flex-basis: 100%;
        flex-wrap: wrap;
        gap: 6px 25px;
        padding-bottom: 18px
    }

    .js .site-nav:not(.is-open) {
        display: none
    }

    .nav-actions {
        gap: 10px
    }

    .hero-layout {
        min-height: 430px
    }

    .hero-copy {
        padding-block: 30px
    }

    .hero h1 {
        font-size: 2.7rem
    }

    .hero-intro {
        font-size: 1rem
    }

    .hero-photo>img {
        object-position: 58% center
    }

    .hero-chat {
        bottom: 22px;
        width: 185px
    }

    .audience-card,
    .start-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px
    }

    .audience-card h2 {
        font-size: 1.35rem
    }

    .audience-card p,
    .start-card p {
        font-size: .9rem
    }

    .audience-card .button,
    .start-card .button {
        font-size: .82rem
    }

    .start-card h3 {
        font-size: 1.05rem
    }

    .trust-grid {
        gap: 20px
    }

    .trust-item {
        padding: 0;
        border: 0;
        align-items: flex-start;
        gap: 11px
    }

    .trust-item>.icon {
        width: 34px;
        height: 34px
    }

    .trust-item h3 {
        font-size: .88rem
    }

    .trust-item p {
        font-size: .8rem
    }

    .demo-chat {
        width: 188px;
        right: 15px;
        font-size: .85rem
    }

    .demo-copy {
        padding: 16px 0
    }

    .demo-copy h2 {
        font-size: 1.65rem
    }

    .demo-copy>p {
        font-size: .92rem
    }

    .check-list {
        gap: 13px;
        margin-top: 22px
    }

    .check-list li {
        font-size: .83rem
    }

    .check-list .icon {
        width: 25px;
        height: 25px
    }

    .feature h3 {
        font-size: .92rem
    }

    .feature p {
        font-size: .85rem
    }

    .feature .icon-circle {
        width: 50px;
        height: 50px
    }

    .feature .icon-circle .icon {
        width: 27px;
        height: 27px
    }

    .closing-cta {
        padding: 27px
    }

    .closing-cta h2 {
        font-size: 1.7rem
    }

    .closing-cta p {
        font-size: .94rem
    }

    .closing-cta .button {
        min-width: 195px
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        row-gap: 27px
    }

    .footer-grid>div:nth-child(4) {
        grid-column: 2/4
    }

    .form-layout {
        gap: 30px;
        grid-template-columns: 1.5fr 1fr
    }

    .form-card {
        padding: 23px
    }
}

@media(max-width:760px) {
    html {
        scroll-padding-top: 22px
    }

    body {
        font-size: 17px
    }

    .container {
        width: calc(100% - 40px)
    }

    .header-inner {
        min-height: 72px;
        gap: 0
    }

    .brand {
        font-size: 1.4rem
    }

    .brand-mark svg {
        width: 38px;
        height: 38px
    }

    .site-nav {
        padding-top: 12px
    }

    .site-nav>a {
        width: 100%;
        padding: 10px 3px;
        font-size: 1rem
    }

    .nav-actions {
        width: 100%;
        margin: 7px 0 0
    }

    .nav-actions .button {
        flex: 1
    }

    .button {
        min-height: 49px
    }

    .hero-layout {
        grid-template-columns: 1fr
    }

    .hero-copy {
        padding: 33px 0 27px
    }

    .hero h1 {
        font-size: clamp(2.4rem, 7.2vw, 3.2rem);
        line-height: 1.08
    }

    .hero-intro {
        font-size: 1.05rem;
        max-width: 530px;
        margin-top: 20px
    }

    .hero-actions {
        max-width: 540px;
        margin-top: 24px;
        gap: 12px
    }

    .hero-actions span {
        font-size: .73rem
    }

    .hero-photo {
        height: 380px;
        border-radius: 8px;
        overflow: hidden
    }

    .hero-photo>img {
        object-position: center 44%
    }

    .hero-chat {
        right: 20px;
        bottom: 22px;
        width: 210px;
        font-size: .9rem
    }

    .audiences {
        margin-top: 22px;
        padding-block: 23px
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .audience-card,
    .start-card {
        grid-template-columns: 142px minmax(0, 1fr);
        gap: 20px;
        padding: 9px
    }

    .audience-card h2 {
        font-size: 1.45rem
    }

    .audience-card p,
    .start-card p {
        font-size: .96rem
    }

    .audience-card .button,
    .start-card .button {
        font-size: .95rem
    }

    .audience-card>img {
        min-height: 177px
    }

    .trust-strip {
        padding: 13px 0 28px
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .trust-item {
        gap: 20px;
        align-items: center
    }

    .trust-item>.icon {
        width: 44px;
        height: 44px
    }

    .trust-item h3 {
        font-size: 1.06rem
    }

    .trust-item p {
        font-size: .95rem
    }

    .section {
        padding-block: 39px
    }

    h2 {
        font-size: 1.9rem
    }

    .section-heading {
        margin-bottom: 29px
    }

    .section-heading p {
        font-size: 1rem;
        max-width: 480px;
        margin-inline: auto
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left
    }

    .steps li {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
        column-gap: 18px;
        align-items: center
    }

    .step-symbols {
        grid-row: 1/3;
        gap: 8px;
        margin: 0;
        justify-content: flex-start
    }

    .step-number,
    .step-symbols .icon-circle {
        width: 57px;
        height: 57px
    }

    .step-number {
        font-size: 1.65rem
    }

    .step-symbols .icon-circle .icon {
        width: 29px;
        height: 29px
    }

    .steps h3 {
        font-size: 1.16rem
    }

    .steps p {
        font-size: .96rem;
        margin: 5px 0 0;
        max-width: none
    }

    .demo-layout {
        grid-template-columns: 1fr;
        gap: 0
    }

    .demo-photo {
        min-height: 0;
        height: 410px
    }

    .demo-copy {
        padding: 27px 6px 8px
    }

    .demo-copy h2 {
        font-size: 1.95rem
    }

    .demo-copy>p {
        font-size: 1rem;
        max-width: 580px;
        margin-top: 16px
    }

    .check-list {
        margin-top: 22px;
        gap: 15px
    }

    .check-list li {
        font-size: .97rem
    }

    .check-list .icon {
        width: 28px;
        height: 28px
    }

    .demo-chat {
        width: 212px;
        right: 20px;
        top: 35px;
        font-size: .93rem
    }

    .no-reply {
        padding-block: 21px 27px
    }

    .no-reply h2 {
        font-size: 1.3rem;
        line-height: 1.25;
        gap: 11px
    }

    .no-reply p {
        margin-top: 12px;
        font-size: .95rem
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 29px 22px
    }

    .feature {
        flex-direction: column;
        gap: 10px
    }

    .feature .icon-circle {
        height: 59px;
        width: 59px
    }

    .feature .icon-circle .icon {
        width: 31px;
        height: 31px
    }

    .feature h3 {
        font-size: 1.01rem
    }

    .feature p {
        font-size: .94rem
    }

    .start-card h3 {
        font-size: 1.17rem
    }

    .start-card>img {
        min-height: 193px
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .faq-list summary {
        font-size: 1rem;
        padding: 15px
    }

    .faq-list p {
        font-size: .95rem
    }

    .faq-photo {
        height: 310px;
        min-height: 0
    }

    .faq-photo>p {
        font-size: 1.25rem
    }

    .closing-section {
        padding-bottom: 22px
    }

    .closing-cta {
        padding: 27px 23px;
        display: block
    }

    .closing-cta h2 {
        font-size: 1.78rem;
        line-height: 1.22
    }

    .closing-cta p {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 10px
    }

    .closing-cta .button {
        margin-top: 21px;
        min-width: 220px
    }

    .site-footer {
        padding-top: 34px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 29px 25px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-grid>div:nth-child(4) {
        grid-column: auto
    }

    .site-footer .brand {
        font-size: 1.52rem
    }

    .site-footer h2 {
        font-size: .97rem;
        margin-top: 0;
        margin-bottom: 13px
    }

    .site-footer ul {
        font-size: .94rem;
        gap: 10px
    }

    .footer-brand p {
        font-size: .9rem
    }

    .footer-bottom {
        font-size: .8rem;
        margin-top: 32px
    }

    .page-heading {
        padding-block: 35px 27px
    }

    .page-heading h1 {
        font-size: 2.25rem
    }

    .page-heading p {
        font-size: 1rem
    }

    .content-section {
        padding-block: 30px 45px
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .form-aside img {
        max-height: 350px;
        width: 100%
    }

    .form-card {
        padding: 23px
    }

    .prose {
        font-size: 1rem
    }

    .prose h2 {
        font-size: 1.4rem
    }
}

@media(max-width:420px) {
    .container {
        width: calc(100% - 32px)
    }

    .brand {
        font-size: 1.27rem;
        gap: 7px
    }

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

    .menu-toggle {
        padding: 8px 10px
    }

    .hero h1 {
        font-size: 2.4rem
    }

    .hero-actions .button {
        padding-inline: 11px;
        gap: 9px
    }

    .hero-actions span {
        font-size: .7rem
    }

    .hero-photo {
        height: 320px
    }

    .hero-chat {
        width: 181px;
        right: 12px;
        bottom: 16px;
        font-size: .81rem
    }

    .audience-card,
    .start-card {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 13px
    }

    .audience-card>div,
    .start-card>div {
        padding-right: 0
    }

    .audience-card>img {
        min-height: 190px
    }

    .audience-card h2 {
        font-size: 1.27rem
    }

    .audience-card p,
    .start-card p {
        font-size: .89rem
    }

    .audience-card .button,
    .start-card .button {
        font-size: .82rem;
        padding-inline: 8px;
        gap: 5px
    }

    .audience-card .button .icon,
    .start-card .button .icon {
        width: 17px;
        height: 17px
    }

    .start-card h3 {
        font-size: 1.09rem
    }

    .start-card>img {
        min-height: 220px
    }

    .steps li {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 13px
    }

    .step-number,
    .step-symbols .icon-circle {
        width: 47px;
        height: 47px
    }

    .step-symbols {
        gap: 7px
    }

    .step-symbols .icon-circle .icon {
        width: 25px;
        height: 25px
    }

    .step-number {
        font-size: 1.4rem
    }

    .steps h3 {
        font-size: 1.05rem
    }

    .steps p {
        font-size: .91rem
    }

    .demo-photo {
        height: 350px
    }

    .demo-photo img {
        object-position: 29% center
    }

    .demo-chat {
        width: 174px;
        right: 11px;
        top: 23px;
        font-size: .8rem
    }

    .chat-confirmation {
        padding: 11px 10px;
        gap: 8px;
        font-size: .73rem;
        margin-top: 17px
    }

    .demo-chat .chat-reply {
        width: 76%
    }

    .demo-chat .example-label {
        font-size: .74rem
    }

    .check-dot {
        height: 25px;
        width: 25px
    }

    .features-grid {
        gap: 26px 20px
    }

    .feature h3 {
        font-size: .96rem
    }

    .feature p {
        font-size: .88rem
    }

    .faq-photo {
        height: 270px
    }

    .faq-photo>p {
        font-size: 1.05rem;
        right: 12px;
        top: 12px;
        padding: 9px 10px
    }

    .closing-cta {
        padding: 24px 20px
    }

    .closing-cta h2 {
        font-size: 1.62rem
    }

    .footer-grid {
        gap: 26px 20px
    }

    .footer-bottom {
        font-size: .73rem
    }

    .form-card {
        padding: 19px 16px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .choice-grid {
        gap: 9px
    }

    .choice {
        font-size: .85rem;
        padding: 10px
    }

    .page-heading h1 {
        font-size: 2rem
    }

    .form-card h2 {
        font-size: 1.4rem
    }
}

:is(.audience-card, .start-card, .trust-item, .steps, .feature, .faq-list, .demo-copy)>p,
:is(.audience-card, .start-card, .trust-item, .feature)>div>p,
.faq-list details p {
    font-size: 1rem
}

.check-list li {
    font-size: 1rem
}

.site-nav,
.button-small {
    font-size: .875rem
}

.optional {
    font-weight: 400;
    font-size: .86rem
}

.offline-notice a {
    text-decoration: underline;
    text-underline-offset: 3px
}

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

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important
    }
}

@media print {

    .site-header,
    .site-footer,
    .hero-actions,
    .button,
    .hero-chat,
    .demo-chat,
    .closing-section {
        display: none !important
    }

    body {
        font-size: 12pt;
        color: #000
    }

    .container {
        width: 100%;
        max-width: none
    }

    .section {
        padding-block: 15pt
    }

    .hero-layout {
        min-height: 0
    }

    .hero-copy {
        padding: 0
    }

    details:not([open])>div {
        display: block !important
    }

    h1 {
        font-size: 28pt
    }

    h2 {
        font-size: 20pt
    }

    .form-layout {
        display: block
    }

    .form-aside {
        display: none
    }
}

/* SMS setup screen */
.sms-form-page {
    color: var(--navy)
}

.sms-site-header {
    border-bottom: 0
}

.sms-site-header .header-inner {
    width: min(922px, calc(100% - 40px));
    min-height: 112px;
    align-items: flex-start;
    padding-top: 9px
}

.sms-brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0
}

.sms-kicker {
    color: #8995a5;
    font-size: .66rem;
    line-height: 1;
    white-space: nowrap
}

.sms-brand-lockup .brand {
    font-size: 1.62rem
}

.sms-brand-lockup .brand-mark svg {
    width: 43px;
    height: 43px
}

.sms-form-page .site-nav {
    flex: 0 1 auto;
    max-width: none;
    align-self: center;
    gap: 31px;
    font-size: .9rem
}

.sms-form-page .site-nav>a {
    padding: 10px 0
}

.sms-form-page .nav-actions {
    margin-left: 0
}

.sms-form-page .nav-actions .button {
    min-width: 155px;
    min-height: 43px
}

.sms-form-main {
    padding: 7px 0 19px
}

.sms-form-container {
    width: min(922px, calc(100% - 40px));
    margin-inline: auto
}

.sms-heading {
    margin-bottom: 18px
}

.sms-heading h1 {
    font-size: clamp(2.25rem, 4vw, 2.75rem);
    letter-spacing: -.04em
}

.sms-heading p {
    margin-top: 1px;
    color: var(--navy);
    font-size: 1.16rem;
    line-height: 1.35
}

.sms-form {
    display: flex;
    flex-direction: column;
    gap: 0
}

.sms-contact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    margin-bottom: 19px;
    padding: 18px 18px 25px;
    border-radius: 5px;
    background: #eff6ed
}

.sms-field label,
.sms-label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 1.03rem;
    font-weight: 750;
    line-height: 1.25
}

.sms-phone-control {
    display: grid;
    grid-template-columns: 61px minmax(0, 1fr);
    min-height: 42px;
    border: 1px solid #aebfd1;
    border-radius: 5px;
    background: var(--white);
    overflow: hidden
}

.sms-phone-control span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 6px;
    border-right: 1px solid #aebfd1;
    color: var(--navy);
    font-weight: 700;
    text-align: center
}

.sms-phone-control input {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 8px 12px;
    color: var(--navy);
    background: transparent;
    outline: 0
}

.sms-phone-control input::placeholder {
    color: #9aaac1;
    opacity: 1
}

.sms-phone-control:focus-within {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 2px rgba(82, 126, 72, .14)
}

.sms-inline-channels {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 9px 0 0;
    padding: 0;
    border: 0
}

.sms-field .sms-inline-channels .sms-channel-choice {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 7px 10px
}

.sms-inline-channels .sms-channel-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0
}

.sms-inline-channels .sms-channel-choice span {
    display: block
}

.sms-inline-channels .sms-channel-choice .sms-channel-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1px solid #8ca2bd;
    border-radius: 50%;
    background: var(--white);
    color: var(--white)
}

.sms-inline-channels .sms-channel-choice .sms-channel-check .icon {
    display: none;
    width: 12px;
    height: 12px;
    stroke-width: 3
}

.sms-inline-channels .sms-channel-choice input:checked+.sms-channel-check {
    border-color: #174c37;
    background: #174c37
}

.sms-inline-channels .sms-channel-choice input:checked+.sms-channel-check .icon {
    display: block
}

.sms-inline-channels .sms-channel-choice input:focus-visible+.sms-channel-check {
    outline: 3px solid var(--navy);
    outline-offset: 3px
}

.sms-inline-channels .sms-channel-choice:has(input:checked) {
    border-color: #a7d0a2;
    background: #acd5a6
}

.sms-channel-panel {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fafcf9
}

.sms-channel-panel h2 {
    font-size: 1.18rem;
    letter-spacing: -.03em
}

.sms-channel-panel p {
    margin-top: 5px;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.35
}

.sms-channel-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px
}

.sms-channel-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0
}

.sms-channel-group legend {
    width: 100%;
    margin: 0 0 7px;
    padding: 0;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700
}

.sms-channel-group .sms-channel-choice {
    margin-top: 6px
}

.sms-channel-choice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #c8d7c5;
    border-radius: 5px;
    color: var(--navy);
    background: var(--white);
    cursor: pointer
}

.sms-channel-choice:has(input:checked) {
    border-color: var(--green-dark);
    background: var(--pale)
}

.sms-channel-choice input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex-shrink: 0;
    accent-color: var(--green-dark)
}

.sms-channel-choice span {
    display: grid;
    gap: 2px;
    min-width: 0
}

.sms-channel-choice strong {
    color: var(--navy);
    font-size: .88rem
}

.sms-channel-choice small {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.3
}

.sms-field small,
.sms-help {
    display: block;
    margin-top: 5px;
    color: #5d759b;
    font-size: .78rem;
    line-height: 1.35
}

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

.sms-column h2 {
    margin-bottom: 14px;
    font-size: 1.38rem;
    letter-spacing: -.035em
}

.sms-column h3 {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.2
}

.sms-subgroup+.sms-subgroup {
    margin-top: 16px
}

.sms-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px
}

.sms-day {
    position: relative;
    min-width: 0;
    cursor: pointer
}

.sms-day input,
.sms-message-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0
}

.sms-day>span {
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: center;
    min-height: 58px;
    padding: 8px 3px;
    border: 1px solid #b1c2d6;
    border-radius: 5px;
    color: var(--navy);
    font-size: .98rem;
    font-weight: 650;
    line-height: 1.2
}

.sms-day input:checked+span {
    border-color: #a7d0a2;
    background: #acd5a6
}

.sms-day input:focus-visible+span,
.sms-message-choice input:focus-visible+.sms-checkbox {
    outline: 3px solid var(--navy);
    outline-offset: 3px
}

.sms-day-check {
    display: none;
    position: absolute;
    top: 7px;
    left: 50%;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #174c37;
    color: var(--white);
    transform: translateX(-50%)
}

.sms-day-check .icon {
    width: 13px;
    height: 13px;
    stroke-width: 3
}

.sms-day input:checked+span .sms-day-check {
    display: flex
}

.sms-time-select {
    display: block;
    width: 100%;
    min-height: 42px;
    border: 1px solid #aebfd1;
    border-radius: 5px;
    padding: 7px 11px;
    color: var(--navy);
    background: var(--white);
    font-weight: 650
}

.sms-time-select:focus {
    border-color: var(--green-dark);
    outline: 3px solid var(--navy);
    outline-offset: 3px
}

.sms-message-list {
    display: grid;
    gap: 9px;
    margin-top: 1px
}

.sms-message-choice {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    column-gap: 13px;
    position: relative;
    min-height: 24px;
    cursor: pointer;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.35
}

.sms-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #8ca2bd;
    border-radius: 4px;
    background: var(--white)
}

.sms-checkbox .icon {
    display: none;
    width: 17px;
    height: 17px;
    stroke-width: 3
}

.sms-message-choice input:checked+.sms-checkbox {
    border-color: #4a8950;
    background: #347b49;
    color: var(--white)
}

.sms-message-choice input:checked+.sms-checkbox .icon {
    display: block
}

.sms-message-choice>span:last-child {
    min-width: 0
}

.sms-column textarea {
    display: block;
    width: 100%;
    height: 62px;
    min-height: 62px;
    margin-top: 12px;
    border: 1px solid #aebfd1;
    border-radius: 5px;
    padding: 9px 12px;
    resize: vertical;
    color: var(--navy);
    background: var(--white);
    line-height: 1.4
}

.sms-column textarea::placeholder {
    color: #9aaac1;
    opacity: 1
}

.sms-column textarea:focus {
    border-color: var(--green-dark);
    outline: 3px solid var(--navy);
    outline-offset: 3px
}

.sms-save-button {
    width: 100%;
    min-height: 49px;
    margin-top: 24px;
    border: 0;
    border-radius: 5px;
    background: #a8d3a2;
    color: #0e3325;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.25;
    transition: background-color .18s ease
}

.sms-save-button:hover {
    background: #98c78f
}

.sms-save-button:focus-visible {
    outline: 3px solid var(--navy);
    outline-offset: 4px
}

.sms-form-note {
    margin-top: 8px;
    color: var(--navy);
    font-size: .86rem;
    line-height: 1.4;
    text-align: center
}

.sms-price-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 28px;
    align-items: center;
    margin-top: 25px;
    padding: 20px 22px;
    border: 1px solid #b8d6b1;
    border-radius: 5px;
    background: #f4faf2
}

.sms-price-panel h2 {
    font-size: 1.3rem;
    letter-spacing: -.035em
}

.sms-price-copy>p:last-child {
    margin-top: 7px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.4
}

.sms-price-values {
    display: flex;
    gap: 24px;
    align-items: baseline
}

.sms-price-values>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 112px
}

.sms-price-values strong {
    color: var(--navy);
    font-size: 1.55rem;
    line-height: 1.1
}

.sms-price-values span {
    color: var(--muted);
    font-size: .72rem
}

.sms-price-note {
    grid-column: 1 / -1;
    padding-top: 12px;
    border-top: 1px solid #dcebd8;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.4
}

.sms-legal-ack {
    justify-content: center;
    max-width: 760px;
    margin: 18px auto 0;
    text-align: center
}

.sms-legal-error {
    margin-top: 5px
}

.sms-login-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    gap: 24px;
    margin-top: 100px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #eff6ed
}

.sms-panel-kicker,
.sms-saved-label {
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2
}

.sms-login-panel h2,
.sms-saved-heading h2 {
    font-size: 1.45rem;
    letter-spacing: -.035em
}

.sms-login-panel-copy>p:last-child {
    margin-top: 8px;
    color: var(--muted);
    font-size: .91rem;
    line-height: 1.45
}

.sms-login-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px
}

.sms-login-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: .92rem;
    font-weight: 750;
    line-height: 1.25
}

.sms-login-form .button {
    min-height: 42px;
    white-space: nowrap
}

.sms-saved-panel {
    margin: 64px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border)
}

.sms-saved-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    text-align: center
}

.sms-saved-heading-copy {
    display: grid;
    justify-items: center
}

.sms-saved-heading-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.sms-saved-summary {
    display: flex;
    justify-content: center;
    gap: 12px
}

.sms-saved-summary>div {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 116px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--pale)
}

.sms-saved-summary strong {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1
}

.sms-saved-summary span {
    color: var(--muted);
    font-size: .78rem
}

.sms-saved-list {
    display: grid;
    gap: 10px;
    margin-top: 18px
}

.sms-saved-item {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--white)
}

.sms-saved-row {
    display: grid;
    grid-template-columns: minmax(185px, .9fr) minmax(250px, 1.6fr) auto;
    align-items: center;
    gap: 18px
}

.sms-saved-primary {
    min-width: 0
}

.sms-saved-primary h3 {
    overflow: hidden;
    color: var(--navy);
    font-size: 1.02rem;
    letter-spacing: -.02em;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sms-saved-details {
    display: flex;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
    color: var(--muted);
    font-size: .83rem;
    line-height: 1.3;
    flex-wrap: wrap
}

.sms-saved-channel {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--pale);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 800
}

.sms-saved-schedule {
    color: var(--navy);
    font-weight: 700
}

.sms-saved-count {
    color: var(--muted)
}

.sms-saved-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px
}

.sms-saved-status {
    flex-shrink: 0;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.2
}

.sms-saved-status.is-active {
    background: #e4f1e1;
    color: #28613a
}

.sms-saved-status.is-paused {
    background: #f4eee0;
    color: #795d24
}

.sms-saved-message-preview {
    overflow: hidden;
    margin: 11px 0 0;
    padding-top: 14px;
    border-top: 1px solid #edf2eb;
    color: var(--text);
    font-size: .84rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap
}

.sms-saved-message-preview::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 8px 2px 1px;
    border-radius: 50%;
    background: var(--green-dark);
    content: ''
}

.sms-saved-message-preview span {
    margin-left: 5px;
    color: var(--muted);
    font-weight: 750
}

.sms-saved-empty {
    margin-top: 17px;
    color: var(--muted);
    font-size: .92rem;
    text-align: center
}

.sms-site-footer {
    padding: 14px 0 12px
}

.sms-saved-status.is-payment {
    color: #8a5a00;
    background: #fff4d7;
    border-color: #f0d18a;
}

.sms-billing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 28px 0 22px;
    padding: 24px;
    border: 1px solid #e8d29b;
    border-radius: 18px;
    background: linear-gradient(135deg, #fffaf0, #fff3d5);
}

.sms-billing-copy h2,
.billing-card h2 {
    margin: 4px 0 8px;
}

.sms-billing-copy p:last-child {
    max-width: 680px;
    margin: 0;
    color: #5d5b53;
}

.sms-billing-total {
    display: grid;
    gap: 5px;
    justify-items: end;
    text-align: right;
}

.sms-billing-total strong {
    color: #8a5a00;
    font-size: 26px;
}

.sms-billing-total span {
    color: #6c665b;
    font-size: 13px;
}

.sms-billing-total .button {
    margin-top: 8px;
}

.sms-saved-billing {
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid #eadfca;
    color: #6c665b;
}

.sms-saved-billing a,
.billing-item a {
    color: #126782;
    font-weight: 700;
}

.billing-main {
    min-height: 70vh;
    padding: 64px 0 88px;
    background: #f7fafb;
}

.billing-container {
    max-width: 980px;
}

.billing-heading,
.billing-card-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.billing-heading {
    margin-bottom: 28px;
}

.billing-heading h1 {
    margin: 5px 0 10px;
    color: #123f52;
}

.billing-heading p:last-child {
    max-width: 680px;
    margin: 0;
    color: #5d6b75;
}

.billing-kicker,
.billing-item-label {
    margin: 0;
    color: #126782;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.billing-card,
.billing-summary-card {
    padding: 28px;
    border: 1px solid #dce7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18, 63, 82, .05);
}

.billing-summary-card {
    display: flex;
    gap: 54px;
    margin-bottom: 22px;
}

.billing-summary-card div {
    display: grid;
    gap: 7px;
}

.billing-summary-card span {
    color: #61727c;
    font-size: 13px;
}

.billing-summary-card strong {
    color: #126782;
    font-size: 25px;
}

.billing-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.billing-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0eaed;
    border-radius: 14px;
    background: #fbfdfe;
}

.billing-item.is-pending {
    border-color: #ead29b;
    background: #fffaf0;
}

.billing-item h3 {
    margin: 7px 0 6px;
    color: #123f52;
    font-size: 16px;
}

.billing-item p {
    margin: 0;
    color: #687983;
    font-size: 13px;
}

.billing-item-side {
    display: grid;
    gap: 6px;
    min-width: 190px;
    justify-items: end;
    text-align: right;
}

.billing-item-side strong {
    color: #126782;
    font-size: 18px;
}

.billing-item-side span {
    color: #8a5a00;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .sms-billing-panel,
    .billing-heading,
    .billing-card-heading,
    .billing-item {
        grid-template-columns: 1fr;
        display: grid;
    }

    .sms-billing-total,
    .billing-item-side {
        justify-items: start;
        text-align: left;
    }

    .billing-main {
        padding: 40px 0 60px;
    }

    .billing-card,
    .billing-summary-card {
        padding: 20px;
    }

    .billing-summary-card {
        gap: 24px;
    }
}

.sms-footer-inner {
    width: min(922px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.sms-footer-inner .brand {
    font-size: 1.38rem
}

.sms-footer-inner .brand-mark svg {
    width: 36px;
    height: 36px
}

.sms-footer-links {
    display: flex;
    align-items: center;
    gap: 31px;
    padding: 7px 3px 7px 40px;
    border-left: 1px solid #76a36e;
    color: var(--navy);
    font-size: .84rem
}

.sms-footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px
}

@media(max-width:950px) {
    .sms-site-header .header-inner {
        min-height: 92px
    }

    .sms-form-page .site-nav {
        gap: 17px
    }
}

@media(max-width:760px) {
    .sms-site-header .header-inner {
        width: calc(100% - 40px);
        min-height: 78px;
        padding-top: 9px
    }

    .sms-kicker {
        font-size: .59rem
    }

    .sms-brand-lockup .brand {
        font-size: 1.4rem
    }

    .sms-brand-lockup .brand-mark svg {
        width: 38px;
        height: 38px
    }

    .sms-form-main {
        padding: 20px 0 35px
    }

    .sms-form-container {
        width: calc(100% - 40px)
    }

    .sms-heading {
        margin-bottom: 18px
    }

    .sms-heading h1 {
        font-size: clamp(2rem, 9vw, 2.55rem)
    }

    .sms-heading p {
        font-size: 1.05rem
    }

    .sms-contact-panel,
    .sms-form-grid {
        grid-template-columns: 1fr;
        gap: 17px
    }

    .sms-channel-panel {
        grid-template-columns: 1fr;
        gap: 13px;
        padding: 16px
    }

    .sms-channel-options {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .sms-contact-panel {
        margin-bottom: 24px;
        padding: 16px
    }

    .sms-column h2 {
        font-size: 1.3rem
    }

    .sms-subgroup+.sms-subgroup {
        margin-top: 17px
    }

    .sms-column textarea {
        height: 84px;
        min-height: 84px
    }

    .sms-login-panel {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-top: 100px;
        padding: 18px
    }

    .sms-login-form {
        grid-template-columns: 1fr
    }

    .sms-login-form .button {
        width: 100%
    }

    .sms-saved-panel {
        margin-top: 30px;
        padding-top: 20px
    }

    .sms-saved-heading {
        align-items: center
    }

    .sms-saved-heading-actions {
        width: auto;
        justify-content: center
    }

    .sms-saved-row {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start
    }

    .sms-saved-row-actions {
        width: 100%;
        justify-content: space-between
    }

    .sms-price-panel {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px
    }

    .sms-price-values {
        justify-content: space-between;
        gap: 12px
    }

    .sms-price-values>div {
        min-width: 0
    }

    .sms-price-note {
        grid-column: auto
    }

    .sms-save-button {
        margin-top: 28px
    }

    .sms-footer-inner {
        width: calc(100% - 40px);
        align-items: flex-start;
        flex-direction: column;
        gap: 13px
    }

    .sms-footer-links {
        width: 100%;
        justify-content: flex-end;
        padding: 10px 0 0;
        border-top: 1px solid #76a36e;
        border-left: 0
    }
}

@media(max-width:420px) {
    .sms-site-header .header-inner {
        width: calc(100% - 32px)
    }

    .sms-form-container {
        width: calc(100% - 32px)
    }

    .sms-form-page .site-nav {
        gap: 8px 25px
    }

    .sms-days {
        gap: 3px
    }

    .sms-day>span {
        min-height: 54px;
        padding-inline: 1px;
        font-size: .86rem
    }

    .sms-day-check {
        top: 5px;
        width: 17px;
        height: 17px
    }

    .sms-day-check .icon {
        width: 11px;
        height: 11px
    }

    .sms-message-choice {
        font-size: .94rem
    }

    .sms-footer-inner {
        width: calc(100% - 32px)
    }

    .sms-footer-links {
        justify-content: space-between;
        gap: 12px;
        font-size: .78rem
    }
}

.auth-page {
    background: var(--pale)
}

.auth-main {
    min-height: calc(100vh - 170px);
    padding: 58px 0 72px
}

.auth-container {
    display: flex;
    justify-content: center
}

.auth-card {
    width: min(100%, 480px);
    padding: 35px 38px 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 43, 78, .06)
}

.auth-kicker {
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em
}

.auth-card h1 {
    font-size: 2rem
}

.auth-intro {
    margin-top: 10px;
    color: var(--muted);
    font-size: 1rem
}

.auth-card .form-status {
    margin: 22px 0 0
}

.auth-form {
    margin-top: 25px
}

.auth-submit {
    width: 100%;
    margin-top: 4px
}

.auth-secondary {
    margin-top: 16px;
    color: var(--navy);
    font-size: .88rem;
    text-align: center
}

.auth-secondary a {
    text-decoration: underline;
    text-underline-offset: 3px
}

.auth-flow-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.4;
    text-align: center
}

.auth-resend-form {
    margin-top: 16px;
    text-align: center
}

.auth-resend-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-size: .88rem;
    text-decoration: underline;
    text-underline-offset: 3px
}

.auth-resend-link:not(:disabled) {
    cursor: pointer
}

.auth-resend-link:disabled {
    color: var(--muted);
    cursor: not-allowed;
    text-decoration: none
}

@media(max-width:760px) {
    .auth-main {
        min-height: calc(100vh - 145px);
        padding: 32px 0 45px
    }

    .auth-card {
        padding: 28px 20px 25px
    }

    .auth-card h1 {
        font-size: 1.7rem
    }
}

.admin-page {
    background: var(--pale)
}

.admin-main {
    min-height: calc(100vh - 170px);
    padding: 42px 0 64px
}

.admin-container {
    max-width: 1100px
}

.admin-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px
}

.admin-kicker {
    margin-bottom: 8px;
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em
}

.admin-heading h1 {
    font-size: clamp(2rem, 4vw, 2.7rem)
}

.admin-heading p:last-child {
    margin-top: 8px;
    color: var(--muted);
    font-size: .9rem
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px
}

.admin-section {
    min-width: 0;
    margin-top: 22px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white)
}

.admin-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px
}

.admin-section-heading h2 {
    font-size: 1.35rem
}

.admin-section-heading>span,
.admin-environment {
    color: var(--muted);
    font-size: .82rem
}

.admin-environment {
    padding: 5px 9px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--pale);
    color: var(--green-ink);
    font-weight: 750
}

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

.admin-status {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    align-items: center;
    column-gap: 9px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--navy);
    font-size: .87rem
}

.admin-status strong {
    grid-column: 2;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 600
}

.admin-status-dot {
    grid-row: 1 / span 2;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #b15a50
}

.admin-status.is-ready .admin-status-dot {
    background: var(--green-dark)
}

.admin-status.is-ready strong {
    color: var(--green-dark)
}

.admin-warning {
    margin-top: 17px;
    padding: 12px 14px;
    border-left: 3px solid var(--green-dark);
    border-radius: 0 5px 5px 0;
    background: var(--pale);
    color: var(--navy);
    font-size: .84rem;
    line-height: 1.55
}

.admin-warning code {
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(16, 43, 78, .07);
    font-size: .8rem
}

.admin-forecast-layout {
    display: grid;
    grid-template-columns: minmax(190px, .65fr) minmax(0, 1.7fr);
    align-items: center;
    gap: 28px
}

.admin-forecast-total {
    padding: 22px;
    border: 1px solid #b8d6b1;
    border-radius: 7px;
    background: var(--pale)
}

.admin-forecast-total>span,
.admin-forecast-total>b {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 650
}

.admin-forecast-total strong {
    display: inline-block;
    margin-top: 8px;
    color: var(--navy);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    letter-spacing: -.06em;
    line-height: .95
}

.admin-forecast-total>b {
    display: inline-block;
    margin-left: 8px;
    color: var(--green-dark);
    font-size: 1rem
}

.admin-forecast-total p {
    margin-top: 14px;
    color: var(--muted);
    font-size: .82rem
}

.admin-weekday-chart {
    display: grid;
    gap: 11px
}

.admin-weekday-row {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr) 112px;
    align-items: center;
    gap: 12px
}

.admin-weekday-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px
}

.admin-weekday-label strong {
    color: var(--navy);
    font-size: .86rem
}

.admin-weekday-label span,
.admin-weekday-row small {
    color: var(--muted);
    font-size: .7rem;
    white-space: nowrap
}

.admin-forecast-mobile {
    display: none
}

.admin-bar-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8f0e6
}

.admin-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--green-dark)
}

.admin-bar-width-0 {
    width: 0
}

.admin-bar-width-10 {
    width: 10%
}

.admin-bar-width-20 {
    width: 20%
}

.admin-bar-width-30 {
    width: 30%
}

.admin-bar-width-40 {
    width: 40%
}

.admin-bar-width-50 {
    width: 50%
}

.admin-bar-width-60 {
    width: 60%
}

.admin-bar-width-70 {
    width: 70%
}

.admin-bar-width-80 {
    width: 80%
}

.admin-bar-width-90 {
    width: 90%
}

.admin-bar-width-100 {
    width: 100%
}

.admin-chart-note {
    margin-top: 3px;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.4
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px
}

.admin-metric {
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white)
}

.admin-metric span {
    display: block;
    color: var(--muted);
    font-size: .8rem
}

.admin-metric strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 1.7rem;
    line-height: 1.1
}

.admin-empty {
    padding: 17px;
    border-radius: 5px;
    background: var(--pale);
    color: var(--muted);
    font-size: .9rem
}

.admin-table-wrap {
    overflow-x: auto
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.admin-table th,
.admin-table td {
    padding: 11px 9px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap
}

.admin-table th {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 750;
    letter-spacing: .02em
}

.admin-table td {
    color: var(--navy)
}

.admin-message-cell {
    min-width: 220px;
    max-width: 360px;
    white-space: normal !important;
    line-height: 1.4
}

.admin-cost-section {
    border-color: #b8d6b1;
    background: #fbfdf9
}

.admin-cost-grid {
    margin-top: 0
}

.admin-cost-note {
    margin-top: 17px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.5
}

.admin-cost-subheading {
    margin-top: 24px;
    margin-bottom: 12px
}

.admin-cost-subheading h3 {
    color: var(--navy);
    font-size: 1rem
}

.admin-state-muted {
    color: var(--muted)
}

.admin-state {
    color: var(--green-dark);
    font-weight: 700
}

@media(max-width:760px) {
    .admin-main {
        padding: 30px 0 45px
    }

    .admin-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    .admin-actions {
        justify-content: flex-start
    }

    .admin-section {
        padding: 18px 15px
    }

    .admin-forecast-layout {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .admin-weekday-row {
        grid-template-columns: 82px minmax(0, 1fr) 100px;
        gap: 9px
    }

    .admin-status-grid,
    .admin-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:420px) {

    .admin-forecast-section .admin-section-heading {
        align-items: flex-start;
        flex-direction: column
    }

    .admin-weekday-row {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .admin-weekday-label span {
        display: none
    }

    .admin-forecast-mobile {
        display: inline
    }

    .admin-weekday-row small {
        grid-column: 2;
        margin-top: -6px
    }

    .admin-status-grid,
    .admin-metrics {
        grid-template-columns: 1fr
    }

    .admin-actions {
        width: 100%
    }

    .admin-actions .button {
        flex: 1
    }
}

.admin-test-panel {
    border-color: #b8d6b1;
    background: #f4faf2
}

.admin-test-grid {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(0, 1.5fr) auto;
    align-items: center;
    gap: 18px
}

.admin-test-grid>div span {
    display: block;
    color: var(--muted);
    font-size: .78rem
}

.admin-test-grid>div strong {
    display: block;
    margin-top: 3px;
    color: var(--navy);
    font-size: 1.15rem
}

.admin-test-grid p {
    color: var(--text);
    font-size: .86rem;
    line-height: 1.5
}

.admin-test-grid .button {
    white-space: nowrap
}

.admin-metric small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.3
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 22px
}

.admin-dashboard-grid .admin-section {
    margin-top: 0
}

.admin-ranking {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: sms-ranking
}

.admin-ranking li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    color: var(--navy);
    font-size: .86rem;
    line-height: 1.4;
}

.admin-ranking li::before {
    counter-increment: sms-ranking;
    content: counter(sms-ranking) ".";
    color: var(--green-dark);
    font-weight: 800
}

.admin-ranking li span {
    min-width: 0
}

.admin-ranking li strong {
    color: var(--green-dark);
    white-space: nowrap
}

.admin-activity-list {
    display: grid;
    gap: 10px;
    max-height: 480px;
    overflow: auto
}

.admin-activity-item {
    padding: 12px 14px;
    border-left: 3px solid var(--green);
    border-radius: 0 5px 5px 0;
    background: var(--pale)
}

.admin-activity-item>div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px
}

.admin-activity-item strong {
    color: var(--navy);
    font-size: .86rem
}

.admin-activity-item time {
    color: var(--muted);
    font-size: .72rem;
    white-space: nowrap
}

.admin-activity-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.4;
    overflow-wrap: anywhere
}

@media(max-width:760px) {

    .admin-test-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr
    }

    .admin-test-grid .button {
        justify-self: start
    }
}
