:root {
  color-scheme: light;
  --bg: #faf9fe;
  --surface: #ffffff;
  --surface-soft: #f4f3f8;
  --surface-strong: #e9e7ed;
  --text: #1a1b1f;
  --muted: #414755;
  --quiet: #717786;
  --line: #c1c6d7;
  --hairline: #e5e5ea;
  --blue: #007aff;
  --blue-dark: #0058bc;
  --blue-soft: #d8e2ff;
  --indigo: #4c4aca;
  --success: #159947;
  --warning: #9a5b00;
  --shadow: 0 10px 25px rgb(0 0 0 / 5%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
a {
  font: inherit;
}

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

button:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.siteNav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgb(229 231 235 / 76%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}

.brandMark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}

.brandIcon,
.miniLogo,
.stepIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #ffffff;
}

.brandIcon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.navLinks,
.siteFooter nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navLinks a,
.siteFooter nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.navLinks a:hover,
.siteFooter nav a:hover {
  color: var(--blue);
}

.heroSection,
.sectionBand,
.qualitySection,
.locatorSection,
.appShell,
.siteFooter {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.setupMain {
  padding: 18px 0 36px;
}

.heroSection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: 36px;
  min-height: auto;
  padding: 34px 0 44px;
}

.heroCopy {
  max-width: 660px;
}

.eyebrow,
.pill {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heroCopy h1,
.sectionHeader h2,
.qualityCopy h2,
.locatorSection h2,
.appHeader h2 {
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}

.heroCopy h1 {
  max-width: 620px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.heroText {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.primaryButton,
.secondaryButton,
.iconButton,
.fileButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.primaryButton {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgb(0 122 255 / 22%);
}

.navCta {
  min-height: 40px;
  padding-inline: 14px;
  box-shadow: none;
}

.primaryButton:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}

.primaryButton:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.secondaryButton {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.secondaryButton:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.iconButton {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.iconButton:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.socialProof {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  color: var(--muted);
}

.socialProof span {
  width: 34px;
  height: 34px;
  margin-right: -9px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 36%), rgb(255 255 255 / 0)),
    var(--blue);
  box-shadow: 0 8px 18px rgb(15 23 42 / 10%);
}

.socialProof span:nth-child(2) {
  background-color: #16a34a;
}

.socialProof span:nth-child(3) {
  margin-right: 12px;
  background-color: #f59e0b;
}

.socialProof p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
}

.phoneStage {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 6px 0 34px;
}

.phoneMock {
  width: min(100%, 320px);
  overflow: hidden;
  border: 9px solid #111827;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgb(15 23 42 / 18%);
}

.phoneTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #eef2f7;
  color: var(--blue);
}

.phoneTop > div {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 0.82rem;
}

.miniLogo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
}

.phoneChat {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  gap: 10px;
  padding: 16px 12px;
  background: #f8fafc;
}

.phoneBubble {
  max-width: 78%;
  border-radius: 18px;
  padding: 9px 12px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.phoneBubble.sent {
  align-self: flex-end;
  background: var(--blue);
  color: #ffffff;
}

.phoneBubble.received {
  align-self: flex-start;
  background: #e9eef5;
  color: var(--text);
}

.photoTile {
  align-self: flex-end;
  width: 142px;
  height: 106px;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 18px;
  background: #dbeafe;
  box-shadow: 0 12px 24px rgb(15 23 42 / 12%);
}

.photoSky {
  width: 100%;
  height: 62%;
  background:
    radial-gradient(circle at 24% 34%, #ffffff 0 13px, transparent 14px),
    linear-gradient(180deg, #95caff, #dbeafe);
}

.photoPeople {
  width: 100%;
  height: 38%;
  background:
    radial-gradient(circle at 32% 44%, #111827 0 12px, transparent 13px),
    radial-gradient(circle at 57% 38%, #1f2937 0 13px, transparent 14px),
    linear-gradient(150deg, #65a30d, #15803d);
}

.phoneComposer {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  margin: 0 12px 12px;
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  color: #98a2b3;
}

.phoneComposer span {
  font-size: 0.9rem;
}

.readyBadge {
  position: absolute;
  right: 4px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.readyBadge strong {
  color: var(--success);
  font-size: 0.96rem;
}

.readyBadge span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.sectionBand,
.qualitySection,
.locatorSection,
.testimonialBand,
.appShell {
  margin-top: 16px;
}

.sectionBand {
  padding: 30px 0 4px;
}

.sectionHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.sectionHeader h2,
.qualityCopy h2,
.locatorSection h2,
.appHeader h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.05;
}

.sectionHeader span {
  width: min(38%, 320px);
  height: 1px;
  background: var(--line);
}

.stepGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stepCard {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgb(15 23 42 / 5%);
}

.stepIcon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 12px;
}

.stepCard h3 {
  margin: 0 0 6px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.2rem;
}

.stepCard p,
.qualityCopy p,
.locatorSection p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.qualitySection {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  padding: 40px 0 24px;
}

.printPreview {
  position: relative;
  min-height: 290px;
}

.printStack {
  position: absolute;
  width: min(82%, 340px);
  aspect-ratio: 4 / 3;
  border: 12px solid #ffffff;
  border-bottom-width: 34px;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgb(15 23 42 / 16%);
}

.printOne {
  top: 34px;
  left: 22px;
  transform: rotate(-7deg);
  background:
    radial-gradient(circle at 28% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(160deg, #93c5fd 0 46%, #22c55e 47% 100%);
}

.printTwo {
  right: 20px;
  bottom: 28px;
  transform: rotate(8deg);
  background:
    radial-gradient(circle at 68% 28%, #fde68a 0 20px, transparent 21px),
    linear-gradient(160deg, #bfdbfe 0 48%, #0f766e 49% 100%);
}

.qualityCopy {
  max-width: 540px;
}

.qualityCopy ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.qualityCopy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.5;
}

.qualityCopy li svg {
  color: var(--success);
  margin-top: 2px;
}

.locatorSection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.mapPlaceholder {
  display: grid;
  min-height: 160px;
  place-items: center;
  border: 1px solid #d9e7ff;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgb(0 122 255 / 9%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(0 122 255 / 9%) 1px, transparent 1px),
    var(--blue-soft);
  background-size: 38px 38px;
  color: var(--blue);
}

.mapPlaceholder svg {
  width: 58px;
  height: 58px;
}

.testimonialBand {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 40px 36px;
  border-radius: 24px;
  background: var(--blue);
  color: #ffffff;
}

.quoteMark {
  position: absolute;
  top: -24px;
  left: 28px;
  color: rgb(255 255 255 / 16%);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.testimonialBand blockquote {
  position: relative;
  max-width: 840px;
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(1.55rem, 3.3vw, 2.6rem);
  font-weight: 750;
  line-height: 1.08;
}

.testimonialBand p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 78%);
  font-weight: 650;
}

.appShell {
  margin-bottom: 36px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.appHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px 14px;
}

.appHeader h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
}

.appHeader h1 {
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.appHeader p:last-child {
  margin: 5px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  margin-bottom: 12px;
}

.tab {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.tab.isActive {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgb(15 23 42 / 8%);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
}

.gridForm {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.locationSearch {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.zipSearchForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) auto;
  gap: 12px;
  align-items: end;
}

.zipSearchForm h2,
.manualLocationHeader h2,
.phoneLinkForm h2 {
  margin: 0 0 6px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
}

.zipSearchForm p,
.manualLocationHeader p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.storeResults {
  display: grid;
  gap: 8px;
}

.storeResult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.storeResult h3 {
  margin: 0 0 6px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
}

.storeResult p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.storeResultActions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.storeResultActions > span {
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 800;
}

.manualLocationHeader {
  margin-bottom: 10px;
}

label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  background: #ffffff;
}

input:focus {
  outline: 3px solid rgb(0 122 255 / 16%);
  border-color: var(--blue);
}

.wide {
  grid-column: span 3;
}

.accountMeta,
.comingSoon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.accountMeta strong,
.comingSoon strong {
  display: block;
  margin-bottom: 4px;
}

.accountMeta p,
.comingSoon p,
.phoneLinkForm p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.phonePanel {
  display: grid;
  gap: 12px;
}

.phoneLinkForm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px) auto;
  gap: 12px;
  align-items: end;
}

.phoneLinkForm h3 {
  margin: 0 0 6px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
}

.comingSoon {
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #d9e7ff;
  border-radius: 12px;
  background: var(--blue-soft);
}

.tableWrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

td {
  font-size: 0.92rem;
}

.chatPanel {
  overflow: hidden;
  padding: 0;
}

.chatMessages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: min(50vh, 460px);
  min-height: 280px;
  overflow-y: auto;
  padding: 12px;
  background: #f8fafc;
}

.chatEmpty {
  margin: auto;
  color: var(--muted);
  text-align: center;
}

.message {
  display: grid;
  gap: 7px;
  max-width: min(76%, 680px);
}

.message.user {
  align-self: flex-end;
}

.message.assistant {
  align-self: flex-start;
}

.bubble {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 9px 11px;
  white-space: pre-wrap;
  line-height: 1.45;
  background: #ffffff;
}

.message.user .bubble {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.chatPhoto {
  max-width: min(260px, 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.chatTime {
  color: var(--muted);
  font-size: 0.75rem;
}

.message.user .chatTime {
  text-align: right;
}

.chatForm {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.composer {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.fileButton {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
}

.fileButton:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.fileButton input {
  display: none;
}

.photoPreview {
  display: grid;
  grid-template-columns: 96px 42px;
  gap: 10px;
  align-items: start;
}

.photoPreview img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.sendButton {
  min-width: 98px;
}

#toast {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--warning);
  font-weight: 700;
}

.setupBody {
  background: linear-gradient(180deg, #faf9fe 0%, #f5f4fa 100%);
}

.setupBody .siteNav {
  background: rgb(250 249 254 / 92%);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgb(0 0 0 / 2%);
}

.setupBody .brandMark {
  color: var(--indigo);
  font-size: 1.25rem;
  font-weight: 800;
}

.setupBody .brandIcon {
  display: none;
}

.setupMain {
  min-height: calc(100vh - 72px);
}

.setupBody .appShell {
  max-width: 1180px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.setupBody .appHeader {
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
  padding: 18px 0 14px;
}

.setupBody .appHeader h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.setupBody .appHeader .eyebrow {
  margin-bottom: 6px;
}

.setupBody .tabs {
  width: min(100%, 720px);
  margin: 0 auto 22px;
  border: 0;
  background: var(--surface-strong);
  border-radius: 10px;
}

.setupBody .tab {
  min-height: 38px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.setupBody .tab.isActive {
  color: var(--blue-dark);
  box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
}

.setupBody .panel {
  border-color: var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.accountPanel,
.phonePanel {
  width: min(100%, 480px);
  margin-inline: auto;
  padding: 38px;
}

.authShell {
  width: min(100%, 820px);
  padding: 34px;
}

.authMain {
  min-height: calc(100vh - 88px);
  align-items: center;
}

.authGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.authCard {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.authCard h2 {
  margin: 0 0 4px;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
}

.sectionIntro {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 26px;
  text-align: center;
}

.introIcon,
.assistantAvatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo);
  color: #ffffff;
}

.introIcon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
}

.sectionIntro h2,
.ordersHeader h2,
.chatHeader h2 {
  margin: 0;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  color: var(--text);
}

.sectionIntro h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.sectionIntro p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.accountPanel .gridForm,
.phonePanel .phoneLinkForm {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
}

.accountPanel .primaryButton,
.phonePanel .primaryButton {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
}

.loginForm {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.loginForm strong,
.loginForm p {
  margin: 0;
}

.loginForm p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.loginForm .secondaryButton {
  min-height: 44px;
}

.setupBody label {
  color: var(--text);
  font-weight: 650;
}

.setupBody input {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 10px;
  padding-inline: 14px;
  background: #fbfaff;
  color: var(--text);
  font-size: 1rem;
}

.setupBody input::placeholder {
  color: #777f90;
}

.setupBody input:focus {
  outline: 0;
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 1px var(--blue-dark);
}

.accountMeta {
  margin-top: 26px;
  padding-top: 22px;
  border-top-color: var(--line);
}

.locationPanel {
  overflow: hidden;
  padding: 0;
}

.storeWorkspace {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  min-height: 650px;
}

.storeSide {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: #ffffff;
}

.locationSearch {
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.zipSearchForm {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.zipSearchForm h2,
.manualLocationHeader h2 {
  font-size: 1.7rem;
}

.zipSearchForm p,
.manualLocationHeader p {
  color: var(--muted);
}

.storeResults {
  gap: 12px;
}

.storeResult {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
  border-color: var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.storeResult h3 {
  font-size: 1.08rem;
}

.storeResultActions {
  grid-template-columns: 1fr;
  justify-items: stretch;
}

.storeResultActions > span {
  justify-self: end;
  color: var(--blue-dark);
}

.storeResultActions .secondaryButton {
  width: 100%;
  min-height: 44px;
  border-color: transparent;
  background: var(--surface-strong);
  color: var(--text);
}

.storeResultActions .secondaryButton:hover {
  background: var(--blue);
  color: #ffffff;
}

.manualLocationHeader {
  margin-top: 8px;
  margin-bottom: 0;
}

.locationPanel .gridForm {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.locationPanel .wide {
  grid-column: span 2;
}

.storeMapPanel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 70%) 13%, transparent 13% 18%, rgb(255 255 255 / 70%) 18% 20%, transparent 20%),
    linear-gradient(30deg, rgb(255 255 255 / 78%) 15%, transparent 15% 22%, rgb(255 255 255 / 78%) 22% 24%, transparent 24%),
    linear-gradient(145deg, #d9fbf3, #8fd9ea 60%, #63c4dc);
}

.mapCard {
  position: relative;
  width: min(78%, 470px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 78%) 2px, transparent 2px),
    linear-gradient(0deg, rgb(255 255 255 / 78%) 2px, transparent 2px),
    linear-gradient(135deg, #f8fff7, #dcf7e5 48%, #a3e2ee 49%, #bdf4fb);
  background-size: 68px 68px, 68px 68px, auto;
  box-shadow: 0 18px 40px rgb(15 23 42 / 22%);
  transform: rotate(-2deg);
}

.mapPin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 5px solid rgb(255 255 255 / 75%);
  border-radius: 999px 999px 999px 6px;
  background: #25a9cf;
  color: #ffffff;
  transform: rotate(-45deg);
  box-shadow: 0 10px 18px rgb(15 23 42 / 22%);
}

.mapPin svg {
  transform: rotate(45deg);
}

.pinOne {
  top: 17%;
  right: 13%;
}

.pinTwo {
  top: 48%;
  right: 29%;
}

.pinThree {
  bottom: 16%;
  left: 20%;
}

.mapCallout {
  position: absolute;
  top: 28%;
  left: 28%;
  padding: 14px 18px;
  border: 1px solid var(--blue-dark);
  border-radius: 10px;
  background: #ffffff;
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 8px 18px rgb(15 23 42 / 10%);
}

.mapControls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.mapControls span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgb(15 23 42 / 16%);
  font-size: 1.45rem;
}

.phonePanel {
  gap: 18px;
}

.phonePanel .sectionIntro {
  margin-bottom: 10px;
}

.phoneLinkForm > div:first-child {
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface-soft);
}

.comingSoon {
  margin-top: 0;
  border-color: var(--hairline);
  background: var(--surface-soft);
}

.chatPanel {
  width: min(100%, 920px);
  margin-inline: auto;
  border-radius: 16px;
}

.chatHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.assistantAvatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.chatHeader h2 {
  font-size: 1.18rem;
}

.chatHeader p {
  margin: 2px 0 0;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 650;
}

.chatHeaderActions {
  display: inline-flex;
  gap: 18px;
  margin-left: auto;
  color: var(--blue-dark);
}

.chatMessages {
  height: min(58vh, 540px);
  background: #f1f2f8;
}

.chatEmpty {
  max-width: 280px;
  line-height: 1.45;
}

.bubble {
  border-color: var(--line);
  border-radius: 18px 18px 18px 4px;
  background: rgb(255 255 255 / 78%);
}

.message.user .bubble {
  border-radius: 18px 18px 4px 18px;
}

.chatForm {
  padding: 18px 22px 22px;
}

.composer {
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaff;
}

.composer input {
  min-height: 36px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.composer input:focus {
  box-shadow: none;
}

.composer .fileButton {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--quiet);
}

.sendButton {
  width: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 999px;
}

.sendButton span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.termsCheck {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.termsCheck input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.ordersPanel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.ordersHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.ordersHeader h2 {
  font-size: 2rem;
}

.ordersHeader p {
  margin: 6px 0 0;
  color: var(--muted);
}

.orderFilters {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(108px, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: var(--surface-strong);
}

.orderFilters span {
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--text);
  text-align: center;
  font-weight: 650;
}

.orderFilters .isActive {
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
}

.ordersPanel .tableWrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.ordersPanel table {
  min-width: 720px;
}

.ordersPanel th,
.ordersPanel td {
  padding: 18px 20px;
}

.ordersPanel tr:last-child td {
  border-bottom: 0;
}

.orderIdCell strong {
  display: block;
  color: var(--text);
}

.orderIdCell span {
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
}

.statusPill {
  display: inline-flex;
  align-items: center;
  min-width: 106px;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.statusPill.ready_for_pickup,
.statusPill.submitted {
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.statusPill.printing {
  background: #e2dfff;
  color: var(--indigo);
}

.statusPill.failed,
.statusPill.cancelled {
  background: #ffdad6;
  color: #93000a;
}

.emptyOrders {
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.siteFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
}

.siteFooter p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 920px) {
  .heroSection,
  .qualitySection,
  .locatorSection {
    grid-template-columns: 1fr;
  }

  .heroSection {
    min-height: auto;
    padding-top: 32px;
  }

  .heroCopy {
    max-width: none;
  }

  .phoneStage {
    justify-items: center;
  }

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

  .stepCard {
    min-height: auto;
  }

  .stepIcon {
    margin-bottom: 14px;
  }

  .qualitySection {
    gap: 20px;
  }

  .locatorSection {
    padding: 22px;
  }

  .mapPlaceholder {
    min-height: 140px;
  }

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

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

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

  .storeSide {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .storeMapPanel {
    min-height: 360px;
  }

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

  .storeResultActions {
    justify-items: stretch;
  }
}

@media (max-width: 720px) {
  .siteNav {
    padding-inline: 16px;
  }

  .navLinks {
    display: none;
  }

  .heroSection,
  .sectionBand,
  .qualitySection,
  .locatorSection,
  .appShell,
  .siteFooter,
  .testimonialBand {
    width: min(100% - 20px, 1120px);
  }

  .heroSection {
    gap: 24px;
    padding: 26px 0 34px;
  }

  .heroCopy h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .heroText {
    font-size: 1rem;
  }

  .heroActions,
  .accountMeta,
  .comingSoon,
  .siteFooter {
    flex-direction: column;
    align-items: stretch;
  }

  .heroActions .primaryButton,
  .heroActions .secondaryButton,
  .comingSoon .secondaryButton {
    width: 100%;
  }

  .phoneMock {
    border-width: 9px;
    border-radius: 36px;
  }

  .readyBadge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin-top: -10px;
  }

  .sectionBand {
    padding-top: 12px;
  }

  .sectionHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .sectionHeader span {
    width: 100%;
  }

  .printPreview {
    min-height: 240px;
  }

  .testimonialBand {
    padding: 32px 18px;
  }

  .appShell {
    padding: 10px;
    border-radius: 14px;
  }

  .setupBody .appShell {
    width: min(100% - 20px, 1120px);
    padding: 0;
  }

  .accountPanel,
  .phonePanel {
    padding: 28px 18px;
  }

  .authShell {
    padding: 24px 16px;
  }

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

  .setupBody .appHeader {
    padding-inline: 4px;
  }

  .appHeader {
    padding: 2px 2px 12px;
  }

  .tabs {
    gap: 3px;
    padding: 3px;
  }

  .tab {
    min-height: 38px;
    padding: 0 4px;
    font-size: 0.82rem;
  }

  .panel {
    padding: 12px;
  }

  .setupBody .locationPanel,
  .setupBody .chatPanel,
  .setupBody .ordersPanel {
    padding: 0;
  }

  .storeSide {
    padding: 18px;
  }

  .storeMapPanel {
    display: none;
  }

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

  .wide {
    grid-column: span 1;
  }

  .locationPanel .gridForm {
    grid-template-columns: 1fr;
  }

  .locationPanel .wide {
    grid-column: span 1;
  }

  .ordersHeader {
    align-items: stretch;
    flex-direction: column;
  }

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

  .gridForm .primaryButton,
  .phoneLinkForm .primaryButton,
  .zipSearchForm .primaryButton,
  .storeResultActions .secondaryButton {
    width: 100%;
  }

  .chatMessages {
    height: calc(100vh - 300px);
    min-height: 280px;
    padding: 10px;
  }

  .message {
    max-width: 88%;
  }

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

  .sendButton {
    width: 46px;
    min-width: 46px;
    padding: 0;
  }

  .sendButton span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (max-width: 420px) {
  .socialProof {
    align-items: flex-start;
  }

  .socialProof p {
    line-height: 1.35;
  }

  .phoneChat {
    min-height: 310px;
  }

  .appHeader {
    align-items: stretch;
    flex-direction: column;
  }

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

/* Reference design alignment: Digital Clarity screens from the supplied design pack. */
body:not(.setupBody) .siteNav {
  position: sticky;
  min-height: 54px;
  padding: 10px 20px;
  border-bottom: 1px solid var(--hairline);
  background: #faf9fe;
  box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
  backdrop-filter: none;
}

body:not(.setupBody) .brandMark {
  color: var(--indigo);
  font-size: 1.05rem;
}

body:not(.setupBody) .brandIcon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue);
}

body:not(.setupBody) .heroSection {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: start;
  gap: clamp(24px, 6vw, 88px);
  width: min(100% - 40px, 1180px);
  min-height: auto;
  padding: clamp(44px, 9vh, 86px) 0 56px;
}

body:not(.setupBody) .eyebrow,
body:not(.setupBody) .pill {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
}

body:not(.setupBody) .heroCopy h1 {
  max-width: 500px;
  font-size: clamp(2.2rem, 4.6vw, 3.35rem);
  line-height: 1.08;
}

body:not(.setupBody) .heroText {
  max-width: 460px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
}

body:not(.setupBody) .heroActions {
  margin-top: 24px;
}

body:not(.setupBody) .primaryButton {
  min-height: 46px;
  padding-inline: 20px;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 22px rgb(0 122 255 / 22%);
}

body:not(.setupBody) .socialProof {
  margin-top: 18px;
}

body:not(.setupBody) .socialProof span {
  width: 20px;
  height: 20px;
  border-color: #faf9fe;
  background: #e3e2e7;
  box-shadow: none;
}

body:not(.setupBody) .socialProof span:nth-child(2),
body:not(.setupBody) .socialProof span:nth-child(3) {
  background: #dad9df;
}

body:not(.setupBody) .socialProof p {
  color: var(--quiet);
  font-size: 0.75rem;
  font-weight: 600;
}

body:not(.setupBody) .phoneStage {
  padding: 12px 0 40px;
}

body:not(.setupBody) .phoneMock {
  width: min(100%, 310px);
  border: 6px solid #c1c6d7;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgb(40 48 74 / 18%);
}

body:not(.setupBody) .phoneTop {
  padding: 12px 14px 9px;
  border-bottom: 0;
}

body:not(.setupBody) .phoneChat {
  min-height: 285px;
  background: #ffffff;
}

body:not(.setupBody) .phoneBubble {
  font-size: 0.78rem;
}

body:not(.setupBody) .photoTile {
  width: 138px;
  height: 104px;
}

body:not(.setupBody) .phoneComposer {
  margin-bottom: 14px;
  background: #f4f3f8;
}

body:not(.setupBody) .readyBadge {
  right: -20px;
  bottom: 12px;
  max-width: 176px;
  padding: 11px 13px;
  border-color: var(--hairline);
}

body:not(.setupBody) .sectionBand,
body:not(.setupBody) .qualitySection,
body:not(.setupBody) .locatorSection,
body:not(.setupBody) .testimonialBand {
  width: min(100% - 40px, 1180px);
}

body:not(.setupBody) .sectionBand {
  padding: 48px 0 22px;
}

body:not(.setupBody) .sectionHeader {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 32px;
  text-align: center;
}

body:not(.setupBody) .sectionHeader h2 {
  font-size: clamp(1.65rem, 2.8vw, 2rem);
}

body:not(.setupBody) .sectionHeader span {
  width: 72px;
  height: 3px;
  background: var(--blue);
}

body:not(.setupBody) .stepGrid {
  gap: 24px;
}

body:not(.setupBody) .stepCard {
  min-height: 192px;
  padding: 26px;
  border-color: var(--hairline);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgb(31 41 55 / 4%);
}

body:not(.setupBody) .stepIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-fixed, #d8e2ff);
  color: var(--blue);
}

body:not(.setupBody) .qualitySection {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 72px);
  padding: 56px 0 34px;
}

body:not(.setupBody) .printPreview {
  min-height: 300px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 62%), rgb(255 255 255 / 20%)),
    linear-gradient(135deg, #f4f3f8, #ffffff);
  box-shadow: 0 14px 34px rgb(40 48 74 / 9%);
}

body:not(.setupBody) .locatorSection {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 56px;
  padding: 40px 0 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body:not(.setupBody) .mapPlaceholder {
  min-height: 245px;
  border-color: var(--hairline);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 64%) 13%, transparent 13% 18%, rgb(255 255 255 / 64%) 18% 20%, transparent 20%),
    linear-gradient(30deg, rgb(255 255 255 / 74%) 15%, transparent 15% 22%, rgb(255 255 255 / 74%) 22% 24%, transparent 24%),
    linear-gradient(145deg, #d9fbf3, #8fd9ea 60%, #63c4dc);
  box-shadow: 0 20px 42px rgb(40 48 74 / 12%);
}

body:not(.setupBody) .testimonialBand {
  margin-top: 30px;
  padding: 56px 36px;
  border-radius: 0;
  text-align: center;
}

body:not(.setupBody) .testimonialBand blockquote {
  margin-inline: auto;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
}

.authBody {
  min-height: 100vh;
  background: #faf9fe;
}

.authBody .siteNav {
  position: static;
  justify-content: center;
  min-height: auto;
  padding: 28px 16px 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.authBody .navLinks {
  display: none;
}

.authBody .brandMark {
  color: var(--indigo);
  font-size: 1.72rem;
  font-weight: 800;
}

.authMain {
  display: grid;
  min-height: auto;
  padding: 34px 16px 48px;
  place-items: start center;
}

.authShell {
  width: min(100%, 560px);
  padding: 0;
}

.authCard {
  display: grid;
  gap: 24px;
  padding: 42px 60px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.authIntro {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  text-align: center;
}

.authIntro h1 {
  margin: 0;
  color: var(--text);
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.08;
}

.authIntro p {
  max-width: 360px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.35;
}

.authForm,
.loginInline {
  display: grid;
  gap: 18px;
}

.authField {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 650;
}

.authField small {
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 650;
}

.fieldControl {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaff;
  color: var(--quiet);
}

.fieldControl:focus-within {
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 1px var(--blue-dark);
}

.fieldControl input {
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

.fieldControl input:focus {
  box-shadow: none;
}

.authTerms {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.authTerms input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.authSubmit,
.loginInline .secondaryButton {
  width: 100%;
  min-height: 58px;
}

.loginDisclosure {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.loginDisclosure summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  text-align: center;
}

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

.loginDisclosure summary:focus {
  outline: none;
}

.loginDisclosure summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.loginDisclosure summary strong {
  color: var(--blue-dark);
  font-weight: 800;
}

.loginDisclosure[open] summary {
  margin-bottom: 14px;
}

.loginInline {
  gap: 14px;
}

.loginInline .secondaryButton {
  border-color: var(--blue);
  color: var(--blue);
}

#toast {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--warning);
  text-align: center;
}

.setupBody:not(.authBody) {
  background: #faf9fe;
}

.setupBody:not(.authBody) .siteNav {
  position: sticky;
  min-height: 54px;
  padding: 10px 30px;
  border-bottom: 1px solid var(--hairline);
  background: #faf9fe;
  box-shadow: 0 1px 3px rgb(0 0 0 / 5%);
  backdrop-filter: none;
}

.setupBody:not(.authBody) .brandMark {
  color: var(--indigo);
  font-size: 1.45rem;
}

.setupBody:not(.authBody) .setupMain {
  min-height: calc(100vh - 54px);
  padding: 0;
}

.setupBody:not(.authBody) .appShell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.setupBody:not(.authBody) .appHeader {
  width: min(100% - 60px, 1180px);
  max-width: none;
  margin-inline: auto;
  padding: 20px 0 12px;
}

.setupBody:not(.authBody) .appHeader h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
}

.setupBody:not(.authBody) .tabs {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  width: 100%;
  margin: 0;
  padding: 0 30px 14px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
}

.setupBody:not(.authBody) .tab {
  min-height: 36px;
  padding: 0 0 4px;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  box-shadow: none;
}

.setupBody:not(.authBody) .tab.isActive {
  color: var(--blue-dark);
  box-shadow: inset 0 -2px 0 var(--blue-dark);
}

.setupBody:not(.authBody) .panel {
  width: min(100% - 32px, 1120px);
  margin: 30px auto 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.setupBody:not(.authBody) .accountPanel,
.setupBody:not(.authBody) .phonePanel {
  width: min(100% - 32px, 480px);
  padding: 42px 60px;
  box-shadow: var(--shadow);
}

.setupBody:not(.authBody) .sectionIntro {
  gap: 8px;
  margin-bottom: 24px;
}

.setupBody:not(.authBody) .sectionIntro h2 {
  font-size: 2rem;
}

.setupBody:not(.authBody) .locationPanel {
  width: 100%;
  margin: 0;
  border-width: 0 0 1px;
  border-radius: 0;
  overflow: hidden;
}

.setupBody:not(.authBody) .storeWorkspace {
  grid-template-columns: minmax(360px, 450px) minmax(0, 1fr);
  min-height: calc(100vh - 172px);
}

.setupBody:not(.authBody) .storeSide {
  gap: 16px;
  padding: 28px 30px;
  overflow-y: auto;
}

.setupBody:not(.authBody) .zipSearchForm {
  gap: 18px;
}

.setupBody:not(.authBody) .zipSearchForm h2 {
  margin: 0 0 18px;
  font-size: 1.9rem;
}

.setupBody:not(.authBody) .storeResults {
  display: grid;
  gap: 14px;
}

.setupBody:not(.authBody) .storeResult {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.setupBody:not(.authBody) .storeResultActions .secondaryButton {
  min-height: 54px;
  margin-top: 6px;
  border: 0;
  background: var(--blue);
  color: #ffffff;
}

.setupBody:not(.authBody) .storeMapPanel {
  min-height: 100%;
}

.setupBody:not(.authBody) .mapCard {
  width: min(68%, 520px);
  border-radius: 44px;
}

.setupBody:not(.authBody) .chatPanel {
  width: min(100% - 32px, 900px);
  overflow: hidden;
  padding: 0;
}

.setupBody:not(.authBody) .chatHeader {
  padding: 18px 30px;
  background: rgb(255 255 255 / 82%);
}

.setupBody:not(.authBody) .chatMessages {
  height: min(44vh, 420px);
  min-height: 320px;
  padding: 24px 30px;
  background: #f2f2f7;
}

.message.user .bubble {
  border-bottom-right-radius: 4px;
  background: var(--blue);
  color: #ffffff;
}

.message.assistant .bubble {
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  background: var(--surface-strong);
}

.setupBody:not(.authBody) .chatForm {
  padding: 18px 30px 22px;
}

.setupBody:not(.authBody) .composer {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfaff;
}

.setupBody:not(.authBody) .composer input {
  min-height: 40px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.setupBody:not(.authBody) .sendButton {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  box-shadow: none;
}

.setupBody:not(.authBody) .sendButton span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.setupBody:not(.authBody) .termsCheck {
  margin-top: 8px;
}

.setupBody:not(.authBody) .ordersPanel {
  width: min(100% - 32px, 1080px);
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

@media (max-width: 920px) {
  body:not(.setupBody) .heroSection,
  body:not(.setupBody) .qualitySection,
  body:not(.setupBody) .locatorSection {
    grid-template-columns: 1fr;
  }

  body:not(.setupBody) .heroSection {
    min-height: auto;
  }

  body:not(.setupBody) .phoneStage {
    justify-items: center;
  }

  body:not(.setupBody) .readyBadge {
    right: clamp(2px, 9vw, 90px);
  }

  .setupBody:not(.authBody) .storeWorkspace {
    grid-template-columns: 1fr;
  }

  .setupBody:not(.authBody) .storeMapPanel {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  body:not(.setupBody) .siteNav,
  .setupBody:not(.authBody) .siteNav {
    padding-inline: 16px;
  }

  body:not(.setupBody) .heroSection,
  body:not(.setupBody) .sectionBand,
  body:not(.setupBody) .qualitySection,
  body:not(.setupBody) .locatorSection,
  body:not(.setupBody) .testimonialBand {
    width: min(100% - 32px, 1180px);
  }

  body:not(.setupBody) .heroSection {
    gap: 16px;
    padding-top: 28px;
  }

  body:not(.setupBody) .phoneStage {
    padding-bottom: 26px;
  }

  body:not(.setupBody) .readyBadge {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin-top: -4px;
  }

  body:not(.setupBody) .stepGrid {
    grid-template-columns: 1fr;
  }

  body:not(.setupBody) .locatorSection {
    gap: 20px;
    padding-top: 26px;
  }

  .authBody .brandMark {
    font-size: 1.55rem;
  }

  .authMain {
    padding: 20px 16px 36px;
  }

  .authCard {
    gap: 20px;
    padding: 30px 20px;
  }

  .authIntro h1 {
    font-size: 2rem;
  }

  .authIntro p {
    font-size: 1rem;
  }

  .fieldControl {
    min-height: 54px;
  }

  .setupBody:not(.authBody) .appHeader {
    width: min(100% - 32px, 1180px);
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }

  .setupBody:not(.authBody) .appHeader > div {
    min-width: 0;
  }

  .setupBody:not(.authBody) .appHeader .iconButton {
    flex: 0 0 38px;
  }

  .setupBody:not(.authBody) .tabs {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-inline: 16px;
  }

  .setupBody:not(.authBody) .tab {
    flex: 0 0 auto;
    font-size: 0.92rem;
  }

  .setupBody:not(.authBody) .panel,
  .setupBody:not(.authBody) .accountPanel,
  .setupBody:not(.authBody) .phonePanel,
  .setupBody:not(.authBody) .chatPanel,
  .setupBody:not(.authBody) .ordersPanel {
    width: min(100% - 24px, 1120px);
    margin-block: 18px 34px;
  }

  .setupBody:not(.authBody) .accountPanel,
  .setupBody:not(.authBody) .phonePanel,
  .setupBody:not(.authBody) .ordersPanel {
    padding: 24px 18px;
  }

  .setupBody:not(.authBody) .locationPanel {
    width: 100%;
    margin: 0;
  }

  .setupBody:not(.authBody) .storeSide {
    padding: 18px;
  }

  .setupBody:not(.authBody) .storeMapPanel {
    display: none;
  }

  .setupBody:not(.authBody) .chatMessages {
    height: min(34vh, 300px);
    min-height: 260px;
    padding: 14px;
  }

  .setupBody:not(.authBody) .chatHeader,
  .setupBody:not(.authBody) .chatForm {
    padding-inline: 14px;
  }
}
