/* =============================================================================
   NETZERO AQUA — CONTENT PAGES
   =============================================================================
   Requires na-system.css and na-blocks.css. Shared by Solutions, About,
   Careers, Contact, Get access and Downloads.

   These pages carry prose, a form and a couple of utility layouts rather than
   diagrams, so what they need is different from the product pages: readable
   measure, a callout that survives being read out of order, and form controls
   that are legible on a phone in the sun.
   ========================================================================== */

/* ---- Prose ----------------------------------------------------------------
   65 characters is the measure. Everything on these pages that is a paragraph
   of running text sits inside one of these.
   -------------------------------------------------------------------------- */

.na-prose { max-width: 40rem; }
.na-prose p { font-size: 1.0625rem; color: var(--na-ink-2); margin-bottom: 1.1em; }
.na-prose p strong { color: var(--na-ink); font-weight: 600; }
.na-prose h3 { margin-top: 2rem; }
.na-section--dark .na-prose p,
.na-section--deep .na-prose p { color: var(--na-on-dark-2); }
.na-section--dark .na-prose p strong,
.na-section--deep .na-prose p strong { color: #fff; }

.na-prose--wide { max-width: 46rem; }

/* ---- Numbered service block -----------------------------------------------
   Four of these on the Solutions page. The number is the anchor: a big, quiet
   figure in the left gutter that lets someone scan the page for "the
   compliance one" without reading a word.
   -------------------------------------------------------------------------- */

.na-service {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: clamp(1rem, 0.7rem + 1.4vw, 2.5rem);
    padding-block: clamp(2rem, 1.5rem + 2vw, 3.5rem);
    border-top: 1px solid var(--na-line);
    scroll-margin-top: calc(var(--na-header-h) + 24px);
}
.na-service:first-of-type { border-top: 0; padding-top: 0; }

/* A quiet gutter figure, but --na-line-2 put it at 1.38:1 — past quiet and
   into missing. --na-ink-3 keeps it subordinate to the heading beside it and
   still legible. */
.na-service__num {
    font-family: var(--na-font-display);
    font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--na-ink-3);
    opacity: 0.55;
}
.na-service__tag {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--na-aqua-text);
}
.na-service h3 { font-size: var(--na-t-h3); margin-bottom: 0.75rem; }

@media (max-width: 700px) {
    .na-service { grid-template-columns: 1fr; gap: 1rem; }
    .na-service__num { font-size: 1.75rem; }
    .na-service__tag { display: inline-block; margin: 0 0 0 0.75rem; }
}

/* ---- Callout --------------------------------------------------------------
   "What you get." The one paragraph on each service that a farmer actually
   needs, pulled out so it survives being skimmed.
   -------------------------------------------------------------------------- */

.na-callout {
    margin-top: 1.5rem;
    padding: 1.125rem 1.375rem;
    border-radius: var(--na-r);
    background: var(--na-aqua-wash);
    border: 1px solid rgba(76, 130, 255, 0.26);
    border-left: 3px solid var(--na-aqua-deep);
    font-size: 0.9375rem;
    color: var(--na-ink-2);
}
.na-callout b {
    color: var(--na-aqua-text);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.na-section--dark .na-callout,
.na-section--deep .na-callout {
    background: rgba(76, 130, 255, 0.08);
    color: var(--na-on-dark-2);
}
.na-section--dark .na-callout b,
.na-section--deep .na-callout b { color: var(--na-aqua); }

/* A quieter variant for caveats and notes rather than benefits. */
.na-callout--note {
    background: var(--na-surface-2);
    border-color: var(--na-line);
    border-left-color: var(--na-line-2);
}
.na-callout--note b { color: var(--na-ink); }

/* On a navy section the note's light surface and ink lead lose their contrast
   entirely — the lead simply stops being visible. It gets its own treatment. */
.na-section--dark .na-callout--note,
.na-section--deep .na-callout--note {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--na-dark-line);
    border-left-color: var(--na-dark-line-2);
    color: var(--na-on-dark-2);
}
.na-section--dark .na-callout--note b,
.na-section--deep .na-callout--note b { color: #fff; }

/* ---- Rule card ------------------------------------------------------------
   The four "rules we hold to" on About. Deliberately not numbered: they are
   simultaneous commitments, not a sequence.
   -------------------------------------------------------------------------- */

.na-rule {
    padding: clamp(1.375rem, 1.1rem + 1vw, 1.875rem);
    border-radius: var(--na-r);
    border: 1px solid var(--na-line);
    background: var(--na-surface);
    border-top: 3px solid var(--na-aqua-deep);
}
.na-rule h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.na-rule p { font-size: 0.9375rem; color: var(--na-ink-2); margin: 0; }

/* ---- Role / job card ------------------------------------------------------ */

.na-role {
    padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
    border-radius: var(--na-r-lg);
    border: 1px solid var(--na-dark-line);
    background: var(--na-dark-3);
    color: #fff;
}
.na-role__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.na-role__head h3 { font-size: var(--na-t-h3); margin: 0; }
.na-role__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-left: auto; }
.na-role__tag {
    padding: 0.3rem 0.7rem;
    border-radius: var(--na-r-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--na-dark-line);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--na-on-dark-2);
    white-space: nowrap;
}

/* ---- Form -----------------------------------------------------------------
   Controls sized for a thumb and a bright screen: 48px tall, high-contrast
   borders, and a focus ring that is visible outdoors rather than a 1px tint.
   -------------------------------------------------------------------------- */

.na-form { display: grid; gap: 1.125rem; }

.na-field { display: grid; gap: 0.4rem; }
.na-field > label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--na-ink);
}
.na-field__hint { font-size: 0.8125rem; color: var(--na-ink-3); }

.na-input {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--na-ink);
    background: var(--na-surface);
    border: 1px solid var(--na-line-2);
    border-radius: var(--na-r-sm);
    transition: border-color var(--na-fast) var(--na-ease),
                box-shadow var(--na-fast) var(--na-ease);
}
.na-input::placeholder { color: var(--na-ink-3); }
.na-input:focus {
    outline: none;
    border-color: var(--na-aqua-deep);
    box-shadow: 0 0 0 3px var(--na-aqua-glow);
}
textarea.na-input { min-height: 140px; resize: vertical; line-height: 1.6; }

.na-form__note { font-size: 0.8125rem; color: var(--na-ink-3); }

/* ---- Contact detail list --------------------------------------------------- */

.na-contacts { display: grid; gap: 1px; background: var(--na-line);
               border: 1px solid var(--na-line); border-radius: var(--na-r); overflow: hidden; }
.na-contacts > div { background: var(--na-surface); padding: 1.25rem 1.375rem; }
.na-contacts h3 {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--na-ink-3);
    margin-bottom: 0.5rem;
}
.na-contacts p { font-size: 0.9375rem; color: var(--na-ink-2); margin: 0; }
.na-contacts a { color: var(--na-aqua-text); font-weight: 600; text-decoration: none; }
.na-contacts a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---- Steps ----------------------------------------------------------------
   Get access. A vertical numbered list with a rail, distinct from .na-flow
   because these are instructions to one person rather than a process diagram.
   -------------------------------------------------------------------------- */

.na-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.na-steps li {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1.25rem;
    padding-bottom: 2rem;
}
.na-steps li:last-child { padding-bottom: 0; }
.na-steps li::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: var(--na-line);
}
.na-steps li:last-child::before { display: none; }

.na-steps__n {
    position: relative;
    z-index: 1;
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--na-surface);
    border: 1px solid var(--na-line-2);
    font-family: var(--na-font-mono);
    font-size: 0.875rem;
    color: var(--na-aqua-text);
}
.na-steps h3 { font-size: 1.0625rem; margin-bottom: 0.4rem; padding-top: 0.6rem; }
.na-steps p { font-size: 0.9375rem; color: var(--na-ink-2); margin: 0; }

/* ---- App download card ----------------------------------------------------- */

.na-app {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
    border-radius: var(--na-r-lg);
    border: 1px solid var(--na-line);
    background: var(--na-surface);
}
.na-app__head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.na-app__icon {
    width: 52px; height: 52px; flex: none;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--na-aqua-wash);
    border: 1px solid rgba(76, 130, 255, 0.26);
    color: var(--na-aqua-text);
}
.na-app__icon svg { width: 24px; height: 24px; }
.na-app__icon--buddy {
    background: rgba(224, 163, 46, 0.10);
    border-color: rgba(224, 163, 46, 0.30);
    color: #8A6210;
}
.na-app__role {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--na-ink-3);
    margin-bottom: 0.2rem;
}
.na-app h2 { font-size: var(--na-t-h3); margin-bottom: 0.4rem; }

.na-app__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    margin: 1.25rem 0;
    padding: 0.75rem 0;
    border-block: 1px solid var(--na-line);
    font-size: 0.8125rem;
    color: var(--na-ink-3);
}
.na-app__meta b { color: var(--na-ink); font-weight: 600; }

.na-app .na-btn { width: 100%; }
.na-app__foot { margin-top: auto; padding-top: 1.25rem; font-size: 0.875rem; color: var(--na-ink-3); }

/* A button that is deliberately not yet a link. Reads as unavailable rather
   than as broken — the download page's own note explains why. */
.na-btn.is-pending {
    background: var(--na-surface-2);
    color: var(--na-ink-3);
    border-color: var(--na-line-2);
    box-shadow: none;
    cursor: not-allowed;
}
.na-btn.is-pending:hover { background: var(--na-surface-2); box-shadow: none; }

.na-app details { margin-top: 1rem; font-size: 0.875rem; color: var(--na-ink-2); }
.na-app summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--na-ink);
    padding: 0.5rem 0;
}
.na-app details p { margin: 0.5rem 0; }


/* =============================================================================
   CONSOLES PAGE — the three sign-in cards
   =============================================================================
   Three cards, each a door to a different console. The one thing they need
   that a plain .na-card does not give them is a shared baseline for the
   button: the three ledes are different lengths, so without this the buttons
   sit at three different heights and the row stops reading as one choice
   between three equals.
   ========================================================================== */

.na-consoles .na-card {
    display: flex;
    flex-direction: column;
}

/* Who it is for, and what you sign in with. Quieter than the lede — this is
   the answer to "is this one mine?", read only by someone unsure. */
.na-console__who {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--na-ink-3);
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--na-line);
}

/* margin-top:auto is what aligns the row: it absorbs whatever vertical slack
   the shorter cards have, so all three buttons land on the same line. The gap
   above the button comes from .na-console__who's margin, not from here, so
   that auto stays free to do its one job. align-self stops the flex column
   from stretching the button to the full card width. */
.na-console__go {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 900px) {
    /* Stacked there is no row to align, and a full-width button is the easier
       tap target. */
    .na-console__go { align-self: stretch; justify-content: center; }
}
