/* ---------------------------------------------------------------------------
 * LiveFocus — Scandinavian Minimalist Design
 * Premium polish — generous whitespace, confident typography,
 * micro-interactions, one goal per screen
 * ---------------------------------------------------------------------------*/

/* ---------------------------------------------------------------------------
 * Design tokens
 * ---------------------------------------------------------------------------*/
:root {
  --bg: #F5F5F5;
  --card: #FFFFFF;
  --card-surface: #F8F8F8;
  --elevated: #F0F0F0;
  --text: #2C3E50;
  --text-muted: #7F8C8D;
  --text-subtle: #95A5A6;
  --text-faint: #BDC3C7;
  --text-secondary: #4A5568;
  --border: #E0E0E0;
  --divider: #F0F0F0;
  --progress-track: #ECECEC;
}

[data-theme="dark"] {
  --bg: #0F0F0F;
  --card: #1A1A1A;
  --card-surface: #161616;
  --elevated: #1C1C1C;
  --text: #E8E8E8;
  --text-muted: #6B6B6B;
  --text-subtle: #5A5A5A;
  --text-faint: #3D3D3D;
  --text-secondary: #8A8A8A;
  --border: #2A2A2A;
  --divider: #222222;
  --progress-track: #252525;
}

/* ---------------------------------------------------------------------------
 * Reset & base
 * ---------------------------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 300ms ease,
              color 300ms ease,
              border-color 300ms ease,
              box-shadow 300ms ease;
}

/* Exclude elements that need instant response */
.timer-display,
.timer-display * {
  transition: none !important;
}

button:active,
a:active {
  transition: transform 100ms ease !important;
}

.screen.hidden {
  transition: none !important;
}

html {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--card);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-y: scroll;
  overscroll-behavior: none;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  text-align: center;
  padding: 0 24px;
  padding-bottom: 72px;
  max-width: 480px;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  margin: 1rem;
  position: relative;
}

/* When timer is active: strip container chrome, pass full height down */
.container:has(#screenTimer.active) {
  padding: 0;
  margin: 0;
  height: 100dvh;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  justify-content: flex-start;
}

.container:has(#screenTimer.active) > .app-header,
.container:has(#screenComplete:not(.hidden)) > .app-header {
  display: none !important;
}

/* ---------------------------------------------------------------------------
 * Typography system
 * ---------------------------------------------------------------------------*/

/* Label text — section headers, category labels */
.label-text,
.screen-headline,
.quick-switch-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Muted text — timestamps, secondary info */
.muted-text {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------------------------------------------------------------------------
 * Elevated surface utility
 * ---------------------------------------------------------------------------*/
.elevated-surface {
  background: var(--elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------------------------------------------------------------------------
 * Header
 * ---------------------------------------------------------------------------*/
.app-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 48px;
  margin-bottom: 2px;
}

.app-header h1 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0;
}

.header-theme-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.header-theme-toggle:hover {
  color: var(--text);
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--text);
}

/* ---------------------------------------------------------------------------
 * Screen management & transitions
 * ---------------------------------------------------------------------------*/
.screen.hidden {
  display: none;
}

.screen:not(.hidden) {
  animation: screenIn 200ms ease forwards;
}

#screenComplete:not(.hidden) {
  height: 100vh;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 24px 40px 24px;
  scroll-behavior: smooth;
  overflow-y: auto;
}

#screenComplete:not(.hidden)::before {
  content: '';
  flex: 1;
}

#screenComplete:not(.hidden)::after {
  content: '';
  flex: 1;
}

@keyframes screenIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------------
 * Domain selection screen
 * ---------------------------------------------------------------------------*/
#screenSelect:not(.hidden) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

.screen-headline {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.35;
}

.domain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
}

.domain-row-1,
.domain-row-2 {
  display: contents;
}

.domain-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: transform 200ms ease,
              box-shadow 200ms ease,
              background-color 300ms ease,
              color 300ms ease,
              border-color 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
}

[data-theme="dark"] .domain-btn {
  border-color: rgba(255, 255, 255, 0.12);
}

:root .domain-btn {
  border-color: var(--border);
}

.domain-btn:hover {
  border-color: var(--text-faint);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.domain-btn.selected {
  color: var(--domain-color, #FFFFFF);
  border-color: var(--domain-color-border, transparent);
  background: var(--domain-color-bg, transparent);
  transform: scale(1.04);
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.domain-btn.selected:hover {
  transform: scale(1.04);
  box-shadow: none;
}

.domain-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}


.domain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.domain-btn.selected .domain-dot {
  opacity: 0.7;
}

/* ---------------------------------------------------------------------------
 * Domain indicator (timer screen)
 * ---------------------------------------------------------------------------*/
.domain-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: opacity 200ms ease;
}

.domain-indicator:hover {
  opacity: 0.8;
}

.domain-indicator-swap {
  font-size: 10px;
  opacity: 0.5;
  line-height: 1;
}

@keyframes subtle-pulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.6; }
  100% { opacity: 1; }
}

.domain-indicator.pulse-once {
  animation: subtle-pulse 1.5s ease 2s 1;
}

/* Domain switch overlay */
.domain-switch-overlay {
  background: var(--elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: overlayIn 200ms ease forwards;
}

.domain-switch-overlay.fade-out {
  animation: overlayOut 150ms ease forwards;
}

@keyframes overlayIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes overlayOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-4px); }
}

.domain-switch-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.domain-switch-pills {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.domain-switch-pill {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.4;
}

.domain-switch-pill:hover {
  transform: translateY(-1px);
  opacity: 0.7;
}

.domain-switch-pill-active {
  opacity: 1;
  font-weight: 600;
}

.domain-switch-pill-active:hover {
  opacity: 1;
  transform: none;
}

.domain-switch-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
 * Timer display
 * ---------------------------------------------------------------------------*/
.timer-display {
  font-size: 5rem;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  letter-spacing: -4px;
  color: var(--text);
  line-height: 1;
}

.timer-display.running {
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.85; }
}

/* ---------------------------------------------------------------------------
 * Controls & buttons
 * ---------------------------------------------------------------------------*/
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
  padding-bottom: 32px;
}

.btn {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 200ms ease;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn:active:not(:disabled) {
  transform: scale(0.97);
  transition: transform 100ms ease;
}

.btn:disabled {
  cursor: not-allowed;
}

/* Universal press feedback */
.domain-btn:active,
.quick-switch-btn:active,
.domain-switch-pill:active:not(:disabled),
.bottom-nav-item:active {
  transform: scale(0.97);
  transition: transform 100ms ease;
}

/* Start button — inactive (no domain selected) */
.btn-start:disabled {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.3);
  height: 40px;
  font-size: 14px;
  opacity: 1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Light theme override for disabled start */
:root .btn-start:disabled {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-subtle);
}

/* Start button — active (domain selected) */
.btn-start {
  color: #FFFFFF;
  border: none;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transform: scale(1.02);
  transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-start:hover:not(:disabled) {
  transform: scale(1.04);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-faint);
  color: var(--text);
}

/* Stop button */
.btn-stop {
  background: #E8453C;
  color: #FFFFFF;
  border: none;
  border-radius: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 24px rgba(232, 69, 60, 0.25);
}

.btn-stop:hover:not(:disabled) {
  background: #CF3A2E;
  box-shadow: 0 6px 28px rgba(232, 69, 60, 0.35);
}

/* ---------------------------------------------------------------------------
 * Validation / completion screen
 * ---------------------------------------------------------------------------*/
.complete-headline {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}

.complete-feedback {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0em;
  color: var(--text);
  margin-bottom: 8px;
}

.complete-streak {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3D7EC4;
  text-align: center;
  margin-bottom: 24px;
}

.complete-streak:empty {
  display: none;
}

/* ---------------------------------------------------------------------------
 * Quick-switch domain row (validation screen)
 * ---------------------------------------------------------------------------*/
.quick-switch {
  margin-top: 24px;
  text-align: center;
}

.quick-switch-label {
  margin-bottom: 12px;
}

.quick-switch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}

.quick-switch-btn {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
}

:root .quick-switch-btn {
  border-color: var(--border);
}

.quick-switch-btn:hover {
  border-color: var(--text-faint);
  transform: translateY(-1px);
}

.quick-switch-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.quick-switch-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
 * Note input (inline on validation screen)
 * ---------------------------------------------------------------------------*/
.note-input-wrap {
  width: 100%;
}

.post-block {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.post-block-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
}

.note-input {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: none;
  background-color: rgba(255,255,255,0.08) !important;
  transition: border-color 200ms ease;
}

:root .note-input {
  border-color: var(--border);
  background: var(--bg);
}

.note-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}

:root .note-input:focus {
  border-color: var(--text-faint);
}

.note-input::placeholder {
  color: var(--text-faint);
}

.note-counter {
  display: block;
  position: static;
  text-align: right;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
  padding-right: 4px;
  width: 100%;
}

.note-counter.hidden {
  display: none;
}

/* ---------------------------------------------------------------------------
 * Daily Dashboard (select screen)
 * ---------------------------------------------------------------------------*/
.dashboard {
  width: 100%;
}

.dashboard.hidden {
  display: none;
}

.dashboard-rank-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

[data-theme="light"] .dashboard-rank-title,
:root .dashboard-rank-title {
  color: var(--text);
}

[data-theme="dark"] .dashboard-rank-title {
  color: #fff;
}

.dashboard-summary {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text-muted);
  opacity: 0.45;
  margin-top: 12px;
  margin-bottom: 0;
}

.dashboard-next-rank {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.35;
  margin-top: 4px;
  margin-bottom: 0;
}

.rank-progress-track {
  width: 100%;
  height: 2px;
  background: var(--progress-track);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 6px;
  margin-bottom: 0;
}

.rank-progress-fill {
  height: 100%;
  background: var(--text-muted);
  opacity: 0.5;
  border-radius: 1px;
}

.dashboard-week-req {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  opacity: 0.35;
  margin-top: 4px;
}

.dashboard-domain-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dashboard-domain-row:last-child {
  margin-bottom: 0;
}

.dashboard-domain-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  width: 60px;
  flex-shrink: 0;
  text-align: left;
}

.dashboard-bar-track {
  flex: 1;
  height: 4px;
  background: var(--progress-track);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}

.bar-normal {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 2px;
  transition: width 800ms ease, opacity 400ms ease;
}

.dashboard-domain-time {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0em;
  color: var(--text);
  width: 48px;
  flex-shrink: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------------------
 * Weekly stacked bar chart
 * ---------------------------------------------------------------------------*/
#weekly-chart {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 24px;
}

.chart-area {
  display: flex;
  height: 140px;
  align-items: stretch;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 6px;
  width: 32px;
  flex-shrink: 0;
}

.chart-y-label {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.chart-bars-wrap {
  flex: 1;
  position: relative;
  height: 100%;
}

.chart-ref-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.1;
  pointer-events: none;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  position: relative;
  z-index: 1;
}

.chart-column {
  flex: 0 0 18px;
  width: 18px;
  max-width: 18px;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  height: 100%;
  justify-content: flex-start;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
}

.chart-column-future {
  opacity: 0.15;
}

.chart-segment {
  width: 100%;
  min-height: 0;
  border-radius: 1px;
  transition: height 600ms ease;
}

.chart-x-axis {
  display: flex;
  margin-top: 4px;
}

.chart-x-spacer {
  width: 32px;
  flex-shrink: 0;
}

.chart-x-labels {
  display: flex;
  justify-content: space-around;
  flex: 1;
}

.chart-day-label {
  flex: 0 0 18px;
  width: 18px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.4;
}

.chart-day-today {
  opacity: 0.9;
  color: var(--text);
  font-weight: 600;
}

.chart-day-future {
  opacity: 0.2;
}

#validationBars {
  width: 100%;
  align-self: stretch;
  padding: 24px 0 8px 0;
}

.validation-chart {
  width: 100%;
}

.validation-chart .chart-area {
  height: 120px;
}

/* ---------------------------------------------------------------------------
 * Validation rank progress
 * ---------------------------------------------------------------------------*/
#validationRankProgress {
  width: 100%;
  padding: 20px 0 8px;
  text-align: center;
}

.vr-rank-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  transition: opacity 300ms ease;
}

.vr-rank-name.vr-fade-out {
  opacity: 0;
}

.vr-rank-name.vr-fade-in {
  animation: vrFadeIn 500ms ease forwards;
}

@keyframes vrFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#validationRankProgress .rank-progress-track {
  margin-bottom: 6px;
}

.vr-rank-next {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.6;
}


/* ---------------------------------------------------------------------------
 * Bottom navigation bar
 * ---------------------------------------------------------------------------*/
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 12px 0 16px 0;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 100;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.bottom-nav-item {
  flex: 0 1 120px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color 200ms ease;
}

.bottom-nav-item:hover {
  color: var(--text);
}

.bottom-nav-item.active {
  color: var(--text);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
 * Timer screen — full viewport overlay, hidden by default
 * ---------------------------------------------------------------------------*/
#screenTimer {
  display: none;
  position: relative;
  width: 100%;
  gap: 32px;
  padding: 0 24px;
  overflow: hidden;
  background: var(--card);
  z-index: 10;
}

#screenTimer.active {
  display: flex;
}

/* ---------------------------------------------------------------------------
 * Responsive
 * ---------------------------------------------------------------------------*/
@media (max-width: 480px) {
  .container {
    padding: 0 24px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  .app-header {
    margin-top: 48px;
    margin-bottom: 2px;
  }

  .timer-display {
    font-size: 96px;
    letter-spacing: -4px;
  }

  .complete-headline {
    font-size: 1.25rem;
  }

  .domain-btn {
    font-size: 11px;
    padding: 8px 16px;
  }

  .bottom-nav {
    border-radius: 0;
  }
}
