.stowly-help {
color: var(--stowly-color-ink);
background: var(--stowly-color-page); scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
.stowly-help {
scroll-behavior: auto;
}
}
.stowly-help > section {
max-width: var(--stowly-container);
margin: 0 auto;
padding: clamp(48px, 6vw, 80px) 24px;
} .stowly-help-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
padding: 14px 26px;
border-radius: var(--stowly-radius-pill);
font-weight: 600;
font-size: 15px;
line-height: 1;
text-decoration: none !important;
transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
color 0.2s ease, border-color 0.2s ease;
cursor: pointer;
border: 1px solid transparent;
white-space: nowrap;
}
.stowly-help-btn--primary {
background: var(--stowly-color-primary);
color: #ffffff !important;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.stowly-help-btn--primary:hover,
.stowly-help-btn--primary:focus-visible {
background: var(--stowly-color-primary-hover);
transform: translateY(-1px);
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
color: #ffffff !important;
}
.stowly-help-btn--ghost {
background: var(--stowly-color-surface);
color: var(--stowly-color-ink) !important;
border-color: var(--stowly-color-line-strong);
}
.stowly-help-btn--ghost:hover,
.stowly-help-btn--ghost:focus-visible {
background: var(--stowly-color-surface-soft);
border-color: var(--stowly-color-ink);
color: var(--stowly-color-ink) !important;
} .stowly-help-hero {
position: relative;
overflow: hidden;
padding-top: clamp(72px, 10vw, 112px) !important;
padding-bottom: clamp(48px, 7vw, 80px) !important;
max-width: none !important;
}
.stowly-help-hero::after {
display: none;
}
.stowly-help-hero__inner {
position: relative;
z-index: 1;
max-width: 760px;
margin: 0 auto;
text-align: center;
}
.stowly-help-hero__eyebrow {
display: inline-block;
margin: 0 0 16px;
padding: 6px 14px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--stowly-color-primary);
background: var(--stowly-color-primary-soft);
border-radius: var(--stowly-radius-pill);
}
.stowly-help-hero__title {
position: relative;
font-family: var(--stowly-font-heading);
font-size: clamp(32px, 5vw, 52px);
font-weight: 800;
letter-spacing: -0.035em;
line-height: 1.05;
margin: 0 0 26px;
padding-bottom: 20px;
color: var(--stowly-color-ink);
text-wrap: balance;
}
.stowly-help-hero__title::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
width: 48px;
height: 4px;
border-radius: 999px;
background: var(--stowly-color-primary);
}
.stowly-help-hero__lede {
font-size: clamp(16px, 1.5vw, 18px);
line-height: 1.6;
color: var(--stowly-color-ink-soft);
margin: 0 auto 32px;
max-width: 620px;
}
.stowly-help-search {
display: flex;
align-items: center;
gap: 12px;
background: var(--stowly-color-surface);
border: 1px solid var(--stowly-color-line-strong);
border-radius: var(--stowly-radius-pill);
padding: 6px 8px 6px 20px;
box-shadow: var(--stowly-shadow-md);
max-width: 560px;
margin: 0 auto;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.stowly-help-search:focus-within {
border-color: var(--stowly-color-primary);
box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}
.stowly-help-search__icon {
color: var(--stowly-color-ink-soft);
flex-shrink: 0;
display: inline-flex;
}
.stowly-help-search__input {
flex: 1;
border: 0 !important;
outline: 0;
background: transparent !important;
box-shadow: none !important;
border-radius: 0 !important;
-webkit-appearance: none;
appearance: none;
font-family: inherit;
font-size: 15px;
line-height: 1.2;
padding: 12px 0 !important;
min-height: 0 !important;
color: var(--stowly-color-ink);
min-width: 0;
width: 100%;
}
.stowly-help-search__input:focus {
box-shadow: none !important;
outline: 0;
border: 0 !important;
}
.stowly-help-search__input::placeholder {
color: var(--stowly-color-ink-muted);
}
.stowly-help-search__input::-webkit-search-decoration,
.stowly-help-search__input::-webkit-search-cancel-button {
-webkit-appearance: none;
}  .stowly-help-nav {
padding-top: clamp(16px, 2vw, 24px) !important;
padding-bottom: clamp(12px, 2vw, 20px) !important;
position: sticky;
top: calc(var(--stowly-header-height, 72px) + 12px);
z-index: 20;
background: transparent;
pointer-events: none; } .stowly-help-nav__inner {
pointer-events: auto;
display: flex;
gap: 8px;
align-items: center;
width: fit-content;
max-width: 100%;
margin: 0 auto;
padding: 8px;
background: rgba(255, 255, 255, 0.85);
border: 1px solid var(--stowly-color-line);
border-radius: var(--stowly-radius-pill);
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.6) inset,
0 10px 30px -10px rgba(17, 17, 17, 0.18),
0 4px 10px -4px rgba(17, 17, 17, 0.08);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x proximity;
scrollbar-width: none;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch;
transition: box-shadow 0.25s ease, transform 0.25s ease,
border-color 0.25s ease, background 0.25s ease;
}
.stowly-help-nav__inner::-webkit-scrollbar {
display: none;
}
.stowly-help-nav--stuck .stowly-help-nav__inner {
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.7) inset,
0 14px 36px -10px rgba(17, 17, 17, 0.22),
0 4px 10px -4px rgba(17, 17, 17, 0.08);
}
.stowly-help-chip {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: var(--stowly-radius-pill);
background: transparent;
border: 1px solid transparent;
color: var(--stowly-color-ink) !important;
font-size: 14px;
font-weight: 600;
text-decoration: none !important;
white-space: nowrap;
flex-shrink: 0;
scroll-snap-align: center;
-webkit-tap-highlight-color: transparent;
transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease,
color 0.18s ease, box-shadow 0.18s ease;
}
.stowly-help-chip:hover,
.stowly-help-chip:focus-visible {
background: var(--stowly-color-primary-soft);
border-color: var(--stowly-color-primary);
color: var(--stowly-color-primary) !important;
transform: translateY(-1px);
}
.stowly-help-chip:focus-visible:not(.is-active) {
outline: 2px solid var(--stowly-color-primary);
outline-offset: 2px;
} .stowly-help-chip.is-active {
position: relative;
z-index: 1;
isolation: isolate;
background: var(--stowly-color-primary);
border-color: var(--stowly-color-primary);
color: #fff !important;
box-shadow: 0 6px 18px rgba(var(--stowly-color-primary-rgb), 0.28);
}
.stowly-help-chip.is-active:hover,
.stowly-help-chip.is-active:focus-visible {
background: var(--stowly-color-primary-hover, var(--stowly-color-primary));
color: #fff !important;
}
.stowly-help-chip.is-active:focus-visible {
outline: 2px solid rgba(255, 255, 255, 0.95);
outline-offset: 2px;
}
.stowly-help-chip__icon {
display: inline-flex;
color: currentColor;
}  .stowly-help > section.stowly-help-groups {
padding-top: clamp(24px, 3vw, 40px) !important;
display: flex;
flex-direction: column;
gap: clamp(40px, 5vw, 64px); max-width: 900px;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.stowly-help-empty {
text-align: center;
padding: 32px 20px;
margin: 0 0 16px;
background: var(--stowly-color-surface-soft);
border: 1px dashed var(--stowly-color-line-strong);
border-radius: var(--stowly-radius-lg);
color: var(--stowly-color-ink-soft);
font-size: 15px;
line-height: 1.55;
}
.stowly-help-group { scroll-margin-top: calc(var(--stowly-header-height) + 88px);
border-radius: var(--stowly-radius-lg);
}
.stowly-help-group__header {
display: flex;
align-items: center;
gap: 12px;
margin: 0 0 20px;
padding-bottom: 12px;
border-bottom: 1px solid var(--stowly-color-line);
}
.stowly-help-group__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 12px;
background: var(--stowly-color-primary-soft);
color: var(--stowly-color-primary);
flex-shrink: 0;
}
.stowly-help-group__title {
font-size: clamp(20px, 2.2vw, 26px);
font-weight: 700;
letter-spacing: -0.015em;
margin: 0;
color: var(--stowly-color-ink);
}
.stowly-help-group__list {
display: flex;
flex-direction: column;
gap: 12px;
} .stowly-help-item {
background: var(--stowly-color-surface);
border: 1px solid var(--stowly-color-line);
border-radius: var(--stowly-radius-lg);
box-shadow: var(--stowly-shadow-xs);
transition: border-color 0.15s ease, box-shadow 0.15s ease;
overflow: hidden;
}
.stowly-help-item[open] {
border-color: var(--stowly-color-line-strong);
box-shadow: 0 8px 24px -14px rgba(17, 17, 17, 0.15);
}
.stowly-help-item[hidden] {
display: none !important;
}
.stowly-help-item > summary {
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 18px 22px;
cursor: pointer;
font-weight: 600;
font-size: 16px;
color: var(--stowly-color-ink);
line-height: 1.45;
user-select: none;
}
.stowly-help-item > summary::-webkit-details-marker {
display: none;
}
.stowly-help-item > summary:hover {
color: var(--stowly-color-primary);
}
.stowly-help-item > summary:focus-visible {
outline: 2px solid var(--stowly-color-primary);
outline-offset: -2px;
border-radius: var(--stowly-radius-lg);
}
.stowly-help-item__q {
flex: 1;
} .stowly-help-item__chev {
flex-shrink: 0;
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: var(--stowly-color-surface-soft);
color: var(--stowly-color-ink-muted);
transition: transform var(--stowly-transition, 0.2s ease),
background var(--stowly-transition, 0.15s ease),
color var(--stowly-transition, 0.15s ease);
}
.stowly-help-item__chev svg {
width: 18px;
height: 18px;
display: block;
}
.stowly-help-item[open] .stowly-help-item__chev {
transform: rotate(180deg);
background: var(--stowly-color-primary);
color: #fff;
}
.stowly-help-item__a {
padding: 0 22px 20px;
}
.stowly-help-item__a p {
margin: 0 0 12px;
font-size: 15px;
line-height: 1.6;
color: var(--stowly-color-ink-soft);
}
.stowly-help-item__a p:last-child {
margin-bottom: 0;
} .stowly-help-group[data-visible-items="0"] {
display: none;
} .stowly-help-cta {
padding-top: clamp(56px, 7vw, 88px) !important;
padding-bottom: clamp(72px, 9vw, 112px) !important;
}
.stowly-help-cta__inner {
max-width: 760px;
margin: 0 auto;
padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 48px);
text-align: center;
border-radius: var(--stowly-radius-xl);
background: var(--stowly-color-surface-soft);
border: 1px solid var(--stowly-color-line);
box-shadow: var(--stowly-shadow-md);
}
.stowly-help-cta__icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border-radius: 16px;
background: var(--stowly-color-primary);
color: #fff;
margin: 0 auto 20px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
.stowly-help-cta__title {
font-size: clamp(24px, 3vw, 34px);
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.15;
margin: 0 0 12px;
color: var(--stowly-color-ink);
}
.stowly-help-cta__lede {
font-size: 17px;
color: var(--stowly-color-ink-soft);
margin: 0 auto 28px;
max-width: 520px;
line-height: 1.55;
}
.stowly-help-cta__actions {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
} @media (max-width: 760px) { .stowly-help-nav__inner {
width: 100%;
max-width: 100%;
justify-content: flex-start;
padding: 6px;
border-radius: 28px;
-webkit-mask-image: linear-gradient(
to right,
transparent 0,
#000 18px,
#000 calc(100% - 18px),
transparent 100%
);
mask-image: linear-gradient(
to right,
transparent 0,
#000 18px,
#000 calc(100% - 18px),
transparent 100%
);
}
.stowly-help-chip {
padding: 9px 14px;
font-size: 13.5px;
}
}
@media (max-width: 520px) {
.stowly-help > section {
padding-left: 20px;
padding-right: 20px;
}
.stowly-help-nav { top: calc(var(--stowly-header-height, 72px) + 8px);
}
.stowly-help-item > summary {
padding: 16px 18px;
font-size: 15px;
}
.stowly-help-item__a {
padding: 0 18px 18px;
}
.stowly-help-hero__actions,
.stowly-help-cta__actions {
flex-direction: column;
align-items: stretch;
}
.stowly-help-btn {
width: 100%;
}
}