/* ==========================================================================
   ovh-style-newlook-tailwind.css — handcrafted subset of Tailwind utilities
   used by the new-look public pages.
   No build step required — this file is the compiled stylesheet.
   ========================================================================== */

/* --- Base reset (Tailwind preflight, trimmed) --- */
*, ::before, ::after { box-sizing: border-box; border: 0 solid #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; tab-size: 4; font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
body { margin: 0; line-height: inherit; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: inherit; }
button { font: inherit; color: inherit; margin: 0; padding: 0; background: transparent; border: 0; }
button, [type="button"] { -webkit-appearance: button; cursor: pointer; }
img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
input::placeholder { color: var(--ink-mute); opacity: 1; }
input, select { font: inherit; color: inherit; margin: 0; padding: 0; background: transparent; }
input:not([type="checkbox"]):not([type="radio"]), select {
    border-bottom: 2px solid #e5e7eb;
    transition: border-bottom-color 0.2s ease;
}
input:not([type="checkbox"]):not([type="radio"]):focus, select:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

textarea {
    border: 2px solid #e5e7eb;
    transition: border-color 0.2s ease;
}
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* --- Layout --- */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.bottom-0 { bottom: 0; }
.right-0 { right: 0; }
.left-6 { left: 1.5rem; }
.-top-3 { top: -0.75rem; }
.min-h-screen { min-height: 100vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-middle { vertical-align: middle; }
.align-top { vertical-align: top; }
.cursor-pointer { cursor: pointer; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.hidden { display: none; }

/* --- Spacing (gap / padding / margin) --- */
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-px { gap: 1px; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-10 { row-gap: 2.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-px > * + * { margin-top: 1px; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-0 { padding-left: 0; padding-right: 0; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-20 { padding-top: 5rem; }
.pt-\[3px\] { padding-top: 3px; }
.pb-16 { padding-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-auto { margin-bottom: auto; }

/* --- Sizing --- */
.h-3 { height: 0.75rem; }
.h-8 { height: 2rem; }
.h-px { height: 1px; }
.h-2\.5 { height: 0.625rem; }
.h-\[3px\] { height: 3px; }
.w-8 { width: 2rem; }
.w-px { width: 1px; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-2\.5 { width: 0.625rem; }
.w-\[3px\] { width: 3px; }
.min-h-0 { min-height: 0; }
.min-h-\[60px\] { min-height: 60px; }

.max-w-\[320px\] { max-width: 320px; }
.max-w-\[680px\] { max-width: 680px; }
.max-w-\[820px\] { max-width: 820px; }
.max-w-\[920px\] { max-width: 920px; }
.max-w-\[1100px\] { max-width: 1100px; }
.max-w-\[1280px\] { max-width: 1280px; }

.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* --- Grid --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-12 { grid-column: span 12 / span 12; }

/* --- Borders & radius --- */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-full { border-radius: 9999px; }

/* --- Type --- */
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.font-medium { font-weight: 500; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }

.text-\[0\.45em\] { font-size: 0.45em; }
.text-\[0\.7em\] { font-size: 0.7em; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[17px\] { font-size: 17px; }
.text-\[18px\] { font-size: 18px; }
.text-\[22px\] { font-size: 22px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[34px\] { font-size: 34px; }
.text-\[36px\] { font-size: 36px; }
.text-\[40px\] { font-size: 40px; }
.text-\[44px\] { font-size: 44px; }
.text-\[52px\] { font-size: 52px; }
.text-\[56px\] { font-size: 56px; }

.leading-\[0\.94\] { line-height: 0.94; }
.leading-\[0\.95\] { line-height: 0.95; }
.leading-\[1\] { line-height: 1; }
.leading-\[1\.02\] { line-height: 1.02; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.35\] { line-height: 1.35; }
.leading-\[1\.45\] { line-height: 1.45; }
.leading-\[1\.5\] { line-height: 1.5; }
.leading-\[1\.55\] { line-height: 1.55; }

.text-white { color: #fff; }
.bg-transparent { background-color: transparent; }

/* --- Form helpers --- */
.accent-current { accent-color: currentColor; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-accent:focus { border-color: var(--accent); }

/* --- Transitions --- */
.transition-colors { transition: color, background-color, border-color, fill, stroke 150ms; }
.transition-opacity { transition: opacity 150ms; }

/* --- Hover utilities --- */
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-bg:hover { background: var(--bg); }
.hover\:bg-surface:hover { background: var(--surface); }
.hover\:bg-\[var\(--bg\)\]:hover { background: var(--bg); }
.hover\:border-accent:hover { border-color: var(--accent); }
.hover\:text-ink:hover { color: var(--ink); }
.hover\:text-accent:hover { color: var(--accent); }

/* --- sr-only --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================ Breakpoints ============================ */

/* sm — 640px */
@media (min-width: 640px) {
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:pt-16 { padding-top: 4rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:col-span-4 { grid-column: span 4 / span 4; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-\[18px\] { font-size: 18px; }
  .sm\:text-\[20px\] { font-size: 20px; }
  .sm\:text-\[22px\] { font-size: 22px; }
  .sm\:text-\[26px\] { font-size: 26px; }
  .sm\:text-\[32px\] { font-size: 32px; }
  .sm\:text-\[36px\] { font-size: 36px; }
  .sm\:text-\[40px\] { font-size: 40px; }
  .sm\:text-\[44px\] { font-size: 44px; }
  .sm\:text-\[48px\] { font-size: 48px; }
  .sm\:text-\[52px\] { font-size: 52px; }
  .sm\:text-\[56px\] { font-size: 56px; }
  .sm\:text-\[80px\] { font-size: 80px; }
  .sm\:text-\[88px\] { font-size: 88px; }
}

/* md — 768px */
@media (min-width: 768px) {
  .md\:text-\[104px\] { font-size: 104px; }
  .md\:text-\[110px\] { font-size: 110px; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* lg — 1024px */
@media (min-width: 1024px) {
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .lg\:pt-20 { padding-top: 5rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:mb-8 { margin-bottom: 2rem; }
  .lg\:mb-10 { margin-bottom: 2.5rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-10 { grid-column: span 10 / span 10; }
  .lg\:col-start-3 { grid-column-start: 3; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:h-auto { height: auto; }
  .lg\:w-px { width: 1px; }
  .lg\:min-h-\[460px\] { min-height: 460px; }
  .lg\:text-\[18px\] { font-size: 18px; }
  .lg\:text-\[20px\] { font-size: 20px; }
  .lg\:text-\[24px\] { font-size: 24px; }
  .lg\:text-\[28px\] { font-size: 28px; }
  .lg\:text-\[36px\] { font-size: 36px; }
  .lg\:text-\[56px\] { font-size: 56px; }
  .lg\:text-\[64px\] { font-size: 64px; }
  .lg\:text-\[72px\] { font-size: 72px; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[88px\] { font-size: 88px; }
  .lg\:text-\[96px\] { font-size: 96px; }
  .lg\:text-\[104px\] { font-size: 104px; }
  .lg\:text-\[110px\] { font-size: 110px; }
  .lg\:text-\[115px\] { font-size: 115px; }
  .lg\:text-\[120px\] { font-size: 120px; }
  .lg\:text-\[128px\] { font-size: 128px; }
  .lg\:text-\[136px\] { font-size: 136px; }
  .lg\:text-\[148px\] { font-size: 148px; }
  .lg\:text-\[156px\] { font-size: 156px; }
  .lg\:leading-\[0\.92\] { line-height: 0.92; }
  .lg\:leading-\[0\.98\] { line-height: 0.98; }
  .lg\:leading-\[1\.0\] { line-height: 1.0; }
  .lg\:leading-\[1\.02\] { line-height: 1.02; }
  .lg\:leading-\[1\.05\] { line-height: 1.05; }
  .lg\:leading-\[1\.3\] { line-height: 1.3; }
}

/* xl — 1280px */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
