/* LockConnect launch site
   Corporate identity 24 July 2026
   Vault Navy #16284F, Midnight Navy #0B1830, Signal Red #C1121F,
   Verified Green #157A45, Alert Amber #F5A623, Slate #3A4657,
   Steel #5B6B82, Off White #F4F6F9 */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #16284F;
  --navy-dark: #0B1830;
  --red: #C1121F;
  --red-dark: #9C0E18;
  --green: #157A45;
  --green-soft: #E7F3EC;
  --amber: #F5A623;
  --amber-soft: #FEF4E2;
  --slate: #3A4657;
  --steel: #5B6B82;
  --offwhite: #F4F6F9;
  --line: #DCE2EB;
  --white: #FFFFFF;
  --head: 'Archivo', Arial, Helvetica, sans-serif;
  --body: 'Inter', Arial, Helvetica, sans-serif;
  --wrap: 1140px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(11,24,48,.06), 0 8px 24px rgba(11,24,48,.07);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.15rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--red); }
strong { font-weight: 700; color: var(--navy); }
img, svg { max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--white); padding: 12px 18px;
  font-weight: 600; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; color: var(--white); }

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand svg, .brand img { width: 30px; height: 34px; display: block; }
.brand span {
  font-family: var(--head); font-weight: 800; font-size: 1.28rem;
  color: var(--navy); letter-spacing: -.02em;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav a {
  font-size: .95rem; font-weight: 600; color: var(--navy);
  text-decoration: none; white-space: nowrap;
}
.nav a:hover { color: var(--red); }
@media (max-width: 860px) { .nav .hide-sm { display: none; } }
/* The sticky bar at the bottom already carries the action on small screens */
@media (max-width: 760px) { .nav .btn { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 8px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .15s, color .15s, transform .1s;
  line-height: 1.2; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-action { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-action:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(244,246,249,.5); }
.btn-ghost:hover { background: rgba(244,246,249,.12); color: var(--white); border-color: var(--white); }
.btn-outline { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-wide { width: 100%; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 82% -10%, rgba(22,40,79,.85), transparent 70%),
    linear-gradient(160deg, #16284F 0%, #0B1830 100%);
  color: var(--offwhite);
  padding: 66px 0 74px;
}
.hero h1 { color: var(--white); max-width: 17ch; }
.hero .lede { font-size: 1.18rem; color: #C9D3E2; max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: #9FB2CC; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 12px; max-width: 62ch; }
.hero-points li { position: relative; padding-left: 30px; color: #D5DEEA; font-size: 1rem; }
.hero-points li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 2px var(--navy-dark);
}

/* Trust strip */
.strip { background: var(--navy-dark); color: #B9C6D8; padding: 18px 0; font-size: .95rem; }
.strip-in { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; text-align: center; }
.strip b { color: var(--white); font-weight: 700; }

/* Sections */
section { padding: 62px 0; }
section.tight { padding: 44px 0; }
.bg-soft { background: var(--offwhite); }
.bg-navy { background: var(--navy); color: #D5DEEA; }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.sec-head { max-width: 68ch; margin-bottom: 34px; }
.sec-head p { color: var(--steel); font-size: 1.08rem; }
.bg-navy .sec-head p { color: #B9C6D8; }

/* Cards */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card-num {
  font-family: var(--head); font-weight: 800; font-size: .85rem;
  color: var(--white); background: var(--navy);
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.bg-navy .card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
  color: #C7D3E3;
}
.bg-navy .card h3 { color: var(--white); }
.bg-navy .card-num { background: var(--white); color: var(--navy); }
.card-link {
  display: block; text-decoration: none; color: inherit;
  transition: border-color .15s, transform .15s;
}
.card-link:hover { border-color: var(--navy); transform: translateY(-2px); color: inherit; }
.card-link h3 { color: var(--navy); }
.card-link .more { font-weight: 700; color: var(--navy); font-size: .95rem; }
.card-link:hover .more { color: var(--red); }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--head); font-weight: 700; font-size: .76rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.badge-verified { background: var(--green); color: var(--white); }
.badge-lasa { background: var(--navy); color: var(--white); }
.badge-claimed { background: transparent; color: var(--navy); border: 2px solid var(--navy); }

/* Alert */
.alert {
  background: var(--amber-soft); border-left: 5px solid var(--amber);
  border-radius: 8px; padding: 20px 22px; color: var(--navy-dark);
}
.alert h3 { margin-bottom: .4em; }
.alert p:last-child { margin-bottom: 0; }

.note {
  background: var(--green-soft); border-left: 5px solid var(--green);
  border-radius: 8px; padding: 20px 22px; color: var(--navy-dark);
}
.note p:last-child { margin-bottom: 0; }

/* Tables */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 1rem; min-width: 520px; }
caption { text-align: left; padding: 16px 18px; color: var(--steel); font-size: .92rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--navy); color: var(--white); font-family: var(--head); font-weight: 700; font-size: .95rem; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #FAFBFD; }
td.price { font-variant-numeric: tabular-lining; font-weight: 700; color: var(--navy); white-space: nowrap; }

/* Suburb list */
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li {
  background: var(--white); border: 1px solid var(--line); color: var(--slate);
  padding: 8px 14px; border-radius: 100px; font-size: .93rem;
}
.bg-navy .chips li { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #D5DEEA; }

/* FAQ */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-family: var(--head);
  font-weight: 700; color: var(--navy); font-size: 1.04rem;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; line-height: 1; color: var(--steel); flex-shrink: 0;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--navy); }
.faq details[open] summary { color: var(--navy); }
.faq .answer { padding: 0 22px 20px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* Forms */
.form-wrap { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: .3em; }
.form-card .sub { color: var(--steel); font-size: .98rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .93rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--slate);
  padding: 12px 14px; border: 1px solid #C3CCD9; border-radius: 8px;
  background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,40,79,.12); outline: none;
}
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.hint { font-size: .86rem; color: var(--steel); margin: 10px 0 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--steel); margin: 4px 0 18px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }
.tel { font-variant-numeric: tabular-lining; }

/* Footer */
.site-foot { background: var(--navy-dark); color: #93A4BC; padding: 54px 0 30px; font-size: .95rem; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.site-foot h4 { color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-foot a { color: #B9C6D8; text-decoration: none; }
.site-foot a:hover { color: var(--white); text-decoration: underline; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand svg, .foot-brand img { width: 28px; height: 32px; }
.foot-brand span { font-family: var(--head); font-weight: 800; font-size: 1.2rem; color: var(--white); }
.foot-bottom {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; font-size: .88rem;
}

/* Breadcrumbs */
.crumbs { font-size: .88rem; color: var(--steel); padding: 16px 0 0; }
.crumbs a { color: var(--steel); }
.crumbs span { margin: 0 7px; opacity: .6; }

/* Sticky action bar on small screens */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--navy-dark); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none; box-shadow: 0 -4px 18px rgba(11,24,48,.28);
}
.action-bar .btn { width: 100%; padding: 15px 20px; font-size: 1.02rem; }
@media (max-width: 760px) {
  .action-bar { display: block; }
  body { padding-bottom: 78px; }
}

.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.25em; }
.prose li { margin-bottom: .5em; }
.lead { font-size: 1.14rem; color: var(--slate); }
.small { font-size: .88rem; color: var(--steel); }
.center { text-align: center; }
.mt0 { margin-top: 0; }
.mb0 { margin-bottom: 0; }
