/* Public Groove Pages
   Shared polish layer for auth, legal/info, pricing and explanatory pages. */

.hg-btn--block {
    width: 100%;
    justify-content: center;
}

.hg-btn--block-center {
    display: block;
    width: 100%;
    text-align: center;
}

.hg-no-shrink {
    flex-shrink: 0;
}

.hg-grid-span-full {
    grid-column: 1 / -1;
}

.hg-section--pt-relaxed {
    padding-top: 32px;
}

.hg-section--pt-compact {
    padding-top: 8px;
}

.hg-hero-actions--top-gap {
    margin-top: 18px;
}

.hg-icon-tone-violet {
    color: var(--hg-violet);
}

.hg-icon-tone-orange {
    color: var(--hg-orange);
}

.hg-icon-tone-muted {
    color: var(--hg-muted);
}

.hg-pill-btn--compact {
    font-size: 0.78rem;
}

.hg-pill-btn--danger {
    color: #dc2626;
}

.hg-auth-section,
.hg-auth-shell {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 64px;
    position: relative;
}

.hg-auth-container,
.hg-auth-box {
    width: 100%;
    max-width: 520px;
    position: relative;
}

.hg-auth-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    padding: 34px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
        linear-gradient(135deg, rgba(255, 79, 163, 0.08), rgba(125, 77, 255, 0.08));
    box-shadow: 0 24px 64px rgba(78, 34, 100, 0.14);
    backdrop-filter: blur(20px);
}

.hg-auth-card--narrow {
    max-width: 560px;
    margin: 0 auto;
}

.hg-auth-header,
.hg-auth-copy {
    display: grid;
    gap: 10px;
}

.hg-auth-header {
    text-align: center;
}

.hg-auth-icon,
.hg-auth-mark {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 14px 32px rgba(125, 77, 255, 0.22);
}

.hg-auth-header .hg-auth-icon {
    margin: 0 auto 4px;
}

.hg-auth-icon,
.hg-auth-mark {
    background: linear-gradient(135deg, var(--hg-violet), var(--hg-pink));
}

.hg-auth-icon--mint,
.hg-auth-mark--mint {
    background: linear-gradient(135deg, var(--hg-mint), var(--hg-coral));
    box-shadow: 0 14px 32px rgba(77, 217, 194, 0.22);
}

.hg-auth-icon--coral,
.hg-auth-mark--coral {
    background: linear-gradient(135deg, var(--hg-pink), var(--hg-coral));
    box-shadow: 0 14px 32px rgba(255, 79, 163, 0.22);
}

.hg-auth-header h1,
.hg-auth-copy h1 {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(1.9rem, 4vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.96;
    color: var(--hg-text);
}

.hg-auth-subtitle,
.hg-auth-copy p:last-child {
    margin: 0;
    color: var(--hg-muted);
    line-height: 1.65;
}

.hg-auth-social,
.hg-auth-actions {
    display: grid;
    gap: 12px;
}

.hg-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hg-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hg-auth-divider::before,
.hg-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(50, 20, 80, 0.1);
}

.hg-auth-form {
    display: grid;
    gap: 16px;
}

.hg-field {
    display: grid;
    gap: 7px;
}

.hg-field label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--hg-text);
    letter-spacing: -0.01em;
}

.hg-input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(68, 36, 92, 0.12);
    background: rgba(255, 255, 255, 0.96);
    font: inherit;
    font-size: 0.95rem;
    color: var(--hg-text);
    box-shadow: 0 6px 18px rgba(82, 52, 105, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hg-input:focus {
    border-color: rgba(125, 77, 255, 0.38);
    box-shadow: 0 0 0 4px rgba(125, 77, 255, 0.1);
    outline: none;
}

.hg-input::placeholder {
    color: #a59aae;
}

.hg-pw-row {
    position: relative;
    display: flex;
}

.hg-input-pw {
    padding-right: 48px;
}

.hg-pw-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--hg-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.hg-pw-toggle:hover {
    color: var(--hg-violet);
}

.hg-hint {
    font-size: 0.8rem;
    color: var(--hg-muted);
}

.hg-strength {
    height: 6px;
    border-radius: 999px;
    background: #efe8ff;
    overflow: hidden;
}

.hg-strength-fill {
    width: 0;
    height: 100%;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hg-field-checkbox {
    gap: 10px;
}

.hg-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--hg-text);
    line-height: 1.5;
}

.hg-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--hg-violet);
    cursor: pointer;
}

.hg-checkbox-text {
    color: var(--hg-muted);
}

.hg-auth-links {
    display: grid;
    gap: 12px;
    text-align: center;
}

.hg-auth-footer,
.hg-auth-signup {
    margin: 0;
    color: var(--hg-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.hg-link-primary,
.hg-link-row {
    color: var(--hg-violet);
    font-weight: 800;
    text-decoration: none;
}

.hg-link-primary:hover,
.hg-link-row:hover {
    text-decoration: underline;
}

.hg-link-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hg-auth-details {
    margin-top: 6px;
    border-top: 1px solid rgba(50, 20, 80, 0.08);
    padding-top: 18px;
}

.hg-auth-details summary {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    cursor: pointer;
    color: var(--hg-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.hg-auth-details summary::-webkit-details-marker {
    display: none;
}

.hg-auth-details summary:hover {
    color: var(--hg-text);
}

.hg-auth-details-body {
    padding-top: 16px;
    display: grid;
    gap: 14px;
}

.hg-auth-decoration {
    position: absolute;
    inset: -36px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hg-auth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.34;
}

.hg-blob-1 {
    top: -24px;
    left: -36px;
    width: 190px;
    height: 190px;
    background: var(--hg-pink);
    animation: hgFloaty 8s ease-in-out infinite;
}

.hg-blob-2 {
    right: -30px;
    bottom: -32px;
    width: 160px;
    height: 160px;
    background: var(--hg-violet);
    animation: hgFloaty 7.2s ease-in-out infinite reverse;
    --hg-r: 4deg;
}

.hg-blob-3 {
    top: 42%;
    right: -44px;
    width: 118px;
    height: 118px;
    background: var(--hg-mint);
    animation: hgFloaty 9s ease-in-out infinite;
    --hg-r: -3deg;
}

.hg-public-page {
    padding: 36px 0 76px;
}

.hg-public-page__shell {
    display: grid;
    gap: 28px;
}

.hg-public-page__shell--narrow {
    width: min(100%, 860px);
    margin: 0 auto;
}

.hg-public-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 32%),
        radial-gradient(circle at left bottom, rgba(77, 217, 194, 0.14), transparent 28%),
        rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--hg-shadow);
    backdrop-filter: blur(20px);
}

.hg-public-hero--center {
    text-align: center;
    justify-items: center;
}

.hg-public-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hg-violet);
}

.hg-public-kicker i {
    color: var(--hg-pink);
}

.hg-public-title {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: var(--hg-text);
}

.hg-public-lead {
    margin: 0;
    max-width: 720px;
    color: var(--hg-muted);
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.7;
}

.hg-public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hg-public-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-public-card {
    display: grid;
    gap: 14px;
    padding: 24px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(50, 20, 80, 0.08);
    box-shadow: 0 18px 40px rgba(78, 34, 100, 0.08);
}

.hg-public-card--highlight {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 255, 0.94)),
        rgba(255, 255, 255, 0.9);
    border-color: rgba(125, 77, 255, 0.16);
}

.hg-public-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(125, 77, 255, 0.14), rgba(255, 79, 163, 0.14));
    color: var(--hg-violet);
    font-size: 1.2rem;
}

.hg-public-card h2,
.hg-public-card h3,
.hg-public-card h4 {
    margin: 0;
    color: var(--hg-text);
    font-size: 1.08rem;
}

.hg-public-card p {
    margin: 0;
    color: var(--hg-muted);
    line-height: 1.68;
}

.hg-legal-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-story-page .hg-public-hero {
    gap: 16px;
}

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

.hg-story-step {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 24px 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(50, 20, 80, 0.08);
    box-shadow: 0 18px 42px rgba(78, 34, 100, 0.08);
}

.hg-story-step--highlight {
    transform: translateY(-6px);
    background:
        radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 79, 163, 0.2);
    box-shadow: 0 24px 52px rgba(255, 79, 163, 0.12);
}

.hg-story-step__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(125, 77, 255, 0.1);
    color: var(--hg-violet);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hg-story-step__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--hg-violet), var(--hg-pink));
    color: #fff;
    font-size: 1.18rem;
}

.hg-story-step h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--hg-text);
}

.hg-story-step p {
    margin: 0;
    color: var(--hg-muted);
}

.hg-story-pillars {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.hg-pricing-card {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 28px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(50, 20, 80, 0.08);
    box-shadow: 0 18px 42px rgba(78, 34, 100, 0.1);
}

.hg-pricing-card--featured {
    transform: translateY(-8px);
    background:
        radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 255, 0.94));
    border-color: rgba(125, 77, 255, 0.18);
    box-shadow: 0 26px 56px rgba(125, 77, 255, 0.16);
}

.hg-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 79, 163, 0.12);
    color: var(--hg-pink);
    font-size: 0.78rem;
    font-weight: 800;
}

.hg-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--hg-text);
}

.hg-pricing-price small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hg-muted);
}

.hg-pricing-copy {
    margin: 0;
    color: var(--hg-muted);
}

.hg-pricing-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hg-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--hg-text);
    line-height: 1.55;
}

.hg-pricing-list i {
    margin-top: 3px;
    color: var(--hg-mint);
}

.hg-public-note {
    color: var(--hg-muted);
    font-size: 0.9rem;
}

.hg-pricing-faq {
    display: grid;
    gap: 12px;
}

.hg-pricing-faq-item {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(50, 20, 80, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(78, 34, 100, 0.06);
}

.hg-pricing-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    color: var(--hg-text);
}

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

.hg-pricing-faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--hg-violet);
}

.hg-pricing-faq-item[open] summary::after {
    content: '−';
}

.hg-pricing-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    color: var(--hg-muted);
    line-height: 1.68;
}

.hg-empty-panel {
    text-align: center;
    padding: 40px 24px;
}

.hg-empty-panel__icon {
    display: inline-block;
    font-size: 2.4rem;
}

.hg-empty-panel--lg .hg-empty-panel__icon {
    font-size: 3rem;
}

.hg-empty-panel__title {
    margin: 12px 0 8px;
}

.hg-empty-panel__footer {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hg-account-banner-wrap {
    padding-top: 16px;
}

.hg-account-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1.5px solid transparent;
}

.hg-account-banner--danger {
    background: #fee2e2;
    border-color: #fca5a5;
}

.hg-account-banner--today {
    background: #fff7ed;
    border-color: #fdba74;
}

.hg-account-banner--warning {
    background: #fffbeb;
    border-color: #fde68a;
}

.hg-account-banner__icon {
    font-size: 1.15rem;
}

.hg-account-banner--danger .hg-account-banner__icon {
    color: #dc2626;
}

.hg-account-banner--today .hg-account-banner__icon {
    color: #ea580c;
}

.hg-account-banner--warning .hg-account-banner__icon {
    color: #d97706;
}

.hg-account-banner__copy {
    flex: 1;
    min-width: 180px;
}

.hg-account-banner__title {
    display: block;
}

.hg-account-banner__note {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.9rem;
}

.hg-account-banner--danger .hg-account-banner__title,
.hg-account-banner--danger .hg-account-banner__note {
    color: #7f1d1d;
}

.hg-account-banner--today .hg-account-banner__title,
.hg-account-banner--today .hg-account-banner__note {
    color: #7c2d12;
}

.hg-account-banner--warning .hg-account-banner__title,
.hg-account-banner--warning .hg-account-banner__note {
    color: #78350f;
}

.hg-account-banner__cta--danger {
    background: #dc2626;
    box-shadow: none;
}

.hg-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.hg-status-pill--success {
    background: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.hg-status-pill--danger {
    background: rgba(239, 68, 68, 0.2);
    color: #7f1d1d;
}

.hg-progress-block {
    margin: 8px 0 4px;
}

.hg-progress-block__head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    color: #6b7280;
}

.hg-progress-block__value {
    font-weight: 600;
}

.hg-progress-block__value.is-good {
    color: #065f46;
}

.hg-progress-block__value.is-warning {
    color: #92400e;
}

.hg-progress-block__track {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.hg-progress-block__fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease;
}

.hg-progress-block__fill.is-good {
    background: linear-gradient(90deg, #10b981, #059669);
}

.hg-progress-block__fill.is-warning {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.hg-progress-block__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 5px;
}

.hg-progress-chip {
    font-size: 0.68rem;
    padding: 1px 6px;
    border-radius: 20px;
    background: #fef3c7;
    color: #92400e;
}

.hg-progress-chip--more {
    background: transparent;
    color: #9ca3af;
    padding: 0;
}

.hg-meta-inline {
    margin: 6px 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.hg-event-footer--wrap {
    flex-wrap: wrap;
    gap: 6px;
}

.hg-detail-tag-row {
    margin: 14px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hg-detail-tag-row .hg-pill-btn {
    font-size: 0.78rem;
}

.hg-stats-grid--top {
    margin-top: 14px;
}

.hg-toggle-row {
    gap: 8px;
    margin-bottom: 14px;
}

.hg-toggle-btn.is-active[data-hg-toggle="like"] {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.hg-toggle-btn.is-active[data-hg-toggle="favorite"] {
    background: rgba(125, 77, 255, 0.12);
    color: #7d4dff;
}

.hg-panel-copy--spaced {
    margin-bottom: 12px;
}

.hg-qr-preview {
    margin-bottom: 12px;
    text-align: center;
}

.hg-qr-preview img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 2px solid rgba(125, 77, 255, 0.15);
}

.hg-stack-vertical {
    flex-direction: column;
    align-items: stretch;
}

.gz-page {
    padding: 18px 0 36px;
}

.gz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gz-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: var(--hg-r-xl);
    border: 1px solid var(--hg-line);
    background: var(--hg-surface);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--hg-shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gz-card:hover {
    transform: translateY(-3px) rotate(-0.4deg);
    box-shadow: var(--hg-shadow);
    border-color: rgba(125, 77, 255, 0.26);
}

.gz-card.is-empty {
    opacity: 0.7;
}

.gz-card.is-empty:hover {
    transform: none;
    box-shadow: var(--hg-shadow-sm);
}

.gz-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--hg-violet), var(--hg-pink));
    color: #fff;
    font-size: 1.15rem;
}

.gz-card h3 {
    margin: 0;
    font-size: 1.08rem;
    color: var(--hg-text);
}

.gz-card p {
    margin: 0;
    color: var(--hg-muted);
    font-size: 0.9rem;
}

.gz-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--hg-line);
    background: #fff;
    color: var(--hg-text);
    font-size: 0.76rem;
    font-weight: 800;
}

.gz-count.is-empty {
    background: #f9f6ff;
    color: var(--hg-muted);
}

@media (max-width: 1080px) {
    .hg-story-grid,
    .hg-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hg-public-grid,
    .hg-legal-grid,
    .hg-story-pillars {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hg-auth-section,
    .hg-auth-shell,
    .hg-public-page {
        padding-top: 28px;
        padding-bottom: 56px;
    }

    .hg-auth-card,
    .hg-public-hero,
    .hg-public-card,
    .hg-story-step,
    .hg-pricing-card {
        border-radius: 24px;
    }

    .hg-auth-card {
        padding: 28px 22px;
    }

    .hg-public-actions {
        display: grid;
    }

    .hg-story-grid,
    .hg-pricing-grid {
        grid-template-columns: 1fr;
    }

    .hg-account-banner__note {
        margin-left: 0;
        margin-top: 4px;
    }

    .hg-pricing-card--featured,
    .hg-story-step--highlight {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hg-auth-container,
    .hg-auth-box {
        max-width: 100%;
    }

    .hg-auth-card {
        padding: 24px 18px;
        gap: 16px;
    }

    .hg-auth-icon,
    .hg-auth-mark {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 1.45rem;
    }

    .hg-auth-decoration {
        inset: -20px;
    }

    .hg-public-hero,
    .hg-public-card,
    .hg-story-step,
    .hg-pricing-card {
        padding: 22px 18px;
    }

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

    .gz-card {
        padding: 14px 16px;
    }
}
