/*!
 * 7AM-VISION — Contact (Cordon LIGHT design tokens + page styles)
 * Imported from the Claude Design project: "7AM-Vision Contact.dc.html".
 * Light theme, cyan accent (#16BDD1), navy text (#1C3A63).
 */
:root {
    /* neutrals */
    --slate-1000:#05070B; --slate-900:#0E121B; --slate-500:#4D5973; --slate-400:#66728F;
    --slate-300:#8C97B2; --slate-100:#E6E9F1; --slate-50:#F1F3F8; --slate-25:#F8F9FC; --white:#FFFFFF;
    --red-600:#D92C39;

    /* brand accent (cyan) */
    --azure-200:#BFE9EF; --azure-300:#8DDBE4; --azure-400:#46C7D6; --azure-500:#16BDD1;
    --azure-600:#0E97A8; --azure-700:#0B7A88;
    --azure-glow:rgba(22,189,209,0.42); --accent-soft:rgba(22,189,209,0.12);

    /* semantic — light */
    --bg-sunken:var(--slate-100); --bg-base:var(--slate-50); --surface-1:var(--white); --surface-2:var(--slate-25);
    --glass-bg:rgba(255,255,255,0.72); --glass-border:rgba(13,18,27,0.07);
    --border-subtle:rgba(13,18,27,0.06); --border-default:rgba(13,18,27,0.10); --border-strong:rgba(13,18,27,0.16);
    --text-primary:#1C3A63; --text-secondary:var(--slate-500); --text-tertiary:var(--slate-400);
    --shadow-xs:0 1px 2px rgba(13,18,27,0.06);
    --ring-focus:0 0 0 3px rgba(22,189,209,0.32);
    --ease-out:cubic-bezier(0.22,1,0.36,1);

    --font-sans:"Geist",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
    --font-mono:"Geist Mono",ui-monospace,"SFMono-Regular","Menlo",monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg-base); color: var(--text-primary); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--azure-500); color: #fff; }
:focus-visible { outline: 2px solid var(--azure-500); outline-offset: 2px; }
input::placeholder, textarea::placeholder { color: var(--text-tertiary); }

@keyframes amGlow { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .8; transform: scale(1.06); } }
@keyframes amBlink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes amPop { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }

/* interactive states (the design expressed these via style-hover / style-focus) */
.navlink { transition: color .15s var(--ease-out); }
.navlink:hover { color: var(--text-primary); }
.cta-dark { transition: background .2s var(--ease-out); }
.cta-dark:hover { background: #16304F; }
.field { transition: border-color .15s var(--ease-out), box-shadow .15s var(--ease-out); }
.field:focus { border-color: var(--azure-500); box-shadow: var(--ring-focus); }
.detail-card { transition: border-color .2s var(--ease-out); }
.detail-card:hover { border-color: var(--border-strong); }
.flink { transition: color .2s var(--ease-out); }
.flink:hover { color: var(--azure-600); }
.send-btn { transition: background .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.send-btn:hover { background: #16304F; box-shadow: 0 12px 28px -10px var(--azure-glow); }
.send-btn:disabled { opacity: .6; cursor: default; }
.ghost-btn { transition: border-color .2s var(--ease-out), background .2s var(--ease-out); }
.ghost-btn:hover { border-color: var(--azure-400); background: var(--surface-2); }

.is-hidden { display: none !important; }

/* responsive */
@media (max-width: 860px) {
    .ct-form { grid-template-columns: 1fr !important; }
    .ct-foot { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 620px) {
    .ct-fields { grid-template-columns: 1fr !important; }
    .ct-foot { grid-template-columns: 1fr !important; }
}

/* ---- mobile menu (burger + panel built by design-nav.js) ---- */
.am-burger { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: transparent; border: 1px solid var(--border-default); border-radius: 9px; cursor: pointer; }
.am-burger span { display: block; width: 18px; height: 2px; background: var(--text-primary); transition: transform .25s var(--ease-out), opacity .2s var(--ease-out); }
body.am-menu-open .am-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.am-menu-open .am-burger span:nth-child(2) { opacity: 0; }
body.am-menu-open .am-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.am-mobile-menu { display: none; flex-direction: column; padding: 6px 28px 16px; background: var(--surface-1); border-bottom: 1px solid var(--border-default); }
.am-mobile-menu a { padding: 13px 2px; font-size: 15px; font-weight: 500; color: var(--text-secondary); text-decoration: none; border-bottom: 1px solid var(--border-subtle); }
.am-mobile-menu a:last-child { border-bottom: 0; }
.am-mobile-menu a:hover { color: var(--text-primary); }
body.am-menu-open .am-mobile-menu { display: flex; }
@media (max-width: 760px) {
    .ct-nav { display: none !important; }
    .am-burger { display: flex; }
    header .cta-dark { display: none !important; }
}
