:root {
    color-scheme: light;
    --ink: #111512;
    --ink-soft: #252b27;
    --paper: #f4f3ed;
    --paper-bright: #fbfbf7;
    --line: #d7d7cf;
    --muted: #686d68;
    --forest: #315247;
    --forest-deep: #1f3930;
    --signal: #e3b640;
    --signal-dark: #b98713;
    --rust: #ad4b3c;
    --white: #ffffff;
    --shell: 1180px;
    --header-height: 72px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
    letter-spacing: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.06;
    letter-spacing: 0;
}

h2 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: 3.5rem;
    font-weight: 760;
}

h3 {
    font-size: 1.28rem;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--signal);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section-pad {
    padding: 116px 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgba(17, 21, 18, 0.97);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-shell {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 31px;
    height: 31px;
    margin-right: 11px;
    place-items: center;
    border: 2px solid var(--signal);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
    position: absolute;
    content: "";
    background: var(--signal);
}

.brand-mark::before {
    top: 50%;
    left: -6px;
    width: 10px;
    height: 2px;
}

.brand-mark::after {
    top: 50%;
    right: -6px;
    width: 10px;
    height: 2px;
}

.brand-mark span::before {
    top: -6px;
    left: 50%;
    width: 2px;
    height: 10px;
}

.brand-mark span::after {
    bottom: -6px;
    left: 50%;
    width: 2px;
    height: 10px;
}

.brand-name {
    font-size: 1.05rem;
    font-weight: 850;
}

.brand-name span {
    color: var(--signal);
}

.brand-by {
    margin-left: 10px;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.62);
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.72rem;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.primary-navigation > a:not(.nav-action):not(.nav-login)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--signal);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.primary-navigation > a:hover,
.primary-navigation > a:focus-visible,
.primary-navigation > a.is-active {
    color: var(--white);
}

.primary-navigation > a.is-active::after,
.primary-navigation > a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-login {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-navigation .nav-action {
    min-width: 86px;
    padding: 9px 16px;
    background: var(--signal);
    color: var(--ink);
    text-align: center;
}

.menu-button {
    display: none;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 750;
    cursor: pointer;
}

.menu-lines {
    display: grid;
    width: 22px;
    gap: 4px;
}

.menu-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.hero-stage {
    display: grid;
    min-height: 100svh;
    grid-template-rows: minmax(0, 1fr) auto;
    background: var(--ink);
}

.hero {
    position: relative;
    height: auto;
    min-height: 580px;
    max-height: none;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 46%;
    animation: hero-image-settle 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
    background: rgba(4, 8, 5, 0.42);
}

.hero-inner {
    position: relative;
    display: flex;
    width: min(calc(100% - 48px), var(--shell));
    height: 100%;
    margin-inline: auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 34px) 0 24px;
}

.hero-copy {
    max-width: 610px;
}

.hero-copy > * {
    animation: hero-copy-enter 680ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > :nth-child(1) {
    animation-delay: 100ms;
}

.hero-copy > :nth-child(2) {
    animation-delay: 180ms;
}

.hero-copy > :nth-child(3) {
    animation-delay: 260ms;
}

.hero-copy > :nth-child(4) {
    animation-delay: 340ms;
}

@keyframes hero-image-settle {
    from {
        transform: scale(1.035);
    }

    to {
        transform: scale(1);
    }
}

@keyframes hero-copy-enter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-kicker {
    margin-bottom: 18px;
    color: var(--signal-dark);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 12px;
    font-size: 5.7rem;
    font-weight: 900;
}

.hero-line {
    margin-bottom: 18px;
    font-size: 1.9rem;
    font-weight: 720;
    line-height: 1.16;
}

.hero-summary {
    max-width: 520px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.77);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 18px;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 820;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button > span[aria-hidden="true"] {
    transition: transform 180ms ease;
}

.button:hover > span[aria-hidden="true"],
.button:focus-visible > span[aria-hidden="true"] {
    transform: translateX(4px);
}

.button-primary {
    background: var(--signal);
    color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
    border-color: var(--signal);
    background: transparent;
    color: var(--white);
}

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

.button-dark:hover,
.button-dark:focus-visible {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.text-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 750;
    text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--signal);
}

.dark-link {
    color: var(--ink);
}

.dark-link:hover,
.dark-link:focus-visible {
    color: var(--rust);
}

.audience-strip {
    background: var(--signal);
}

.audience-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 44px;
}

.audience-inner p {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.audience-inner ul {
    display: grid;
    width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.audience-inner li {
    padding: 8px 20px;
    border-left: 1px solid rgba(17, 21, 18, 0.25);
    font-weight: 740;
}

.section-heading {
    display: grid;
    margin-bottom: 64px;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    column-gap: 60px;
}

.section-heading .section-kicker,
.section-heading h2 {
    grid-column: 1;
}

.section-heading > p:last-child {
    align-self: end;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading.compact {
    display: block;
}

.capabilities {
    background: var(--paper-bright);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability {
    min-height: 242px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color 220ms ease;
}

.capability-number {
    display: block;
    margin-bottom: 48px;
    color: var(--rust);
    font-size: 0.72rem;
    font-weight: 850;
}

.capability h3 {
    margin-bottom: 13px;
}

.capability p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.workflow {
    background: var(--forest-deep);
    color: var(--white);
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(440px, 1.25fr);
    gap: 90px;
}

.workflow-intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.workflow-intro .section-kicker {
    color: var(--signal);
}

.workflow-intro h2 {
    font-size: 3rem;
}

.workflow-intro > p:last-child {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.62);
}

.workflow-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.workflow-steps li {
    display: grid;
    min-height: 144px;
    align-items: center;
    grid-template-columns: 72px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.workflow-steps li > span {
    color: var(--signal);
    font-size: 0.78rem;
    font-weight: 850;
}

.workflow-steps h3 {
    margin-bottom: 7px;
}

.workflow-steps p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.61);
}

.control {
    background: var(--paper);
}

.control-heading {
    display: grid;
    margin-bottom: 58px;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
    gap: 70px;
}

.control-heading > p {
    align-self: end;
    margin-bottom: 26px;
    color: var(--muted);
}

.control-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.control-item {
    display: grid;
    min-height: 250px;
    padding: 38px 42px 40px 0;
    grid-template-columns: 58px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.control-item:nth-child(even) {
    padding-right: 0;
    padding-left: 42px;
    border-left: 1px solid var(--line);
}

.control-number,
.control-label {
    color: var(--rust);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.control-number {
    padding-top: 6px;
}

.control-label {
    margin-bottom: 13px;
}

.control-item h3 {
    max-width: 420px;
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.control-item div > p:last-child {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.65;
}

.managed-boundary {
    display: grid;
    margin-top: 38px;
    padding: 25px 28px;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    background: var(--ink);
    color: var(--white);
}

.managed-boundary .control-label,
.managed-boundary > p {
    margin-bottom: 0;
}

.managed-boundary > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.security-assurance {
    padding: 84px 0;
    background: var(--forest-deep);
    color: var(--white);
}

.security-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 82px;
}

.security-intro .section-kicker {
    color: var(--signal);
}

.security-intro h2 {
    margin-bottom: 18px;
    font-size: 2.7rem;
}

.security-intro > p:last-child {
    max-width: 430px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
}

.security-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-points article {
    min-height: 250px;
    padding: 25px 24px 0 0;
}

.security-points article + article {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.security-points span {
    display: block;
    margin-bottom: 48px;
    color: var(--signal);
    font-size: 0.7rem;
    font-weight: 850;
}

.security-points h3 {
    margin-bottom: 12px;
}

.security-points p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

.use-cases {
    background: var(--paper);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ink);
}

.use-case-grid article {
    min-height: 230px;
    padding: 28px 32px 20px 0;
    border-bottom: 1px solid var(--ink);
}

.use-case-grid article + article {
    padding-left: 32px;
    border-left: 1px solid var(--ink);
}

.use-case-grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--rust);
    font-size: 0.7rem;
    font-weight: 900;
}

.use-case-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.pricing-doctrine {
    padding: 72px 0;
    background: var(--rust);
    color: var(--white);
}

.pricing-doctrine-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 80px;
}

.pricing-doctrine .section-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-doctrine h2 {
    margin-bottom: 0;
    font-size: 3rem;
}

.pricing-doctrine-inner > p {
    max-width: 500px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
}

.pricing {
    padding: 104px 0;
    background: var(--signal);
    color: var(--ink);
}

.pricing-heading {
    display: grid;
    align-items: end;
    margin-bottom: 48px;
    grid-template-columns: 1fr auto;
    gap: 60px;
}

.pricing .section-kicker {
    color: #6f5010;
}

.pricing-heading h2 {
    margin-bottom: 0;
}

.starting-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.starting-price span {
    font-size: 0.82rem;
    font-weight: 750;
}

.starting-price strong {
    font-size: 3.8rem;
    line-height: 1;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(17, 21, 18, 0.38);
    border-left: 1px solid rgba(17, 21, 18, 0.38);
}

.plan {
    display: flex;
    min-height: 500px;
    padding: 24px 20px 20px;
    flex-direction: column;
    border-right: 1px solid rgba(17, 21, 18, 0.38);
    border-bottom: 1px solid rgba(17, 21, 18, 0.38);
    transition: transform 220ms ease, background-color 220ms ease;
}

.plan-featured {
    background: var(--ink);
    color: var(--white);
}

.plan-heading {
    min-height: 154px;
}

.plan-heading > span {
    display: block;
    margin-bottom: 26px;
    color: #795811;
    font-size: 0.66rem;
    font-weight: 900;
}

.plan-featured .plan-heading > span {
    color: var(--signal);
}

.plan-heading h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.plan-heading p {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.5;
}

.plan-featured .plan-heading p {
    color: rgba(255, 255, 255, 0.62);
}

.plan-price {
    display: flex;
    min-height: 76px;
    justify-content: center;
    margin-bottom: 0;
    flex-direction: column;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.plan-price {
    align-items: baseline;
    flex-direction: row;
    gap: 6px;
}

.plan-price strong {
    font-size: 2.7rem;
    line-height: 1;
}

.plan-price span {
    font-size: 0.68rem;
}

.plan-capacity {
    padding: 18px 0 16px;
    border-bottom: 1px solid rgba(17, 21, 18, 0.24);
}

.plan-featured .plan-capacity {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-capacity p,
.plan-capacity span {
    margin-bottom: 0;
    color: #76560f;
    font-size: 0.65rem;
}

.plan-featured .plan-capacity p,
.plan-featured .plan-capacity span {
    color: rgba(255, 255, 255, 0.62);
}

.plan-capacity strong {
    display: block;
    margin: 3px 0 1px;
    font-size: 1.1rem;
}

.plan-technical {
    margin: 10px 0 18px;
    border-bottom: 1px solid rgba(17, 21, 18, 0.24);
}

.plan-featured .plan-technical {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-technical summary {
    position: relative;
    padding: 9px 24px 9px 0;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.plan-technical summary::-webkit-details-marker {
    display: none;
}

.plan-technical summary::after {
    position: absolute;
    top: 50%;
    right: 2px;
    content: "+";
    font-size: 1.05rem;
    font-weight: 500;
    transform: translateY(-50%);
}

.plan-technical[open] summary::after {
    content: "−";
}

.plan-technical dl {
    margin: 0 0 8px;
}

.plan-technical dl div {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(17, 21, 18, 0.24);
}

.plan-featured .plan-technical dl div {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-technical dt {
    color: #76560f;
    font-size: 0.65rem;
}

.plan-featured .plan-technical dt {
    color: rgba(255, 255, 255, 0.62);
}

.plan-technical dd {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 820;
    text-align: right;
}

.plan .button {
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding-inline: 10px;
    gap: 8px;
    font-size: 0.76rem;
}

.plan-featured .button-primary:hover,
.plan-featured .button-primary:focus-visible {
    color: var(--white);
}

.plan-details {
    display: grid;
    margin-top: 30px;
    grid-template-columns: minmax(0, 1.5fr) minmax(230px, 0.5fr);
    border-top: 1px solid rgba(20, 25, 21, 0.42);
}

.plan-inclusions {
    display: grid;
    padding: 20px 0;
    grid-column: 1 / -1;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid rgba(20, 25, 21, 0.42);
}

.plan-detail-label {
    margin-bottom: 0;
    color: rgba(20, 25, 21, 0.65);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.plan-inclusions ul {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 9px 28px;
    list-style: none;
}

.plan-inclusions li {
    position: relative;
    padding-left: 14px;
    font-size: 0.82rem;
    font-weight: 720;
}

.plan-inclusions li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--ink);
    content: "";
}

.plan-guidance {
    padding: 24px 36px 0 0;
}

.plan-guidance > p:not(.plan-detail-label) {
    max-width: 760px;
    margin: 10px 0 8px;
    font-size: 0.82rem;
    line-height: 1.6;
}

.plan-guidance > strong {
    font-size: 0.82rem;
}

.plan-saving {
    padding: 24px 0 4px 30px;
    border-left: 1px solid rgba(20, 25, 21, 0.42);
}

.plan-saving strong {
    display: block;
    margin-top: 8px;
    font-size: 1.25rem;
}

.plan-saving span {
    display: block;
    max-width: 270px;
    margin-top: 7px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.questions {
    background: var(--paper-bright);
}

.questions-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
    gap: 100px;
}

.questions-heading {
    align-self: start;
}

.questions-heading h2 {
    font-size: 3rem;
}

.questions-heading > p:not(.section-kicker) {
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--ink);
}

.faq-list details {
    border-bottom: 1px solid var(--ink);
}

.faq-list summary {
    position: relative;
    padding: 24px 50px 24px 0;
    font-size: 1.03rem;
    font-weight: 780;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 650px;
    margin-bottom: 24px;
    padding-right: 48px;
    color: var(--muted);
}

.closing {
    padding: 100px 0;
    background: var(--forest-deep);
    color: var(--white);
    text-align: center;
}

.closing-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.closing .section-kicker {
    color: var(--signal);
}

.closing h2 {
    margin-bottom: 34px;
    font-size: 4rem;
}

.site-footer {
    padding: 54px 0;
    background: var(--ink);
    color: var(--white);
}

.footer-inner {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-inner > div:first-child p,
.footer-legal p {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.76rem;
}

.footer-inner nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
}

.footer-inner nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-inner nav a:hover,
.footer-inner nav a:focus-visible {
    color: var(--signal);
}

.footer-legal {
    text-align: right;
}

.footer-legal strong {
    color: var(--white);
}

:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 4px;
}

.reveal {
    opacity: 0;
    translate: 0 24px;
}

.reveal.is-visible {
    animation: content-reveal 640ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms) both;
}

@keyframes content-reveal {
    to {
        opacity: 1;
        translate: 0 0;
    }
}

@media (hover: hover) {
    .button:hover {
        transform: translateY(-2px);
    }

    .capability:hover {
        background: var(--paper);
    }

    .plan:hover {
        z-index: 1;
        transform: translateY(-6px);
    }

    .plan-featured:hover {
        background: var(--ink-soft);
    }
}

@media (max-width: 980px) {
    h2 {
        font-size: 3rem;
    }

    .menu-button {
        display: inline-flex;
    }

    .primary-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        height: calc(100svh - var(--header-height));
        padding: 36px 24px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        background: var(--ink);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation a {
        padding: 17px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 1.06rem;
    }

    .primary-navigation > a:not(.nav-action):not(.nav-login)::after {
        display: none;
    }

    .nav-login {
        padding-left: 0;
        border-left: 0;
    }

    .primary-navigation .nav-action {
        margin-top: 24px;
        padding: 13px 16px;
        border-bottom: 0;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .section-heading,
    .control-heading {
        display: block;
    }

    .section-heading > p:last-child,
    .control-heading > p {
        max-width: 600px;
        margin-bottom: 0;
    }

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-layout,
    .questions-layout,
    .security-layout {
        gap: 60px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-legal {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 64px;
    }

    .section-shell,
    .nav-shell,
    .hero-inner {
        width: min(calc(100% - 32px), var(--shell));
    }

    .section-pad {
        padding: 80px 0;
    }

    h2,
    .workflow-intro h2,
    .questions-heading h2 {
        font-size: 2.35rem;
    }

    .brand-by {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 540px;
        max-height: none;
    }

    .hero-image {
        object-position: 65% center;
    }

    .hero-shade {
        background: rgba(5, 8, 6, 0.61);
    }

    .hero-inner {
        padding-bottom: 24px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero h1 {
        font-size: 3.9rem;
    }

    .hero-line {
        font-size: 1.55rem;
    }

    .hero-summary {
        max-width: 510px;
        font-size: 0.94rem;
    }

    .audience-inner {
        display: block;
        padding: 18px 0 16px;
    }

    .audience-inner p {
        margin-bottom: 10px;
    }

    .audience-inner ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .audience-inner li {
        padding: 7px 12px 7px 0;
        border-left: 0;
        font-size: 0.84rem;
    }

    .capability-grid,
    .workflow-layout,
    .questions-layout,
    .security-layout {
        grid-template-columns: 1fr;
    }

    .capability {
        min-height: 220px;
    }

    .workflow-intro {
        position: static;
    }

    .control-list {
        grid-template-columns: 1fr;
    }

    .control-item,
    .control-item:nth-child(even) {
        min-height: auto;
        padding: 30px 0;
        border-left: 0;
    }

    .managed-boundary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .security-assurance {
        padding: 72px 0;
    }

    .security-layout {
        gap: 48px;
    }

    .security-intro h2 {
        font-size: 2.35rem;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .use-case-grid article,
    .use-case-grid article + article {
        min-height: 190px;
        padding: 25px 0;
        border-left: 0;
    }

    .use-case-grid article > span {
        margin-bottom: 38px;
    }

    .pricing-doctrine {
        padding: 60px 0;
    }

    .pricing-doctrine-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
    }

    .pricing-doctrine h2 {
        font-size: 2.35rem;
    }

    .questions-layout {
        gap: 64px;
    }

    .pricing-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .starting-price {
        justify-self: start;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan {
        min-height: 450px;
    }

    .plan-heading {
        min-height: 132px;
    }

    .plan-details {
        grid-template-columns: 1fr;
    }

    .plan-inclusions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plan-guidance {
        padding: 24px 0;
    }

    .plan-saving {
        padding: 22px 0 0;
        border-top: 1px solid rgba(20, 25, 21, 0.42);
        border-left: 0;
    }

    .closing h2 {
        font-size: 2.8rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-legal {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3.15rem;
    }

    .hero-line {
        font-size: 1.35rem;
    }

    .hero-summary {
        margin-bottom: 22px;
    }

    .button {
        width: 100%;
    }

    .hero-actions .button {
        width: auto;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .capability {
        min-height: 200px;
    }

    .capability-number {
        margin-bottom: 34px;
    }

    .control-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .security-points {
        grid-template-columns: 1fr;
    }

    .security-points article,
    .security-points article + article {
        min-height: auto;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }

    .security-points span {
        margin-bottom: 28px;
    }

    .starting-price strong {
        font-size: 3.2rem;
    }

    .footer-inner nav {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        translate: none;
    }
}
