/* ===================================================================
 * AWWWARDS.CSS — Debug Lab Design System
 * Apple-level typography, teal #26A69A accents, dark theme
 * Shared by: index-v1.html, index-v2.html, about.html
 * =================================================================== */

/* ── CSS Custom Properties ────────────────────────────────────────── */
:root {
    --teal:          #26A69A;
    --teal-dark:     #1d8a80;
    --teal-glow:     rgba(38, 166, 154, 0.12);
    --bg:            #000000;
    --bg-1:          #0a0a0a;
    --bg-2:          #111111;
    --bg-3:          #161616;
    --text:          rgba(255,255,255,0.60);
    --text-hi:       rgba(255,255,255,0.85);
    --white:         #ffffff;
    --border:        rgba(255,255,255,0.08);
    --border-hi:     rgba(255,255,255,0.15);
    --font-sans:     "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif:    "IBM Plex Sans", ui-monospace, monospace;
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
    --max-w:         1240px;
    --gutter:        5%;
}

/* ── Base Resets ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--bg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: var(--text);
}

/* ── Layout Containers ────────────────────────────────────────────── */
.aww-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.aww-section {
    padding: 12rem 0;
    position: relative;
}

.aww-section--sm { padding: 7rem 0; }

/* Divider lines between sections */
.aww-section + .aww-section {
    border-top: 1px solid var(--border);
}

/* ── Section Typography ────────────────────────────────────────────── */
.aww-tag {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    color: var(--teal);
    display: block;
    margin-bottom: 2rem;
}

.aww-h2 {
    font-family: var(--font-sans);
    font-size: clamp(3.6rem, 5.5vw, 6rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
    margin: 0 0 2.4rem 0;
}

.aww-h3 {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0 0 2rem 0;
}

.aww-lead {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 640px;
    margin: 0 0 5rem 0;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.aww-btn,
.aww-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    height: 5.6rem;
    padding: 0 3.4rem;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition:
        background var(--ease-out) 0.3s,
        color var(--ease-out) 0.3s,
        transform var(--ease-out) 0.25s,
        box-shadow var(--ease-out) 0.25s;
    position: relative;
    white-space: nowrap;
}

.aww-btn {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}

.aww-btn:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(38,166,154,0.3);
}

.aww-btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--border-hi);
}

.aww-btn-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    transform: translateY(-3px);
    background: rgba(255,255,255,0.04);
}

/* ── Cards ────────────────────────────────────────────────────────── */
.aww-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 4.4rem;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition:
        background var(--ease-out) 0.35s,
        border-color var(--ease-out) 0.35s,
        transform var(--ease-out) 0.35s,
        box-shadow var(--ease-out) 0.35s;
}

.aww-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(ellipse at 50% 0%, rgba(38,166,154,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--ease-out) 0.4s;
    pointer-events: none; /* Do not block clicks to children */
    z-index: 1;
}

.aww-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--teal);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(38,166,154,0.2);
    text-decoration: none;
}

.aww-card:hover::before {
    opacity: 1;
}

.aww-card__icon {
    font-size: 2.6rem;
    color: var(--teal);
    display: block;
    margin-bottom: 2.8rem;
    transition: transform var(--ease-out) 0.3s;
}

.aww-card:hover .aww-card__icon {
    transform: scale(1.08);
}

.aww-card__title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 1.4rem 0;
    line-height: 1.3;
}

.aww-card__body {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0;
}

/* Cards grid */
.aww-cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .aww-cards-2 { grid-template-columns: 1fr; }
}

/* Product card variant — flex column so button sticks to bottom */
.aww-card--product {
    display: flex;
    flex-direction: column;
    cursor: default;
}

.aww-card--product:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(38,166,154,0.2);
}

/* Icon + status badge row */
.aww-card__product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.4rem;
}

.aww-card__product-top .aww-card__icon {
    margin-bottom: 0;
}

/* Live / Coming Soon status badge */
.aww-product-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
}

.aww-product-status--live {
    color: var(--teal);
    background: rgba(38,166,154,0.1);
    border: 1px solid rgba(38,166,154,0.25);
}

.aww-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

/* The launch button inside each product card */
.aww-card__link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: auto;
    padding-top: 2.8rem;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
    color: var(--teal);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color var(--ease-out) 0.25s, gap var(--ease-out) 0.25s;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.aww-card__link-btn i {
    font-size: 1rem;
    transition: transform var(--ease-out) 0.25s;
}

.aww-card__link-btn:hover {
    color: var(--white);
    gap: 1.4rem;
    text-decoration: none;
}

.aww-card__link-btn:hover i {
    transform: translate(3px, -3px);
}

/* ── "Chip" badge ─────────────────────────────────────────────────── */
.aww-chip {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    margin-left: 1.2rem;
    vertical-align: middle;
}

/* ── Stats ────────────────────────────────────────────────────────── */
.aww-stats {
    display: flex;
    gap: 7rem;
    flex-wrap: wrap;
}

.aww-stat__num {
    display: block;
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.aww-stat__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    color: rgba(255,255,255,0.4);
}

/* ── "Who We Serve" row ───────────────────────────────────────────── */
.aww-serve {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Section label above the grid */
.aww-serve-header {
    text-align: center;
    padding: 3.6rem 0 0;
    border-bottom: 1px solid var(--border);
}

.aww-serve-label {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28rem;
    color: var(--teal);
    display: inline-block;
    padding-bottom: 2.4rem;
}

.aww-serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.aww-serve-item {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background var(--ease-out) 0.3s;
}

.aww-serve-item:last-child { border-right: 0; }

.aww-serve-item:hover { background: rgba(38,166,154,0.05); }

.aww-serve-item i {
    font-size: 2.6rem;
    color: var(--teal);
    display: block;
    margin-bottom: 1.4rem;
}

.aww-serve-item span {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.8rem;
}

.aww-serve-item small {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.5;
    margin-top: 0.4rem;
}

@media (max-width: 800px) {
    .aww-serve-grid { grid-template-columns: repeat(2, 1fr); }
    .aww-serve-item:nth-child(2n) { border-right: 0; }
    .aww-serve-item:nth-child(1),
    .aww-serve-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ── Sections with BG images ──────────────────────────────────────── */
.aww-bg-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.aww-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.96) 100%);
    z-index: 0;
}

.aww-bg-section .aww-inner {
    position: relative;
    z-index: 1;
}

/* ── Contact Form ─────────────────────────────────────────────────── */
.aww-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: start;
}

@media (max-width: 800px) {
    .aww-contact-grid { grid-template-columns: 1fr; gap: 5rem; }
}

.aww-contact-info h5 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    color: var(--teal);
    margin: 0 0 0.8rem 0;
}

.aww-contact-info p {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text);
    margin: 0 0 3.6rem 0;
    line-height: 1.6;
}

.aww-input {
    width: 100%;
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid var(--border);
    padding: 1.6rem 0;
    color: var(--white) !important;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.5;
    display: block;
    margin-bottom: 2.8rem;
    transition: border-color var(--ease-out) 0.3s;
    box-sizing: border-box;
    -webkit-text-fill-color: var(--white) !important; /* overrides aggressive Chrome autocompletes temporarily */
}

.aww-input:focus {
    outline: none;
    border-bottom-color: var(--teal);
}

.aww-input::placeholder { color: rgba(255,255,255,0.2); }

textarea.aww-input {
    resize: vertical;
    min-height: 12rem;
    margin-bottom: 3.2rem;
}

.aww-submit {
    width: 100%;
    display: block;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    height: 5.6rem;
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
    cursor: pointer;
    border-radius: 0;
    transition: background var(--ease-out) 0.3s, box-shadow var(--ease-out) 0.3s;
}

.aww-submit:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    box-shadow: 0 12px 32px rgba(38,166,154,0.3);
}

.aww-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Feedback */
.aww-msg {
    display: none;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 1.6rem 2rem;
    border-radius: 6px;
    margin-bottom: 2.4rem;
}
.aww-msg.visible { display: block; }
.aww-msg--warn {
    color: #ff6163;
    background: rgba(255,97,99,0.07);
    border: 1px solid rgba(255,97,99,0.18);
}
.aww-msg--ok {
    color: var(--teal);
    background: rgba(38,166,154,0.07);
    border: 1px solid rgba(38,166,154,0.2);
}

/* ── Footer ───────────────────────────────────────────────────────── */
footer {
    background: #050505 !important;
    border-top: 1px solid var(--border) !important;
}

/* ── ============================================================= ──
 *    HERO: Version 1 — Cinematic (full bleed image, left-aligned)
 * ── ============================================================= ── */
.v1-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 740px;
    display: flex;
    align-items: center;
    background: #000;
    background-image: url("../images/hero-one.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.v1-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.82) 100%
    );
    z-index: 1;
}

.v1-hero__glow {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(38,166,154,0.1) 0%, transparent 65%);
    z-index: 2;
    pointer-events: none;
}

.v1-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
    padding-top: 80px;
}

.v1-hero__tag {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--teal);
    margin-bottom: 2.8rem;
}

.v1-hero__h1 {
    font-family: var(--font-sans);
    font-size: clamp(4.5rem, 8vw, 9rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
    margin: 0 0 3.2rem 0;
    max-width: 16ch;
}

.v1-hero__desc {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.62);
    max-width: 580px;
    margin: 0 0 4.4rem 0;
}

.v1-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

/* Scroll cue */
.v1-hero__scroll {
    position: absolute;
    bottom: 4.5rem;
    right: 6%;
    z-index: 3;
    writing-mode: vertical-rl;
}

.v1-hero__scroll a {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.v1-hero__scroll a::before {
    content: '';
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--teal));
}

.v1-hero__scroll a:hover { color: var(--teal); }

@media (max-width: 800px) {
    .v1-hero { background-attachment: scroll; }
    .v1-hero__h1 { font-size: clamp(4rem, 10vw, 6rem); }
    .v1-hero__scroll { display: none; }
    .v1-hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* ── ============================================================= ──
 *    HERO: Version 2 — Editorial (centered, big type, no bg image)
 * ── ============================================================= ── */
.v2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Geometric teal grid — decorative */
.v2-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(38,166,154,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38,166,154,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    z-index: 0;
}

.v2-hero__glow-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(ellipse, rgba(38,166,154,0.08) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.v2-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.v2-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--teal);
    margin-bottom: 3.2rem;
}

.v2-hero__tag::before,
.v2-hero__tag::after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--teal);
    opacity: 0.5;
}

.v2-hero__h1 {
    font-family: var(--font-sans);
    font-size: clamp(5rem, 9vw, 11rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.055em;
    color: var(--white);
    margin: 0 0 4rem 0;
}

/* Thin word variant */
.v2-hero__h1 em {
    font-style: normal;
    font-weight: 300;
    color: var(--teal);
}

.v2-hero__desc {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 620px;
    margin: 0 auto 5rem auto;
}

.v2-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
}

/* Scroll indicator */
.v2-hero__divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* Image strip below v2 hero */
.v2-hero-image {
    width: 100%;
    height: 50vh;
    background-image: url("../images/hero-one.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
.v2-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}

@media (max-width: 800px) {
    .v2-hero__h1 { font-size: clamp(4.4rem, 12vw, 7rem); }
    .v2-hero__ctas { flex-direction: column; align-items: center; }
    .v2-hero-image { height: 30vh; }
}

/* ── ============================================================= ──
 *    ABOUT PAGE — Additional Styles
 * ── ============================================================= ── */
.aww-about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

/* About hero uses the legacy parallax bg from about.html */
.aww-about-hero .overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.88) 100%
    ) !important;
}

/* Manifesto section */
.aww-manifesto {
    background: var(--white);
    padding: 16rem 0;
}

.aww-manifesto .aww-inner {
    text-align: center;
}

.aww-manifesto .aww-tag {
    color: var(--teal);
}

.aww-manifesto .aww-h2 {
    color: #000;
    font-size: clamp(4rem, 6vw, 7rem);
    letter-spacing: -0.05em;
    max-width: 14ch;
    margin: 0 auto 4rem auto;
}

.aww-manifesto__body {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.8;
    color: rgba(0,0,0,0.65);
    max-width: 700px;
    margin: 0 auto;
}

.aww-manifesto__body strong {
    color: #000;
}

/* Philosophy cards — inherit .aww-card but on dark bg */
.aww-philosophy {
    background: var(--bg-1);
    padding: 14rem 0;
}

/* Philosophy section header — centered */
.aww-philosophy__header {
    text-align: center;
    margin-bottom: 8rem;
}

.aww-philosophy__header .aww-h2 {
    max-width: 19ch;
    margin: 0 auto 2rem auto;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
}

.aww-philosophy__header .aww-lead {
    margin: 0 auto;
    text-align: center;
    color: var(--text);
}

/* ── About CTA (Contact Section) ──────────────────────────────────── */
.aww-about-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.aww-about-cta__left .aww-tag { margin-bottom: 1.6rem; }

.aww-about-cta__left .aww-h2 {
    font-size: clamp(3.6rem, 5vw, 5rem);
    margin-bottom: 2rem;
}

.aww-about-cta__left .aww-lead {
    font-size: 1.8rem;
    margin-bottom: 3.6rem;
}

.aww-about-cta__right {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 5rem;
    border-radius: 12px;
}

.aww-cta-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-hi);
}
.aww-cta-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.aww-cta-detail h5 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18rem;
    color: var(--teal);
    margin: 0 0 1rem 0;
}

.aww-cta-detail p,
.aww-cta-detail a {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: var(--text-hi);
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

.aww-cta-detail a:hover {
    color: var(--white);
    text-decoration: underline;
}

.aww-cta-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.aww-cta-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--teal);
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.aww-cta-links a i {
    font-size: 1rem;
    transition: transform var(--ease-out) 0.25s;
}

.aww-cta-links a:hover {
    color: var(--white);
    text-decoration: none;
}
.aww-cta-links a:hover i {
    transform: translate(3px, -3px);
}

/* ── Miscellaneous Utilities & Mobile Regressions ─────────────────── */
.aww-section--dark  { background: var(--bg-1); }
.aww-section--dark2 { background: var(--bg-2); }

@media (max-width: 800px) {
    .aww-section { padding: 8rem 0; }
    .aww-stats { gap: 4rem; }
    .aww-bg-section { background-attachment: scroll; }
    .aww-manifesto { padding: 10rem 0; }
    .aww-philosophy { padding: 10rem 0; }
    .aww-about-cta { grid-template-columns: 1fr; gap: 5rem; }
    .aww-about-cta__right { padding: 3rem; }
    
    .v1-hero__ctas { flex-direction: column; align-items: stretch; width: 100%; }
    .v1-hero__ctas .aww-btn, 
    .v1-hero__ctas .aww-btn-ghost { width: 100%; justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
    .aww-section { padding: 6rem 0; }
}
