:root {
    --color-ink: #071329;
    --color-muted: #627188;
    --color-line: #dce9f1;
    --color-bg: #f7fbfd;
    --color-white: #ffffff;
    --color-blue: #2f6bff;
    --color-cyan: #19c7d4;
    --color-violet: #8f61ff;
    --color-green: #00aa98;
    --color-lime: #7ee8d2;
    --color-hot: #ff8a3d;
    --shadow-soft: 0 28px 80px rgba(7, 19, 41, 0.12);
    --shadow-card: 0 18px 44px rgba(7, 19, 41, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --font-base: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    font-family: var(--font-base);
    line-height: 1.8;
    text-wrap: pretty;
    background:
        radial-gradient(circle at 8% 7%, rgba(0, 170, 152, 0.10), transparent 36rem),
        radial-gradient(circle at 85% 12%, rgba(25, 199, 212, 0.16), transparent 34rem),
        radial-gradient(circle at 48% 0%, rgba(143, 97, 255, 0.08), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #f4fbfd 45%, #f8fcfd 100%);
    -webkit-font-smoothing: antialiased;
}

body.is-checkout-loading {
    cursor: progress;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

/* Layout */
.l-container {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

.l-section {
    padding: 112px 0;
}

.l-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(210, 226, 236, 0.82);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
}

.l-header__inner {
    width: min(1280px, calc(100% - 48px));
    min-height: 74px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.l-card-grid {
    display: grid;
    gap: 22px;
}

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

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

.l-footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #071329;
}

.l-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

.l-footer p {
    margin: 0;
}

.l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

.l-footer__nav a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 180ms ease;
}

.l-footer__nav a:hover,
.l-footer__nav a:focus-visible {
    color: #ffffff;
}

/* Component */
.c-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.c-brand__mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--color-white);
    font-size: 13px;
    background: linear-gradient(135deg, #02b598, #08c6bc);
    box-shadow: 0 12px 28px rgba(0, 170, 152, 0.24);
}

.c-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--color-white);
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, #00a894, #10c7bd);
    box-shadow: 0 18px 38px rgba(0, 170, 152, 0.22);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.c-button:hover,
.c-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(0, 170, 152, 0.28);
}

.c-button--small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 14px;
}

.c-button--ghost {
    color: var(--color-ink);
    border-color: rgba(7, 17, 38, 0.10);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(7, 17, 38, 0.07);
}

.c-button--light {
    color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 16px 34px rgba(7, 17, 38, 0.18);
}

.c-button--block {
    width: 100%;
}

.c-button:disabled {
    opacity: 0.62;
    cursor: progress;
    transform: none;
}

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

.c-section-heading {
    margin-bottom: 44px;
}

.c-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.c-section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.22;
    letter-spacing: 0;
    font-feature-settings: "palt";
}

.c-section-heading p:not(.c-kicker) {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-weight: 600;
}

.c-card,
.c-mini-card,
.c-price-card,
.c-accordion {
    border: 1px solid rgba(220, 230, 242, 0.96);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
}

.c-card {
    min-height: 226px;
    padding: 28px;
    border-radius: var(--radius-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.c-card:hover,
.p-ui-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 170, 152, 0.24);
    box-shadow: 0 28px 66px rgba(7, 17, 38, 0.14);
}

.c-card--soft {
    min-height: 190px;
}

.c-card h3 {
    margin: 18px 0 8px;
    font-size: 19px;
    line-height: 1.5;
}

.c-card p,
.c-mini-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.c-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 950;
    background: linear-gradient(135deg, #edf3ff, #f6fbff);
    box-shadow: inset 0 0 0 1px rgba(0, 170, 152, 0.08);
}

.c-icon--2 {
    color: var(--color-green);
    background: linear-gradient(135deg, #e7fbf3, #f5fffb);
}

.c-icon--3 {
    color: #de2d6d;
    background: linear-gradient(135deg, #fff0f6, #fff9fb);
}

.c-icon--4 {
    color: #b45309;
    background: linear-gradient(135deg, #fff6dc, #fffdf6);
}

.c-check-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.c-check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-muted);
    font-weight: 700;
}

.c-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: inset 0 0 0 5px #e5fbf4;
}

.c-mini-card {
    padding: 24px;
    border-radius: var(--radius-md);
}

.c-mini-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.c-badge {
    width: fit-content;
    padding: 6px 13px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
}

.c-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-radius: var(--radius-lg);
}

.c-price-card .c-badge {
    margin: 0;
}

.c-price-card--featured {
    border-color: rgba(0, 170, 152, 0.54);
    box-shadow: 0 32px 74px rgba(0, 170, 152, 0.16);
    transform: translateY(-12px);
    padding-top: 50px;
}

.c-price-card--featured .c-badge {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    min-width: max-content;
    padding: 9px 18px;
    box-shadow: 0 14px 30px rgba(0, 170, 152, 0.22);
}

.c-price-card h3 {
    margin: 0;
    font-size: 21px;
}

.c-price-card__offer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

.c-price-card__offer-label,
.c-price-card__discount {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
}

.c-price-card__offer-label {
    color: #007d6e;
    background: rgba(0, 170, 152, 0.12);
}

.c-price-card__discount {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-hot), var(--color-violet));
    box-shadow: 0 14px 30px rgba(143, 97, 255, 0.18);
}

.c-price-card__regular {
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 850;
}

.c-price-card__regular s {
    margin-left: 6px;
    color: #8a98ad;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 92, 92, 0.72);
}

.c-price-card__price {
    position: relative;
    width: fit-content;
    margin: 8px 0 20px;
    color: var(--color-ink);
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}

.c-price-card__price::after {
    content: "";
    position: absolute;
    left: 2px;
    right: -10px;
    bottom: 7px;
    z-index: -1;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 170, 152, 0.22), rgba(25, 199, 212, 0.28));
}

.c-price-card__price span {
    display: block;
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.c-price-card .c-check-list {
    margin-bottom: 30px;
}

.c-price-card .c-button--block {
    margin-top: auto;
}

.c-accordion {
    border-radius: var(--radius-sm);
}

.c-accordion+.c-accordion {
    margin-top: 12px;
}

.c-accordion summary {
    padding: 19px 22px;
    font-weight: 900;
    cursor: pointer;
}

.c-accordion p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--color-muted);
}

/* Project */
.p-global-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--color-ink);
    font-size: 14px;
    font-weight: 900;
}

.p-global-nav a:hover {
    color: var(--color-green);
}

.p-hero {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 48px;
    min-height: 760px;
    display: grid;
    align-items: center;
}

.p-hero__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 34%, rgba(143, 97, 255, 0.12), transparent 24rem),
        radial-gradient(circle at 88% 54%, rgba(25, 199, 212, 0.16), transparent 26rem),
        linear-gradient(112deg, rgba(0, 170, 152, 0.08), transparent 34%),
        linear-gradient(154deg, transparent 0 68%, rgba(116, 228, 214, 0.40) 68% 100%);
}

.p-hero__mesh::before,
.p-hero__mesh::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.85;
}

.p-hero__mesh::before {
    width: 260px;
    height: 260px;
    right: 8%;
    bottom: 18%;
    border: 0;
    background: rgba(0, 170, 152, 0.13);
}

.p-hero__mesh::after {
    width: 180px;
    height: 180px;
    left: 43%;
    bottom: 5%;
    border: 0;
    background: rgba(143, 97, 255, 0.08);
}

.p-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    align-items: start;
    gap: 64px;
}

.p-hero__title {
    max-width: 680px;
    margin: 0;
    font-size: clamp(52px, 4.45vw, 72px);
    line-height: 1.14;
    letter-spacing: 0;
    font-feature-settings: "palt";
}

.p-hero__title span:nth-child(4) {
    width: fit-content;
    color: transparent;
    background: linear-gradient(90deg, #00a894, #0fc5b8 58%, #19c7d4);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 14px 28px rgba(0, 170, 152, 0.18));
}

.p-hero__title span,
.u-line {
    display: block;
}

.p-hero__title span {
    white-space: nowrap;
}

.p-hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--color-ink);
    font-size: 24px;
    font-weight: 850;
    line-height: 1.75;
}

.p-hero__sublead {
    display: none;
}

.p-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.p-hero__cta {
    min-height: 64px;
    padding-inline: 36px;
    font-size: 18px;
    background: linear-gradient(135deg, #00a894, #12c9bd);
    box-shadow: 0 20px 42px rgba(0, 170, 152, 0.26);
}

.p-hero__demo {
    min-height: 64px;
    min-width: 190px;
}

.p-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.p-trust-strip span,
.p-pricing-note span,
.p-offer__chips span {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #0f283f;
    font-size: 14px;
    font-weight: 900;
    background: transparent;
    box-shadow: none;
}

.p-trust-strip span::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.78);
}

.p-hero-visual {
    position: relative;
    min-height: 560px;
}

.p-hero-visual__glow {
    position: absolute;
    inset: 0 -6% -2% -4%;
    border-radius: 40%;
    background:
        radial-gradient(circle at 44% 42%, rgba(143, 97, 255, 0.18), transparent 30%),
        radial-gradient(circle at 78% 70%, rgba(0, 170, 152, 0.24), transparent 38%),
        radial-gradient(circle at 55% 60%, rgba(25, 199, 212, 0.16), transparent 42%);
    filter: blur(32px);
}

.p-product-window,
.p-dashboard-preview,
.p-calendar-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(220, 230, 242, 0.98);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.p-product-window--hero {
    position: absolute;
    inset: 6px 0 auto 70px;
    padding-top: 0;
    z-index: 3;
    border-radius: 24px;
    transform: none;
    transform-origin: center;
    mask-image: none;
}

.p-product-window__bar {
    position: absolute;
    top: 18px;
    left: 22px;
    display: flex;
    gap: 8px;
}

.p-product-window__bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ef4444;
}

.p-product-window__bar span:nth-child(2) {
    background: #f59e0b;
}

.p-product-window__bar span:nth-child(3) {
    background: #22c55e;
}

.p-product-window img,
.p-dashboard-preview img,
.p-calendar-preview img {
    width: 100%;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    object-position: left top;
}

.p-hero-shot {
    position: absolute;
    z-index: 5;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(220, 230, 242, 0.98);
    border-radius: 18px;
    text-align: left;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(7, 19, 41, 0.13);
    backdrop-filter: blur(12px);
    animation: floaty 5.5s ease-in-out infinite;
}

.p-hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02);
}

.p-hero-shot--step {
    left: 0;
    bottom: 18px;
    width: 190px;
    aspect-ratio: 0.66 / 1;
}

.p-hero-shot--step img {
    object-position: 50% 8%;
}

.p-hero-shot--calendar {
    left: 32%;
    bottom: 28px;
    width: 255px;
    aspect-ratio: 0.92 / 1;
    animation-delay: -1.4s;
}

.p-hero-shot--calendar img {
    object-position: 50% 3%;
}

.p-hero-shot--analytics {
    right: 0;
    bottom: 18px;
    width: 200px;
    aspect-ratio: 0.78 / 1;
    animation-delay: -2.5s;
}

.p-hero-shot--analytics img {
    object-position: 50% 2%;
}

.p-hero-mini-card {
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(220, 230, 242, 0.98);
    border-radius: 18px;
    text-align: left;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(7, 19, 41, 0.13);
    backdrop-filter: blur(12px);
    animation: floaty 5.5s ease-in-out infinite;
}

.p-hero-mini-card strong {
    display: block;
    color: var(--color-ink);
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
}

.p-hero-step-card {
    left: 0;
    bottom: 18px;
    width: 190px;
    padding: 18px;
}

.p-hero-step-card__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.p-hero-step-card__head span {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.p-hero-step-card__bar {
    height: 4px;
    margin: 14px 0 13px;
    overflow: hidden;
    border-radius: 999px;
    background: #dfeef5;
}

.p-hero-step-card__bar span {
    display: block;
    width: 48%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00a894, #11c8bc);
}

.p-hero-step-card p {
    margin: 0 0 10px;
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.55;
}

.p-hero-step-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p-hero-step-card li {
    position: relative;
    min-height: 28px;
    display: flex;
    align-items: center;
    padding: 4px 10px 4px 26px;
    border: 1px solid rgba(220, 230, 242, 0.98);
    border-radius: 7px;
    color: var(--color-ink);
    font-size: 11px;
    font-weight: 850;
    background: #ffffff;
}

.p-hero-step-card li::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 8px;
    height: 8px;
    border: 1px solid #cfd9e3;
    border-radius: 50%;
}

.p-hero-step-card__actions {
    display: grid;
    grid-template-columns: 1fr 1.28fr;
    gap: 10px;
    margin-top: 12px;
}

.p-hero-step-card__actions span,
.p-hero-step-card__actions b {
    min-height: 28px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 900;
}

.p-hero-step-card__actions span {
    color: var(--color-muted);
    border: 1px solid rgba(220, 230, 242, 0.98);
    background: #ffffff;
}

.p-hero-step-card__actions b {
    color: #ffffff;
    background: linear-gradient(135deg, #00a894, #10c7bd);
}

.p-hero-calendar-card {
    left: 32%;
    bottom: 28px;
    width: 255px;
    padding: 22px;
    animation-delay: -1.4s;
}

.p-hero-calendar-card__month {
    margin: 18px 0 16px;
    color: var(--color-ink);
    font-size: 17px;
    font-weight: 950;
    text-align: center;
}

.p-hero-calendar-card__week,
.p-hero-calendar-card__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
}

.p-hero-calendar-card__week {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 900;
}

.p-hero-calendar-card__days {
    gap: 8px 4px;
    margin-top: 12px;
    color: #6b7890;
    font-size: 11px;
    font-weight: 850;
}

.p-hero-calendar-card__days span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
}

.p-hero-calendar-card__days .is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #00a894, #12c9bd);
}

.p-hero-stats-card {
    right: 0;
    bottom: 18px;
    width: 200px;
    padding: 24px 22px 22px;
    animation-delay: -2.5s;
}

.p-hero-stats-card p {
    margin: 13px 0 2px;
    color: var(--color-ink);
    font-size: 16px;
    font-weight: 900;
}

.p-hero-stats-card p b {
    margin-right: 4px;
    font-size: 42px;
    line-height: 0.9;
}

.p-hero-stats-card>span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: #009b74;
    font-size: 13px;
    font-weight: 950;
    background: rgba(0, 170, 152, 0.12);
}

.p-hero-stats-card__chart {
    display: flex;
    align-items: end;
    gap: 7px;
    height: 54px;
    margin-top: 18px;
}

.p-hero-stats-card__chart i {
    width: 16px;
    height: 18px;
    border-radius: 999px 999px 2px 2px;
    background: linear-gradient(180deg, #21cfc5, #00a894);
}

.p-hero-stats-card__chart i:nth-child(2) {
    height: 26px;
}

.p-hero-stats-card__chart i:nth-child(3) {
    height: 20px;
}

.p-hero-stats-card__chart i:nth-child(4) {
    height: 32px;
}

.p-hero-stats-card__chart i:nth-child(5) {
    height: 42px;
}

.p-hero-stats-card__chart i:nth-child(6) {
    height: 33px;
}

.p-hero-stats-card__chart i:nth-child(7) {
    height: 48px;
}

.p-hero-handwriting {
    position: absolute;
    right: 0;
    top: 45%;
    z-index: 5;
    margin: 0;
    color: var(--color-green);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.45;
    transform: rotate(-12deg);
}

.p-hero-feature-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 64px rgba(7, 19, 41, 0.10);
    backdrop-filter: blur(18px);
}

.p-hero-feature-bar article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 16px;
    padding: 4px 18px;
    border-right: 1px solid rgba(210, 226, 236, 0.9);
}

.p-hero-feature-bar article:last-child {
    border-right: 0;
}

.p-hero-feature-bar__icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--color-green);
    font-weight: 900;
    background: #e6faf5;
}

.p-hero-feature-bar__icon--purple {
    color: var(--color-violet);
    background: #f0e9ff;
}

.p-hero-feature-bar__icon--orange {
    color: #f97316;
    background: #fff0e3;
}

.p-hero-feature-bar__icon--blue {
    color: var(--color-blue);
    background: #eaf1ff;
}

.p-hero-feature-bar strong {
    align-self: end;
    font-size: 14px;
    line-height: 1.45;
}

.p-hero-feature-bar p {
    margin: 5px 0 0;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.6;
}

.p-problem {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 170, 152, 0.22), transparent 26rem),
        radial-gradient(circle at 90% 18%, rgba(25, 199, 212, 0.20), transparent 24rem),
        linear-gradient(135deg, #071329 0%, #0e2736 54%, #0d3c44 100%);
}

.p-problem .c-kicker,
.p-problem .c-section-heading p {
    color: rgba(255, 255, 255, 0.74);
}

.p-problem .c-kicker {
    color: var(--color-lime);
}

.p-problem .c-card {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.p-problem .c-card h3 {
    color: var(--color-white);
}

.p-problem .c-card p {
    color: rgba(255, 255, 255, 0.70);
}

.p-problem .c-icon {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    box-shadow: 0 0 30px rgba(0, 170, 152, 0.30);
}

.p-problem__warning {
    width: fit-content;
    margin: 28px auto 0;
    padding: 14px 18px;
    border: 1px solid rgba(185, 255, 102, 0.35);
    border-radius: 999px;
    color: var(--color-lime);
    font-weight: 700;
    background: rgba(185, 255, 102, 0.08);
    box-shadow: 0 0 42px rgba(185, 255, 102, 0.10);
    font-size: 24px;
}

.p-problem__shape {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
}

.p-problem__shape--one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 80px;
    border-radius: 56px;
    transform: rotate(18deg);
}

.p-problem__shape--two {
    width: 180px;
    height: 180px;
    right: 7%;
    bottom: 70px;
    border-radius: 50%;
}

.p-solution__grid,
.p-strength__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 72px;
}

.p-solution-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    position: relative;
}

.p-solution-map::before {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 170, 152, 0.16), rgba(25, 199, 212, 0.16));
    filter: blur(24px);
}

.p-solution-node {
    position: relative;
    min-height: 190px;
    padding: 28px;
    border: 1px solid rgba(220, 230, 242, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-card);
}

.p-solution-node span {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    color: var(--color-white);
    font-size: 19px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--color-blue), var(--color-green));
}

.p-solution-node p {
    margin: 18px 0 0;
    color: var(--color-muted);
    font-weight: 700;
}

.p-outcomes {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 250, 255, 0.92)),
        radial-gradient(circle at 50% 40%, rgba(0, 170, 152, 0.08), transparent 34rem);
}

.p-outcomes .c-card:nth-child(1),
.p-outcomes .c-card:nth-child(3),
.p-outcomes .c-card:nth-child(4) {
    border-color: rgba(0, 170, 152, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.9));
}

.p-outcomes .c-card:nth-child(1) {
    transform: translateY(-10px);
}

.p-demo {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(143, 97, 255, 0.08), transparent 26rem),
        radial-gradient(circle at 88% 28%, rgba(25, 199, 212, 0.12), transparent 28rem);
}

.p-ui-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.p-ui-card {
    overflow: hidden;
    border: 1px solid rgba(220, 230, 242, 0.96);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.p-ui-card__image {
    overflow: hidden;
    margin: 12px;
    border-radius: 20px;
    mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
    background: #eff5fb;
}

.p-ui-card__image img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    object-position: left top;
    transition: transform 520ms ease;
}

.p-ui-card:hover img {
    transform: scale(1.06) translateY(-8px);
}

.p-ui-card:nth-child(2),
.p-ui-card:nth-child(4) {
    transform: translateY(28px);
}

.p-ui-card:nth-child(2):hover,
.p-ui-card:nth-child(4):hover {
    transform: translateY(20px);
}

.p-ui-card:nth-child(3) {
    transform: rotate(-1.5deg);
}

.p-ui-card:nth-child(3):hover {
    transform: translateY(-8px) rotate(-1.5deg);
}

.p-ui-card__body {
    padding: 0 24px 24px;
}

.p-ui-card__body h3 {
    margin: 0 0 6px;
    font-size: 19px;
}

.p-ui-card__body p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

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

.p-offer {
    padding: 72px 0;
}

.p-offer__inner {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 32px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 84% 20%, rgba(185, 255, 102, 0.40), transparent 18rem),
        linear-gradient(135deg, var(--color-blue), #0f9d91 62%, #067a64);
    box-shadow: var(--shadow-soft);
}

.p-offer__inner h2,
.p-offer__inner p {
    max-width: 760px;
}

.p-offer__inner h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.22;
}

.p-offer__inner p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 750;
}

.p-offer .c-kicker {
    color: var(--color-lime);
}

.p-offer__chips,
.p-pricing-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.p-offer__chips span {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
}

.p-pricing {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(232, 244, 255, 0.94));
}

.p-pricing-punch {
    max-width: 900px;
    margin: -18px auto 30px;
    padding: 24px;
    border: 1px solid rgba(0, 170, 152, 0.20);
    border-radius: 28px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 40%, rgba(25, 199, 212, 0.16), transparent 16rem),
        rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-card);
}

.p-pricing-punch span {
    display: block;
    color: var(--color-blue);
    font-size: 14px;
    font-weight: 950;
}

.p-pricing-punch strong {
    display: block;
    margin-top: 4px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.25;
}

.p-pricing-punch strong::after {
    content: "";
    display: block;
    width: 90px;
    height: 6px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan), var(--color-lime));
    box-shadow: 0 0 26px rgba(25, 199, 212, 0.28);
}

.p-pricing .c-price-card--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--color-blue), var(--color-cyan), var(--color-violet)) border-box;
}

.p-pricing .c-price-card--featured::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-blue), var(--color-cyan), var(--color-violet));
    filter: blur(14px);
    opacity: 0.28;
}

.p-pricing .c-price-card--featured .c-button {
    background: linear-gradient(135deg, var(--color-hot), var(--color-violet), var(--color-blue));
}

.p-pricing-note {
    justify-content: center;
    margin-top: -18px;
    margin-bottom: 42px;
}

.p-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 48px;
}

.p-cta {
    padding-top: 42px;
}

.p-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 56px;
    border-radius: 34px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 78% 18%, rgba(25, 199, 212, 0.30), transparent 18rem),
        linear-gradient(135deg, #00a894, #12c9bd 56%, #071329);
    box-shadow: var(--shadow-soft);
}

.p-cta .c-kicker,
.p-cta p {
    color: rgba(255, 255, 255, 0.84);
}

.p-cta h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.24;
}

.p-cta p {
    margin: 12px 0 0;
    font-weight: 750;
}

/* Page */
.p-page-hero {
    padding: 86px 0 54px;
    background:
        radial-gradient(circle at 18% 22%, rgba(0, 170, 152, 0.10), transparent 28rem),
        rgba(255, 255, 255, 0.52);
}

.p-page-hero__title {
    max-width: 920px;
    margin: 0;
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.18;
}

.p-page-content {
    padding-top: 48px;
}

.p-entry {
    max-width: 920px;
    padding: 54px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
}

.p-entry>*:first-child {
    margin-top: 0;
}

.p-entry>*:last-child {
    margin-bottom: 0;
}

.p-entry a {
    color: var(--color-blue);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.p-entry img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.p-legal__heading,
.p-legal__content {
    max-width: 1160px;
}

.p-legal__heading {
    display: grid;
    justify-items: center;
    text-align: center;
}

.p-legal__heading .p-page-hero__title {
    margin-inline: auto;
}

.p-legal-entry {
    max-width: 1040px;
    margin-inline: auto;
}

.p-legal-table {
    width: 100%;
    margin-top: 28px;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
}

.p-legal-table th,
.p-legal-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-line);
    vertical-align: top;
    text-align: left;
}

.p-legal-table tr:last-child th,
.p-legal-table tr:last-child td {
    border-bottom: 0;
}

.p-legal-table th {
    width: 260px;
    color: var(--color-ink);
    font-weight: 900;
    background: rgba(0, 170, 152, 0.06);
}

.p-legal-table td {
    color: var(--color-muted);
    font-weight: 650;
    background: rgba(255, 255, 255, 0.82);
}

.p-thanks-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 22% 28%, rgba(0, 170, 152, 0.16), transparent 28rem),
        radial-gradient(circle at 78% 22%, rgba(143, 97, 255, 0.10), transparent 26rem),
        linear-gradient(180deg, #ffffff, #f3fbfb);
}

.p-thanks-hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -24%;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(0, 170, 152, 0.18);
    filter: blur(8px);
}

.p-thanks-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.p-thanks-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.14;
}

.p-thanks-hero__lead {
    margin: 24px auto 0;
    max-width: 680px;
    color: var(--color-muted);
    font-size: 18px;
    font-weight: 700;
}

.p-thanks-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.p-thanks-next {
    padding-top: 82px;
}

/* Utility */
.u-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.u-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

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

    .u-reveal,
    .p-hero-shot,
    .p-hero-mini-card {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

@media (max-width: 1100px) {

    .l-card-grid--3,
    .l-card-grid--4,
    .p-hero__grid,
    .p-solution__grid,
    .p-strength__grid,
    .p-faq__grid {
        grid-template-columns: 1fr;
    }

    .p-global-nav {
        display: none;
    }

    .p-hero-visual {
        min-height: 560px;
    }

    .p-hero-feature-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .p-hero-feature-bar article {
        border-right: 0;
        border-bottom: 1px solid rgba(210, 226, 236, 0.9);
    }

    .p-hero-feature-bar article:nth-last-child(-n+1) {
        border-bottom: 0;
    }

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

    .c-price-card--featured {
        transform: none;
    }
}

@media (max-width: 640px) {

    .l-container,
    .l-header__inner {
        width: min(100% - 28px, 1280px);
    }

    .l-section {
        padding: 72px 0;
    }

    .l-header__inner {
        min-height: 66px;
    }

    .c-brand__text {
        display: none;
    }

    .c-button {
        width: 100%;
        min-height: 50px;
        padding-inline: 18px;
    }

    .l-header .c-button {
        width: auto;
    }

    .c-section-heading h2 {
        font-size: 31px;
        font-feature-settings: "palt";
    }

    .p-hero {
        padding-top: 62px;
        padding-bottom: 78px;
        min-height: auto;
    }

    .p-hero__grid {
        gap: 40px;
    }

    .p-hero__title {
        font-size: 36px;
        line-height: 1.12;
    }

    .p-hero__lead {
        font-size: 16px;
        line-height: 1.75;
    }

    .p-hero__sublead {
        font-size: 14px;
        line-height: 1.8;
    }

    .p-hero__actions {
        display: grid;
    }

    .p-hero-visual {
        min-height: 470px;
    }

    .p-product-window--hero {
        inset: 18px 0 auto;
        transform: none;
        mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
    }

    .p-hero-shot {
        border-radius: 15px;
        box-shadow: 0 18px 42px rgba(7, 19, 41, 0.12);
    }

    .p-hero-shot--step {
        left: 0;
        bottom: 86px;
        width: 176px;
    }

    .p-hero-shot--calendar {
        left: auto;
        right: 0;
        bottom: 96px;
        width: 176px;
    }

    .p-hero-shot--analytics {
        left: calc(50% - 88px);
        right: auto;
        bottom: 0;
        width: 176px;
    }

    .p-hero-mini-card {
        border-radius: 15px;
        box-shadow: 0 18px 42px rgba(7, 19, 41, 0.12);
    }

    .p-hero-mini-card strong {
        font-size: 12px;
    }

    .p-hero-step-card {
        left: 0;
        bottom: 86px;
        width: 176px;
        padding: 13px;
    }

    .p-hero-step-card__head span {
        font-size: 9px;
    }

    .p-hero-step-card p,
    .p-hero-step-card li,
    .p-hero-step-card__actions span,
    .p-hero-step-card__actions b {
        font-size: 9px;
    }

    .p-hero-step-card ul {
        gap: 5px;
    }

    .p-hero-step-card li {
        min-height: 22px;
        padding-left: 22px;
    }

    .p-hero-calendar-card {
        left: auto;
        right: 0;
        bottom: 96px;
        width: 176px;
        padding: 14px;
    }

    .p-hero-calendar-card__month {
        margin: 10px 0;
        font-size: 12px;
    }

    .p-hero-calendar-card__week,
    .p-hero-calendar-card__days {
        font-size: 8px;
    }

    .p-hero-calendar-card__days {
        gap: 4px 2px;
        margin-top: 8px;
    }

    .p-hero-calendar-card__days span {
        width: 15px;
        height: 15px;
    }

    .p-hero-stats-card {
        left: calc(50% - 88px);
        right: auto;
        bottom: 0;
        width: 176px;
        padding: 15px;
    }

    .p-hero-stats-card p b {
        font-size: 32px;
    }

    .p-hero-stats-card__chart {
        height: 36px;
        margin-top: 10px;
        gap: 5px;
    }

    .p-hero-stats-card__chart i {
        width: 12px;
    }

    .p-hero-handwriting {
        display: none;
    }

    .p-hero-feature-bar {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 20px;
        padding: 16px;
    }

    .p-hero-feature-bar article {
        grid-template-columns: 40px 1fr;
        padding: 12px 4px;
    }

    .p-hero-feature-bar__icon {
        width: 40px;
        height: 40px;
    }

    .p-solution-map,
    .p-strength__items,
    .p-ui-showcase {
        grid-template-columns: 1fr;
    }

    .c-card,
    .c-price-card,
    .p-entry,
    .p-offer__inner,
    .p-cta__inner {
        padding: 24px;
    }

    .c-price-card__price {
        font-size: 46px;
    }

    .p-cta__inner,
    .l-footer__inner {
        display: grid;
    }

    .l-footer__nav {
        justify-content: flex-start;
    }

    .p-legal-table,
    .p-legal-table tbody,
    .p-legal-table tr,
    .p-legal-table th,
    .p-legal-table td {
        display: block;
        width: 100%;
    }

    .p-legal-table th {
        border-bottom: 0;
        padding-bottom: 8px;
    }

    .p-legal-table td {
        padding-top: 8px;
    }
}